|
|
|
@ -138,7 +138,6 @@
|
|
|
|
|
:action="this.uploadUrl"
|
|
|
|
|
:on-preview="uploadHandlePreview"
|
|
|
|
|
:on-remove="uploadHandleRemove"
|
|
|
|
|
:limit="1"
|
|
|
|
|
:headers="headers"
|
|
|
|
|
:on-exceed="uploadHandleExceed"
|
|
|
|
|
accept=".jpg,.png"
|
|
|
|
@ -190,7 +189,6 @@
|
|
|
|
|
:action="this.uploadUrl"
|
|
|
|
|
:on-preview="uploadHandlePreview"
|
|
|
|
|
:on-remove="uploadHandleRemove1"
|
|
|
|
|
:limit="1"
|
|
|
|
|
:headers="headers"
|
|
|
|
|
:on-exceed="uploadHandleExceed"
|
|
|
|
|
accept=".jpg,.png"
|
|
|
|
@ -219,7 +217,8 @@
|
|
|
|
|
style="text-align:right" @click="showImgViewerCold">
|
|
|
|
|
冷链报告预览
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-image-viewer v-if="imgViewerVisibleCold" style="z-index:9999" :on-close="closeImgViewerCold" :url-list="imgListCold"/>
|
|
|
|
|
<el-image-viewer v-if="imgViewerVisibleCold" style="z-index:9999" :on-close="closeImgViewerCold"
|
|
|
|
|
:url-list="imgListCold"/>
|
|
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
@ -227,7 +226,6 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
@ -263,9 +261,9 @@ export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
imgList: [],
|
|
|
|
|
imgListCold:[],
|
|
|
|
|
imgListCold: [],
|
|
|
|
|
imgViewerVisible: false,
|
|
|
|
|
imgViewerVisibleCold:false,
|
|
|
|
|
imgViewerVisibleCold: false,
|
|
|
|
|
BASE_URL: process.env.VUE_APP_BASE_API,
|
|
|
|
|
code: "",
|
|
|
|
|
formData: {
|
|
|
|
@ -292,7 +290,8 @@ export default {
|
|
|
|
|
headers: {},
|
|
|
|
|
choiceFile: "选取文件",
|
|
|
|
|
choiceFile1: "选取文件",
|
|
|
|
|
|
|
|
|
|
isChangeCheck: false,
|
|
|
|
|
isChangeCold: false,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -373,7 +372,7 @@ export default {
|
|
|
|
|
this.$message.warning(`当前限制选择 1 个文件,本次选择了 ${files.length} 个文件,共选择了 ${files.length + fileList.length} 个文件`);
|
|
|
|
|
},
|
|
|
|
|
uploadOnchange(file, fileList) {
|
|
|
|
|
this.inputQuery.checkFileName = file.name;
|
|
|
|
|
// this.inputQuery.checkFileName = file.name;
|
|
|
|
|
let fileName = file.name;
|
|
|
|
|
let uid = file.uid
|
|
|
|
|
let pos = fileName.lastIndexOf(".");
|
|
|
|
@ -400,7 +399,7 @@ export default {
|
|
|
|
|
return isLt;
|
|
|
|
|
},
|
|
|
|
|
uploadOnchange1(file, fileList) {
|
|
|
|
|
this.inputQuery.checkColdFileName = file.name;
|
|
|
|
|
// this.inputQuery.checkColdFileName = file.name;
|
|
|
|
|
let fileName = file.name;
|
|
|
|
|
let uid = file.uid
|
|
|
|
|
let pos = fileName.lastIndexOf(".");
|
|
|
|
@ -427,20 +426,37 @@ export default {
|
|
|
|
|
return isLt;
|
|
|
|
|
},
|
|
|
|
|
uploadHandleSuccess(response, file, fileList) {
|
|
|
|
|
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.inputQuery.filePath = response.data.name;
|
|
|
|
|
// this.onSubmit();
|
|
|
|
|
if (this.inputQuery.filePath == null || this.isChangeCheck == true) {
|
|
|
|
|
this.inputQuery.filePath = response.data.name + ",";
|
|
|
|
|
this.inputQuery.checkFileName = file.name + ",";
|
|
|
|
|
this.isChangeCheck = false;
|
|
|
|
|
} else {
|
|
|
|
|
this.inputQuery.filePath += response.data.name + ",";
|
|
|
|
|
this.inputQuery.checkFileName += file.name + ",";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error("文件上传失败:" + response.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
uploadHandleSuccess1(response, file, fileList) {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.inputQuery.coldFilePath = response.data.name;
|
|
|
|
|
// this.onSubmit();
|
|
|
|
|
if (this.inputQuery.coldFilePath == null || this.isChangeCold == true) {
|
|
|
|
|
this.inputQuery.coldFilePath = response.data.name + ",";
|
|
|
|
|
this.inputQuery.checkColdFileName = file.name + ",";
|
|
|
|
|
this.isChangeCold = false;
|
|
|
|
|
} else {
|
|
|
|
|
this.inputQuery.coldFilePath += response.data.name + ",";
|
|
|
|
|
this.inputQuery.checkColdFileName += file.name + ",";
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error("文件上传失败:" + response.message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
uploadHandleError() {
|
|
|
|
|
|
|
|
|
@ -471,7 +487,7 @@ export default {
|
|
|
|
|
document.addEventListener("touchmove", m, false); // 禁止页面滑动
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
showImgViewerCold(row){
|
|
|
|
|
showImgViewerCold(row) {
|
|
|
|
|
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
|
|
|
|
|
this.imgList = [];
|
|
|
|
|
previewImage({imageUrl: this.inputQuery.coldFilePath, certFileUrl: this.certFileUrl}).then(response => {
|
|
|
|
@ -498,9 +514,11 @@ export default {
|
|
|
|
|
document.removeEventListener("touchmove", m, true);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
closeImgViewerCold(){
|
|
|
|
|
closeImgViewerCold() {
|
|
|
|
|
this.imgViewerVisibleCold = false;
|
|
|
|
|
const m = (e) => { e.preventDefault() };
|
|
|
|
|
const m = (e) => {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
};
|
|
|
|
|
document.body.style.overflow = 'auto';
|
|
|
|
|
document.removeEventListener("touchmove", m, true);
|
|
|
|
|
},
|
|
|
|
@ -529,11 +547,13 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
if (this.inputQuery.filePath != null) {
|
|
|
|
|
this.choiceFile = "更换检验报告";
|
|
|
|
|
this.isChangeCheck = true;
|
|
|
|
|
} else {
|
|
|
|
|
this.choiceFile = "选取检验报告";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.inputQuery.coldFilePath != null) {
|
|
|
|
|
this.isChangeCold = true;
|
|
|
|
|
this.choiceFile1 = "更换冷链报告";
|
|
|
|
|
} else {
|
|
|
|
|
this.choiceFile1 = "选取冷链报告";
|
|
|
|
|