去除debugger

prod
郑明梁 2 years ago
parent da9c4229e3
commit 0d4f8832e6

@ -179,7 +179,7 @@ export default {
type: 'warning'
}).then(() => {
this.$store.dispatch('LogOut').then(() => {
location.href = process.env.VUE_APP_CONTEXT_PATH + "index";
location.href = process.env.VUE_APP_CONTEXT_PATH ;
})
}).catch(() => {
});

@ -418,7 +418,6 @@ export default {
this.formData = {};
this.codeArray = [];
if (this.$isNotBlank(this.idQuery.id)) {
debugger
this.formData = this.idQuery.formData;
this.query.orderIdFk=this.formData.billNo;
this.query.sOrderId = this.formData.orderIdFk;

@ -363,7 +363,6 @@ export default {
return;
}
if (this.curBustype.corpType == 3) {//
debugger
this.invQueryData.invCode = this.idQuery.invCode;
this.selectInvProductVisible = true;
} else if (this.curBustype.corpType == 2)//

@ -170,7 +170,6 @@ export default {
this.getList();
},
getList() {
debugger
this.loading = true;
this.invPreProductDetailQuery.relId = this.inputQuery.relId;
this.invPreProductDetailQuery.supId = this.inputQuery.supId;

@ -348,7 +348,6 @@ export default {
} else
stockQRCodeTextPDFFromTemplateFile(tQuery).then((response) => {
//pdfurl
const binaryData = [];
binaryData.push(response);

@ -106,7 +106,6 @@ export default {
},
onAddSubmit() {
debugger
let postRequesty = {
invCode: this.inputQuery.code,
selectActions: [],

@ -156,7 +156,7 @@
:on-change="uploadJrxmlOnchange"
:on-success="uploadJrxmlHandleSuccess"
:file-list="jrxmlFileList"
:auto-upload="false">
:auto-upload="true">
<el-button slot="trigger" size="small" type="primary" :disabled="uploadDisabled">选取文件
</el-button>
<div slot="tip" class="el-upload__tip" v-if="formData.jrxmlPath==null"> jrxml
@ -253,7 +253,7 @@ import {
systemPDFModuleSave,
getSystemPDFModules
} from "@/api/system/systemPDFTemplate";
import store from "@/store";
import {saveAs} from 'file-saver';
import {demoPrint} from "@/api/system/itextpdf";
@ -613,7 +613,7 @@ export default {
console.log(response)
if (response.code === 20000) {
this.formData.path = response.data.path;
// this.submitTemplate();
this.submitTemplate();
} else {
this.$message.error("上传失败:" + response.message);
}
@ -790,8 +790,8 @@ export default {
this.uploadUrl = this.BASE_URL + "/udiwms/upload/pdf/template/jasper";
this.uploadJrxmlUrl = this.BASE_URL + "/udiwms/upload/pdf/template/jrxml";
this.headers = {
ADMIN_ID: store.getters.adminId,
ADMIN_TOKEN: store.getters.token,
ADMIN_ID: this.$store.getters.adminId,
ADMIN_TOKEN: this.$store.getters.token,
};
}
};

Loading…
Cancel
Save