yujinwen 5 months ago
parent
commit
45a3a51053

+ 3 - 1
src/views/customer/user/components/EditUser.vue

@@ -18,7 +18,9 @@ async function getMobileAreaCode(){
   const res=await apiSystemCommon.mobileAreaCode()
   if(res.Ret!=200) return
   telCodeOpts.value=res.Data||[]
-  formData.telCode=telCodeOpts.value[0]?.Value
+  if(!formData.telCode){
+    formData.telCode=telCodeOpts.value[0]?.Value
+  }
 }
 
 const jobStatusOpts=[

+ 1 - 0
src/views/etaChart/components/ClassifyWrap.vue

@@ -100,6 +100,7 @@ async function getClassify() {
         Children: true
       }
     })
+    classifyActived.value=0
   }
 }
 getClassify()