Browse Source

fix:ETA试用客户批量启用异常

chenlei 1 month ago
parent
commit
8a3f2d8466

+ 5 - 4
src/views/etaTrial/compontents/addApplyHintDialog.vue

@@ -112,10 +112,11 @@ async function handleApprove(getNext = true) {
   if (getNext) {
     const { UserName, CompanyName, Position, Mobile } = applyData.value[dataIndex.value];
     const res = await etaTrialInterence.applyEnable({
-      UserName,
-      CompanyName,
-      Position,
-      Mobile,
+      // UserName,
+      // CompanyName,
+      // Position,
+      IsCheckAll: false,
+      MobileList: [Mobile] ,
       ApplyReasons: applyReason.value
     });
     if (res.Ret !== 200) return;

+ 1 - 1
src/views/etaTrial/etaTrialList.vue

@@ -349,7 +349,7 @@ const getApplyInfo = (type, data) => {
     temp.applyType = 0;
   }
   temp.applyData = [data];
-  applyInfo = temp;
+  Object.assign(applyInfo, temp);
 };
 
 const handleOperate = async (type, data) => {