|
@@ -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(){
|