Browse Source

Merge branch 'debug' of http://8.136.199.33:3000/eta_forum/eta_forum_admin_front into debug

shanbinzhang 1 month ago
parent
commit
636e2f55d1

+ 8 - 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;
@@ -157,6 +158,9 @@ function getNextTableData() {
   }
   .foot-container{
     text-align: center;
+    justify-content: center;
+    display: flex;
+    gap: 40px;
     padding-bottom: 40px;
     margin-top: 60px;
   }

+ 0 - 3
src/views/etaTrial/config.js

@@ -165,9 +165,6 @@ export const applyApprovalList=[
   },{
     colKey:'Seller',
     title:'申请人'
-  },
-  {
-    align: 'center', colKey: 'opt', title: '操作'
   }
 ]
 

+ 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) => {