fix 80193
This commit is contained in:
@@ -144,7 +144,11 @@
|
|||||||
<!--表格新增、编辑表单-->
|
<!--表格新增、编辑表单-->
|
||||||
<table-form-modal ref="modalForm" @ok="modalFormOk" />
|
<table-form-modal ref="modalForm" @ok="modalFormOk" />
|
||||||
<!--转办选人-->
|
<!--转办选人-->
|
||||||
<user-select-modal ref="userSelectModal" check-required :type="isTransfer ? 'radio' : 'checkbox'" @change="handleSelectedUser" />
|
<user-select-modal ref="userSelectModal"
|
||||||
|
check-required
|
||||||
|
:type="isTransfer ? 'radio' : 'checkbox'"
|
||||||
|
:value="isTransfer? null : carbonCopyPersonIds"
|
||||||
|
@change="handleSelectedUser" />
|
||||||
</internal-detail-page>
|
</internal-detail-page>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -239,7 +243,8 @@ export default {
|
|||||||
selectedRowKeys: [],
|
selectedRowKeys: [],
|
||||||
currentNode: '',
|
currentNode: '',
|
||||||
isTransfer: true, // 是否转办
|
isTransfer: true, // 是否转办
|
||||||
businessId: null
|
businessId: null,
|
||||||
|
carbonCopyPersonIds: null // 抄送选择人的id
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@@ -436,6 +441,9 @@ export default {
|
|||||||
userId
|
userId
|
||||||
}
|
}
|
||||||
const func = this.isTransfer ? transferProcurementProcess : carbonCopyProcurementProcess
|
const func = this.isTransfer ? transferProcurementProcess : carbonCopyProcurementProcess
|
||||||
|
if (!this.isTransfer) {
|
||||||
|
this.carbonCopyPersonIds = userId
|
||||||
|
}
|
||||||
this.loading = true
|
this.loading = true
|
||||||
func(params).then(res => {
|
func(params).then(res => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
|
|||||||
Reference in New Issue
Block a user