hbchen 1 년 전
부모
커밋
ea21f560e6
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/views/custom_manage/contractStatistics.vue

+ 4 - 0
src/views/custom_manage/contractStatistics.vue

@@ -231,6 +231,10 @@ import {customInterence} from '@/api/api.js'
         customInterence.getSimpleServiceList().then(res=>{
           if(res.Ret!=200) return
           this.serviceList = res.Data || []
+          // 后端最外层的数据没有给 service_template_id 删除tag时会报错,手动加
+          this.serviceList.map((item,index) =>{
+            item.service_template_id = 500+index
+          })
         })
       },
       getList(){