From 69377bb5ca1e78f34567b6ffb38c8b7362b47ab0 Mon Sep 17 00:00:00 2001 From: anthonywj Date: Mon, 27 Mar 2023 16:32:46 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B5=84=E8=B4=A8=E8=AF=81=E4=B9=A6=E9=A2=84?= =?UTF-8?q?=E8=AD=A6=E5=A4=84=E7=90=86=E6=96=B9=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/remind/supCertRemindMsg.vue | 175 ++++++++++++++++++-------- src/views/remind/supInvRemindMsg.vue | 139 ++++++++++++++------ 2 files changed, 225 insertions(+), 89 deletions(-) diff --git a/src/views/remind/supCertRemindMsg.vue b/src/views/remind/supCertRemindMsg.vue index 3523de6..a84f8e2 100644 --- a/src/views/remind/supCertRemindMsg.vue +++ b/src/views/remind/supCertRemindMsg.vue @@ -23,21 +23,20 @@ - - - - - - - - - - - + + + + + + + + + + + + + + @@ -68,27 +67,29 @@ - - - - - + + + + + - - - - + + + + + + + + - - + + @@ -136,6 +137,68 @@ 忽略30天 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -181,7 +244,9 @@ export default { 1: "配送企业名称", 2: "生产企业名称", 3: "产品名称" - } + }, + confirmVisible: false, + confirmQuery: {}, }; }, methods: { @@ -226,26 +291,28 @@ export default { this.total = 0; }); }, + + confirmMsg(row) { - this.$prompt('请输入处理方式', '提示', { - confirmButtonText: '确定', - cancelButtonText: '取消', - }).then(({value}) => { - let params = { - id: row.id, - handleMsg: value - }; - confirmMsg(params).then((res) => { - if (res.code === 20000) { - this.$message.success("已确认"); - this.getList(); - } else { - this.$message.error(res.message); - } - }) - }).catch(() => { - }); + this.confirmVisible = true; + this.confirmQuery = row; }, + postConfirm() { + confirmMsg(this.confirmQuery).then((res) => { + if (res.code === 20000) { + this.confirmVisible = false; + this.$message.success("已确认"); + this.getList(); + } else { + this.$message.error(res.message); + } + }) + }, + + closeDialog() { + this.confirmVisible = false; + }, + ignoreMsg(row) { this.ignoreVisible = true; this.currentId = row.id; diff --git a/src/views/remind/supInvRemindMsg.vue b/src/views/remind/supInvRemindMsg.vue index 0585aab..ad0e40d 100644 --- a/src/views/remind/supInvRemindMsg.vue +++ b/src/views/remind/supInvRemindMsg.vue @@ -10,7 +10,7 @@ style="width: 90%" v-model="queryName" :fetch-suggestions="queryProductName" - placeholder="情请输入物资名称" + placeholder="请输入物资名称" clearable @select="handleSelect" @clear="clearQueryProduct" @@ -46,19 +46,18 @@ - - - - - - - + + + + + + + - - - + + @@ -233,7 +299,9 @@ export default { spaceList: [], ggxhList: [], ignoreVisible: false, - currentId: null + currentId: null, + confirmVisible: false, + confirmQuery: {}, }; }, methods: { @@ -349,25 +417,26 @@ export default { this.filterQuery.relId = null; }, confirmMsg(row) { - this.$prompt('请输入处理方式', '提示', { - confirmButtonText: '确定', - cancelButtonText: '取消', - }).then(({value}) => { - let params = { - id: row.id, - handleMsg: value - }; - confirmMsg(params).then((res) => { - if (res.code === 20000) { - this.$message.success("已确认"); - this.getList(); - } else { - this.$message.error(res.message); - } - }) - }).catch(() => { - }); + this.confirmVisible = true; + this.confirmQuery = row; }, + postConfirm() { + confirmMsg(this.confirmQuery).then((res) => { + if (res.code === 20000) { + this.confirmVisible = false; + this.$message.success("已确认"); + this.getList(); + } else { + this.$message.error(res.message); + } + }) + }, + + closeDialog() { + this.confirmVisible = false; + }, + + ignoreMsg(row) { this.ignoreVisible = true; this.currentId = row.id;