From 00b15962f9a8175a61197b6fb6e19d6014e75507 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期四, 31 八月 2023 17:15:45 +0800
Subject: [PATCH] 	modified:   .env.development 	modified:   src/views/inspectionManagement/commissionInspection/index.vue

---
 src/views/inspectionManagement/commissionInspection/index.vue |   20 ++++++++++++++------
 1 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/src/views/inspectionManagement/commissionInspection/index.vue b/src/views/inspectionManagement/commissionInspection/index.vue
index 8b327ee..675620f 100644
--- a/src/views/inspectionManagement/commissionInspection/index.vue
+++ b/src/views/inspectionManagement/commissionInspection/index.vue
@@ -194,7 +194,7 @@
 					value: '1',
 					label: '閮ㄩ棬1'
 				}],
-				radioValue: 0,
+				radioValue: null,
 				commisionTable: [{
 					specifications_models: "GGXH-AAAAA",
 					inspectionTime: "2023-08-03",
@@ -210,15 +210,15 @@
 				}],
 				conditionsOptions: [{
 						label: '鍏ㄩ儴',
-						value: 0
+						value: null
 					},
 					{
 						label: '宸叉楠�',
-						value: 1
+						value: 0
 					},
 					{
 						label: '寰呮楠�',
-						value: 2
+						value: 1
 					}
 				],
 				currentPage: 1,
@@ -405,8 +405,6 @@
 			async radioclick() {
 				// 澶勭悊鐐瑰嚮radio鐨勬椂闂�
 				if (this.radioValue === 0) {
-					this.getCommisionList()
-				} else {
 					const res = await getCommisionList({
 						pageNo: this.currentPage,
 						pageSize: this.pageSize,
@@ -414,6 +412,16 @@
 					})
 					this.commisionTable = res.data.row
 					this.total = res.data.total
+				} else if(this.radioValue === 1) {
+					const res = await getCommisionList({
+						pageNo: this.currentPage,
+						pageSize: this.pageSize,
+						inspectionStatus: this.radioValue
+					})
+					this.commisionTable = res.data.row
+					this.total = res.data.total
+				}else{
+					this.getCommisionList();
 				}
 
 			},

--
Gitblit v1.9.3