刘恒 1 rok temu
rodzic
commit
e9fc469f6b

+ 1 - 1
src/pages/agreement/index.vue

@@ -65,7 +65,7 @@
         </a-form-item>
         </a-form-item>
         <a-form-item label="对接人" :labelCol="{ span: 6 }" :colon="false">
         <a-form-item label="对接人" :labelCol="{ span: 6 }" :colon="false">
           <a-input
           <a-input
-            placeholder="请输入手机号"
+            placeholder="请输入对接人"
             v-model="formState.dockingPerson"
             v-model="formState.dockingPerson"
             allowClear
             allowClear
           ></a-input>
           ></a-input>

+ 2 - 1
src/pages/business/message.vue

@@ -279,7 +279,7 @@ export default {
 
 
     async getVerification() {
     async getVerification() {
       this.loading = true;
       this.loading = true;
-
+      // console.log(this.$route.query.user);
       this.$API.business
       this.$API.business
         .getBusinessAgentTotalDetails({
         .getBusinessAgentTotalDetails({
           pageNum: this.pagination.current,
           pageNum: this.pagination.current,
@@ -305,6 +305,7 @@ export default {
       this.$API.business
       this.$API.business
         .getBusinessAgentTotalList({
         .getBusinessAgentTotalList({
           ...this.formState,
           ...this.formState,
+          userId: this.$route.query.user.record.userId,
         })
         })
         .then((res) => {
         .then((res) => {
           if (res.data.code === 200) {
           if (res.data.code === 200) {

+ 22 - 13
src/pages/financial/verification.vue

@@ -85,10 +85,21 @@
         <a-form-item label="审核人员" :labelCol="{ span: 8 }" :colon="false">
         <a-form-item label="审核人员" :labelCol="{ span: 8 }" :colon="false">
           <a-input
           <a-input
             placeholder="请输入审核人员"
             placeholder="请输入审核人员"
-            v-model="formState.userId"
+            v-model="formState.reviewer"
             allowClear
             allowClear
           ></a-input>
           ></a-input>
         </a-form-item>
         </a-form-item>
+        <a-form-item
+          style="
+            display: flex;
+            justify-content: flex-end;
+            padding-right: 15px;
+            box-sizing: border-box;
+            align-items: flex-end;
+          "
+        >
+          <a-button @click="getList" type="primary">查询</a-button>
+        </a-form-item>
       </a-form>
       </a-form>
     </div>
     </div>
     <standard-table
     <standard-table
@@ -204,7 +215,7 @@ export default {
     },
     },
   },
   },
   mounted() {
   mounted() {
-    this.getVerification();
+    this.getList();
     this.$API.financial.getCompany().then((res) => {
     this.$API.financial.getCompany().then((res) => {
       console.log(res);
       console.log(res);
       if (res.data.code === 200) {
       if (res.data.code === 200) {
@@ -222,8 +233,11 @@ export default {
           .indexOf(input.toLowerCase()) >= 0
           .indexOf(input.toLowerCase()) >= 0
       );
       );
     },
     },
-    handleFinish() {
+    getList() {
       //
       //
+      this.pagination.current = 1;
+      this.pagination.defaultPageSize = 10;
+      this.getVerification();
     },
     },
 
 
     async getVerification() {
     async getVerification() {
@@ -243,6 +257,9 @@ export default {
               defaultPageSize: res.data.data.size,
               defaultPageSize: res.data.data.size,
               total: res.data.data.total,
               total: res.data.data.total,
             };
             };
+          } else {
+            this.loading = false;
+            this.tableList = [];
           }
           }
         });
         });
       await this.$API.financial
       await this.$API.financial
@@ -254,16 +271,8 @@ export default {
         .then((res) => {
         .then((res) => {
           if (res.data.code === 200) {
           if (res.data.code === 200) {
             this.totalObj = { ...res.data.data };
             this.totalObj = { ...res.data.data };
-            // this.pagination.defaultPageSize =
-            //   this.pagination.defaultPageSize + 1;
-            // this.tableList.push({
-            //   insuranceCompanyName: "合计",
-            //   auditstatusOrders: res.data.data.allAuditstatusOrders,
-            //   automaticAudit: res.data.data.allAutomaticAudit,
-            //   persionAudit: res.data.data.allPersionAudit,
-            //   auditOrder: res.data.data.allAuditOrder,
-            // });
-            // console.log(this.tableList);
+          } else {
+            this.totalObj = {};
           }
           }
         });
         });
     },
     },