diff --git a/src/api/system/invRemindSet.js b/src/api/system/invRemindSet.js index 32c32d6..c907fa6 100644 --- a/src/api/system/invRemindSet.js +++ b/src/api/system/invRemindSet.js @@ -10,16 +10,32 @@ export function getInvRemindSetList(params) { export function saveInvRemindSet(data, formName) { return axios({ - url: formName === "add"? "/udiwms/inv/remind/set/add" : "/udiwms/inv/remind/set/update", + url: formName === "add" ? "/udiwms/inv/remind/set/add" : "/udiwms/inv/remind/set/update", method: "post", data: data }); } -export function deleteInvRemindSet(data){ +export function deleteInvRemindSet(data) { return axios({ url: "/udiwms/inv/remind/set/delete", method: "post", data: data }); } + +export function getInfoByInvId(params) { + return axios({ + url: "/udiwms/inv/remind/set/getInfoByInvId", + method: "get", + params: params + }); +} + +export function batchAddInvRemindSet(data) { + return axios({ + url: "/udiwms/inv/remind/set/batchAddInvRemindSet", + method: "post", + data: data + }); +} diff --git a/src/views/inventory/InvProducts.vue b/src/views/inventory/InvProducts.vue index e970daf..d06bfe5 100644 --- a/src/views/inventory/InvProducts.vue +++ b/src/views/inventory/InvProducts.vue @@ -135,12 +135,12 @@ border> + show-overflow-tooltip width="200"> + show-overflow-tooltip width="200"> - - + + @@ -151,13 +151,20 @@ width="180"> + width="200"> + width="200"> - + @@ -207,6 +228,7 @@ import {getInvProduct, deleteInvProduct, getProduct} from "@/api/inventory/invPo import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; import {isBlank} from "@/utils/strUtil"; import invProductsDetail from "@/views/inventory/InvProductsDetail.vue"; +import addInvRemindSetDialog from "@/views/inventory/addInvRemindSetDialog.vue"; export default { name: "InvProducts", @@ -249,7 +271,9 @@ export default { supId: null, deptCode: null, invCode: null - } + }, + addInvRemindSetDialogVisible: null, + invId: null }; }, methods: { @@ -379,10 +403,19 @@ export default { }).catch((error) => { this.$message.error(error.message); }); - } + }, + invRemindSet(row) { + this.invId = row.id; + this.addInvRemindSetDialogVisible = true; + }, + closeRemindSetDialog() { + this.invId = null; + this.addInvRemindSetDialogVisible = false; + }, }, components: { - invProductsDetail + invProductsDetail, + addInvRemindSetDialog }, mounted() { document.body.ondrop = function (event) { diff --git a/src/views/inventory/addInvRemindSetDialog.vue b/src/views/inventory/addInvRemindSetDialog.vue new file mode 100644 index 0000000..cd7da55 --- /dev/null +++ b/src/views/inventory/addInvRemindSetDialog.vue @@ -0,0 +1,212 @@ + + + + + + diff --git a/src/views/remind/addInvRemindSetDialog.vue b/src/views/remind/addInvRemindSetDialog.vue new file mode 100644 index 0000000..fc46f6e --- /dev/null +++ b/src/views/remind/addInvRemindSetDialog.vue @@ -0,0 +1,339 @@ + + + + diff --git a/src/views/remind/invRemindMsg.vue b/src/views/remind/invRemindMsg.vue index 519bfc6..befd6f2 100644 --- a/src/views/remind/invRemindMsg.vue +++ b/src/views/remind/invRemindMsg.vue @@ -153,7 +153,7 @@ - + @@ -196,6 +196,77 @@ /> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { - 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.rowData = row; + let typeName = this.typeMap[row.type]; + this.rowData.typeName = typeName; + this.handleMsg = null; + this.confirmMsgVisible = true; }, ignoreMsg(row) { this.ignoreVisible = true; @@ -425,7 +487,31 @@ export default { this.currentId = null; }) }, - + closeConfirmDialog() { + this.confirmMsgVisible = false; + this.rowData = {} + }, + updateHandleMsg() { + let params = { + id: this.rowData.id, + handleMsg: this.handleMsg + }; + confirmMsg(params).then((res) => { + if (res.code === 20000) { + this.rowData = {}; + this.handleMsg = null; + this.confirmMsgVisible = false; + this.$message.success("已确认"); + } else { + this.$message.error(res.message); + } + }).catch((error) => { + this.rowData = {}; + this.handleMsg = null; + this.confirmMsgVisible = false; + this.$message.error(error.message); + }) + }, statusFilterType(status) { const statusMap = { diff --git a/src/views/remind/invRemindSet.vue b/src/views/remind/invRemindSet.vue index e445901..0600f9a 100644 --- a/src/views/remind/invRemindSet.vue +++ b/src/views/remind/invRemindSet.vue @@ -1,53 +1,81 @@ - +