diff --git a/src/views/purchase/company/companyProducts.vue b/src/views/purchase/company/companyProducts.vue index 6db81b9..cb94190 100644 --- a/src/views/purchase/company/companyProducts.vue +++ b/src/views/purchase/company/companyProducts.vue @@ -177,22 +177,6 @@ > - - - - - {{ - item - }} - - - - - - @@ -280,23 +264,10 @@ export default { selectUdiDialogVisible: false, selectErpDialogVisible: false, selectLocalVisible: false, - //选择注册证件备案号 - dialogFormVisible: false, - currentCert: null, - certList: [], }; }, methods: { - selectCert() { - if (this.currentCert == null) { - this.$message.error("请先选择对应的注册证!"); - } else { - this.multipleSelection.zczbhhzbapzbh = this.currentCert; - //this.combine(); - this.closeSelDialog(this.multipleSelection); - } - }, onReset() { this.$router.push({ path: "", @@ -380,15 +351,8 @@ export default { this.$message.warning("请先选入物资字典信息!"); return; } - //this.closeSelDialog(selectData.id); - let str = this.multipleSelection.zczbhhzbapzbh; - if (this.$isNotBlank(str) && str.search(",") != -1) { - this.currentCert = null; - this.certList = str.split(','); - this.dialogFormVisible = true; - } else { - this.closeSelDialog(selectData); - } + this.closeSelDialog(selectData.id); + }, allExport() { this.filterQuery.customerId = store.getters.customerId; diff --git a/src/views/purchase/product/supProductEditDialog.vue b/src/views/purchase/product/supProductEditDialog.vue index f5848d3..e32d8f1 100644 --- a/src/views/purchase/product/supProductEditDialog.vue +++ b/src/views/purchase/product/supProductEditDialog.vue @@ -164,7 +164,6 @@ placeholder="请输入内容" v-model="inputQuery.recordCode" @input="change()" - disabled > @@ -552,7 +551,12 @@ export default { } } if(val==3){ - + this.$confirm( "已审核通过,是否需要重新提交变更", { + confirmButtonText: "确定", + type: "warning", + showCancelButton: false, + }) + .then(() => { this.$refs['inputQuery'].validate(valid => { if (valid) { // this.inputQuery.auditStatus = val; @@ -576,6 +580,7 @@ export default { return false; } }); + }); }else{ this.$refs['inputQuery'].validate(valid => { if (valid) { @@ -658,19 +663,19 @@ export default { 'png', 'jpg', 'jpeg', 'bmp', 'gif', 'webp', 'psd', 'svg', 'tiff'].indexOf(ext.toLowerCase()) !== -1; }, showImgViewer(row) { - this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="; - this.imgList = []; - previewImage({imageUrl: row.filePath, certFileUrl: this.certFileUrl}).then(response => { - if (response.code === 20000) { - this.imgList=response.data; - } - }); - this.imgViewerVisible = true; - const m = (e) => { - e.preventDefault() - }; - document.body.style.overflow = 'hidden'; - document.addEventListener("touchmove", m, false); // 禁止页面滑动 + this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="; + this.imgList = []; + previewImage({imageUrl: row.filePath, certFileUrl: this.certFileUrl}).then(response => { + if (response.code === 20000) { + this.imgList=response.data; + } + }); + this.imgViewerVisible = true; + const m = (e) => { + e.preventDefault() + }; + document.body.style.overflow = 'hidden'; + document.addEventListener("touchmove", m, false); // 禁止页面滑动 }, closeImgViewer() { this.imgViewerVisible = false; @@ -683,10 +688,9 @@ export default { closeSelDialog(val) { if (val != null) { - let query = { productId: this.inputQuery.productId, - relIdFk: val.id, + relIdFk: val, manufacturerId: this.inputQuery.manufacturerId, customerId: this.inputQuery.customerId, companyName: this.inputQuery.companyName, @@ -699,13 +703,10 @@ export default { this.inputQuery = response.data; this.inputQuery.manufacturerId=this.inputQuery.manufacturerIdFk this.selectSingleProductVisible = false; - this.inputQuery.recordCode = val.zczbhhzbapzbh } else { this.$message.error(response.message); } }); - - console.log("1111:"+this.inputQuery.recordCode) } },