对接待办中心

This commit is contained in:
sunFlower
2022-10-18 15:50:46 +08:00
parent d41c073cec
commit f23800cda7
3 changed files with 8 additions and 9 deletions
@@ -8,8 +8,8 @@
<div class="title-text" :title="$t('standardInformation')"> <div class="title-text" :title="$t('standardInformation')">
<span>{{$t('standardInformation')}}</span> <span>{{$t('standardInformation')}}</span>
</div> </div>
<j-input class="box-input" :placeholder="$t('PleaseEnter')+$t('standardInformation')" <a-input class="box-input" :placeholder="$t('PleaseEnter')+$t('standardInformation')"
v-model="queryParam.title"></j-input> v-model="queryParam.title"></a-input>
</div> </div>
</a-col> </a-col>
<a-col :md="6" :sm="8"> <a-col :md="6" :sm="8">
@@ -127,8 +127,7 @@
this.taskIds = [] this.taskIds = []
this.projectLawsInventoryIds = [] this.projectLawsInventoryIds = []
this.selectedRowKeys.forEach(res => { this.selectedRowKeys.forEach(res => {
res.taskIds = res.actiProcInstId this.taskIds.push(res.taskId)
this.taskIds.push(res.taskIds)
this.projectLawsInventoryIds.push(res.projectLawsInventoryId) this.projectLawsInventoryIds.push(res.projectLawsInventoryId)
}) })
this.confirmLoading = false this.confirmLoading = false
@@ -215,11 +215,11 @@
let query = {} let query = {}
if (row.flowType == '1') { if (row.flowType == '1') {
query = { query = {
taskDefinitionKey: row.taskDefinitionKey, taskDefinitionKey:row.taskDefinitionKey,
taskIds: row.actiProcInstId, taskIds:row.taskId,
prcType: row.flowType, prcType:row.flowType,
prcNum: row.prcNum, prcNum:row.prcNum,
isTrue: true isTrue:true,
} }
let newUrl = this.$router.resolve({ let newUrl = this.$router.resolve({
path: '/handshakeProcess', path: '/handshakeProcess',