jwyu 8 months ago
parent
commit
a08a3663d1

+ 6 - 1
src/views/dataEntry_manage/components/sectionalCombination/referenceDateSet.vue

@@ -68,7 +68,7 @@
           </div>
         </div>
         <div class="date-type-box">
-          <el-radio v-model="item.dateType" :label="1">{{$t('ETableChildren.system_date_rai')}}</el-radio>
+          <el-radio v-model="item.dateType" :label="1" @input="handleSelectSystemDate($event,index)">{{$t('ETableChildren.system_date_rai')}}</el-radio>
           <span>{{ today }}</span>
         </div>
         <div>
@@ -164,6 +164,11 @@ export default {
         this.list[index].name = e.EndDate
       }
     },
+    handleSelectSystemDate(e,index){
+      if(!this.list[index].name){
+        this.list[index].name=this.today
+      }
+    },
 
     handleEdbTypeChange(e,index){
       console.log('指标类型变化',e);

+ 4 - 0
src/views/dataEntry_manage/components/sectionalCombination/seriesEdit.vue

@@ -262,6 +262,10 @@ export default {
         await this.$confirm(this.$t('EtaChartAddPage.series_del_tips'),this.$t('Dialog.warn_tit'))
       }
       this.list.splice(index,1)
+      if(index===this.activeIndex){
+        this.activeIndex=0
+      }
+      
       if(this.list.length===0){
         this.$emit('hideChart')
         this.cancelHandle()