From 431d087010381cb7b55a25d90059058e4a3fa2a7 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Tue, 9 Jul 2024 08:26:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=8E=A5=E5=8F=A3=E5=8F=96?= =?UTF-8?q?=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sgzb-ui/src/App.vue | 14 +++- sgzb-ui/src/components/Notice/index.vue | 83 +++++++++++++++++++ .../picking/apply/component/AddPicking.vue | 16 ++-- .../warehousing/newTools/index.vue | 8 +- 4 files changed, 105 insertions(+), 16 deletions(-) create mode 100644 sgzb-ui/src/components/Notice/index.vue diff --git a/sgzb-ui/src/App.vue b/sgzb-ui/src/App.vue index ab9ab38f..320c2606 100644 --- a/sgzb-ui/src/App.vue +++ b/sgzb-ui/src/App.vue @@ -2,16 +2,19 @@
+ +
diff --git a/sgzb-ui/src/components/Notice/index.vue b/sgzb-ui/src/components/Notice/index.vue new file mode 100644 index 00000000..9b93e9ef --- /dev/null +++ b/sgzb-ui/src/components/Notice/index.vue @@ -0,0 +1,83 @@ + + + + + \ No newline at end of file diff --git a/sgzb-ui/src/views/claimAndreturn/picking/apply/component/AddPicking.vue b/sgzb-ui/src/views/claimAndreturn/picking/apply/component/AddPicking.vue index 85f9c5cb..656b0c65 100644 --- a/sgzb-ui/src/views/claimAndreturn/picking/apply/component/AddPicking.vue +++ b/sgzb-ui/src/views/claimAndreturn/picking/apply/component/AddPicking.vue @@ -70,7 +70,7 @@ - + e.companyId == val, ) - // const res = await getCompleteSetToolsApi({ - // companyId: val, - // pageNum: 1, - // pageSize: 9999, - // }) - // this.completeSetList = res.rows + const res = await getCompleteSetToolsApi({ + companyId: val, + pageNum: 1, + pageSize: 9999, + }) + this.completeSetList = res.rows }, // 成套设备下拉框选择 diff --git a/sgzb-ui/src/views/warehouseManage/warehousing/newTools/index.vue b/sgzb-ui/src/views/warehouseManage/warehousing/newTools/index.vue index 050c8274..9ccc1f82 100644 --- a/sgzb-ui/src/views/warehouseManage/warehousing/newTools/index.vue +++ b/sgzb-ui/src/views/warehouseManage/warehousing/newTools/index.vue @@ -607,9 +607,9 @@ export default { dictName: undefined, dictType: undefined, status: undefined, - keyWord: '', + keyWord: '', typeId: '', - flag: 0, + // flag: 0, }, query: { pageNum: 1, @@ -658,8 +658,8 @@ export default { getList() { this.loading = true getPutInList(this.queryParams).then((response) => { - this.tableList = response.data.rows - this.total = response.data.total + this.tableList = response.rows + this.total = response.total this.loading = false }) },