|
|
|
@ -164,7 +164,6 @@
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
v-model="inputQuery.recordCode"
|
|
|
|
|
@input="change()"
|
|
|
|
|
disabled
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
@ -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)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|