优化流程的提交连接的地址构造方式

This commit is contained in:
jishenghua 2025-03-19 16:45:34 +08:00
parent 2ab079039f
commit e77075c9b6

View File

@ -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 = "发起流程"
}