给单据增加审核中的状态

This commit is contained in:
季圣华
2023-02-24 01:54:14 +08:00
parent bf9bbd5690
commit 668f0653da
22 changed files with 24 additions and 5 deletions

View File

@@ -1592,8 +1592,8 @@
handleWorkflow() {
getPlatformConfigByKey({"platformKey": "send_workflow_url"}).then((res)=> {
if (res && res.code === 200) {
let sendWorkflowUrl = res.data.platformValue + '?no=' + this.model.number
this.$refs.modalWorkflow.show(this.model, sendWorkflowUrl, 500)
let sendWorkflowUrl = res.data.platformValue + '?no=' + this.model.number + '&type=1'
this.$refs.modalWorkflow.show(this.model, sendWorkflowUrl, 320)
this.$refs.modalWorkflow.title = "发起流程"
}
})