diff --git a/src/views/inout/DialogCreateOrder.vue b/src/views/inout/DialogCreateOrder.vue index ca84416..9080d82 100644 --- a/src/views/inout/DialogCreateOrder.vue +++ b/src/views/inout/DialogCreateOrder.vue @@ -284,6 +284,7 @@ export default { }, data() { return { + BASE_URL: process.env.VUE_APP_BASE_API, //查看帮助相关 ioCreateOrderHelp500:{}, // ioCreateOrderHelp502:{}, @@ -417,6 +418,9 @@ export default { //为url类型 if (helpType == 1) { window.open(this["ioCreateOrderHelp"+code].urlPath, '_blank') + }else if(helpType == 0 ||helpType == null){ + let certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name="; + window.open(certFileUrl + this["ioCreateOrderHelp"+code].filePath); } },