调整审核界面的提交按钮的展示逻辑

This commit is contained in:
jishenghua
2024-05-14 00:14:53 +08:00
parent 0eb33ad679
commit bbe5dc6172
23 changed files with 56 additions and 24 deletions

View File

@@ -369,6 +369,9 @@ export const BillModalMixin = {
accountModalFormOk() {
this.initAccount(1)
},
workflowModalFormOk() {
this.close()
},
onAdded(event) {
const { row, target } = event
target.setValues([{rowKey: row.id, values: {operNumber:0}}])
@@ -970,7 +973,7 @@ export const BillModalMixin = {
getPlatformConfigByKey({ "platformKey": "send_workflow_url" }).then((res) => {
if (res && res.code === 200) {
let sendWorkflowUrl = res.data.platformValue + '?no=' + this.model.number + '&type=1'
this.$refs.modalWorkflow.show(this.model, sendWorkflowUrl, 320)
this.$refs.modalWorkflow.show(this.model, sendWorkflowUrl, this.model.number, 1, 320)
this.$refs.modalWorkflow.title = "发起流程"
}
})