OnePsycho 2 år sedan
förälder
incheckning
795a529534

+ 1 - 1
TEAMModelOS/ClientApp/src/view/dashboard/moral/BaseCarousel.vue

@@ -1,6 +1,6 @@
 <template>
   <div class="moral-carousel-container">
-    <carousel-3d :autoplay="true" :autoplayTimeout="3000" :height="240" :width="380" :space="180" controlsVisible v-if="slides.length" @before-slide-change="onSlideChange">
+    <carousel-3d :autoplay="true" :display="3" :autoplayTimeout="3000" :height="260" :width="380" :space="360" controlsVisible v-if="slides.length" @before-slide-change="onSlideChange">
       <slide v-for="(slide, i) in slides" :index="i" :key="i">
         <template slot-scope="{ index, isCurrent, leftIndex, rightIndex }">
           <img :data-index="index" :class="{ current: isCurrent, onLeft: (leftIndex >= 0), onRight: (rightIndex >= 0) }" :src="slide.src">

+ 5 - 5
TEAMModelOS/ClientApp/src/view/research-center/BaseReportRadar.vue

@@ -47,27 +47,27 @@ export default {
           triggerEvent: false,
           indicator: [
             {
-              name: this.$t('lessonRecord.mgt.interaction') + `(${pieData[0]})`,
+              name: this.$t('lessonRecord.mgt.interaction'),
               max: 5,
               min: 0,
             },
             {
-              name: this.$t('lessonRecord.mgt.cooperation') + `(${pieData[1]})`,
+              name: this.$t('lessonRecord.mgt.cooperation'),
               max: 3,
               min: 0,
             },
             {
-              name: this.$t('lessonRecord.mgt.exam') + `(${pieData[2]})`,
+              name: this.$t('lessonRecord.mgt.exam'),
               max: 2,
               min: 0,
             },
             {
-              name: this.$t('lessonRecord.mgt.task') + `(${pieData[3]})`,
+              name: this.$t('lessonRecord.mgt.task'),
               max: 1,
               min: 0,
             },
             {
-              name: this.$t('lessonRecord.mgt.diffential') + `(${pieData[4]})`,
+              name: this.$t('lessonRecord.mgt.diffential'),
               max: 1,
               min: 0,
             }