diff --git a/jshERP-web/src/views/financial/mixins/FinancialModalMixin.js b/jshERP-web/src/views/financial/mixins/FinancialModalMixin.js index 00208309e..3f6d589e9 100644 --- a/jshERP-web/src/views/financial/mixins/FinancialModalMixin.js +++ b/jshERP-web/src/views/financial/mixins/FinancialModalMixin.js @@ -345,7 +345,7 @@ export const FinancialModalMixin = { if(this.model && this.model.billNo) { getPlatformConfigByKey({ "platformKey": "send_workflow_url" }).then((res) => { if (res && res.code === 200) { - let sendWorkflowUrl = res.data.platformValue + '?no=' + this.model.billNo + '&type=2' + let sendWorkflowUrl = res.data.platformValue + '&no=' + this.model.billNo + '&type=2' this.$refs.modalWorkflow.show(this.model, sendWorkflowUrl, this.model.billNo, 2, 320) this.$refs.modalWorkflow.title = "发起流程" }