From 0788520fbf0206f5ec9436c4ff15ecf6a9a5007d Mon Sep 17 00:00:00 2001 From: A0010407 Date: Mon, 22 Apr 2024 16:42:07 +0800 Subject: [PATCH] =?UTF-8?q?2024-4-22=20=E7=82=B9=E6=A3=80=E5=B7=A1?= =?UTF-8?q?=E6=A3=80=E4=BA=BA=E5=91=98=E9=80=89=E6=8B=A9=E6=A1=86=E6=9C=AA?= =?UTF-8?q?=E9=80=89=E4=B8=AD=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/device/inspectionPlan/index.vue | 2 +- src/views/device/spotCheckPlan/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/device/inspectionPlan/index.vue b/src/views/device/inspectionPlan/index.vue index f4e4235..8271e28 100644 --- a/src/views/device/inspectionPlan/index.vue +++ b/src/views/device/inspectionPlan/index.vue @@ -904,7 +904,7 @@ export default { for (let i = 0; i < response.data.length; i++) { this.personList.push({ label: response.data[i].nickName + '(' + response.data[i].userName + ')', - key: response.data[i].userId, + key: response.data[i].userName, }) } }); diff --git a/src/views/device/spotCheckPlan/index.vue b/src/views/device/spotCheckPlan/index.vue index 3af934d..47b5d03 100644 --- a/src/views/device/spotCheckPlan/index.vue +++ b/src/views/device/spotCheckPlan/index.vue @@ -949,7 +949,7 @@ export default { for (let i = 0; i < response.data.length; i++) { this.personList.push({ label: response.data[i].nickName + '(' + response.data[i].userName + ')', - key: response.data[i].userId, + key: response.data[i].userName, }) } });