Merge remote-tracking branch 'origin/feature_dev_20221008_TODO' into feature_dev_20221008_TODO
This commit is contained in:
@@ -509,8 +509,8 @@ module.exports = {
|
|||||||
AddProcess: '添加流程',
|
AddProcess: '添加流程',
|
||||||
RelatedItems: '相关项目',
|
RelatedItems: '相关项目',
|
||||||
Sponsor: '发起人',
|
Sponsor: '发起人',
|
||||||
CurrentProcessor: '当前处理人',
|
CurrentProcessor: '当前操作人',
|
||||||
LastProcessor: '上一处理人',
|
LastProcessor: '上一操作人',
|
||||||
ProcessingTime: '办理时间',
|
ProcessingTime: '办理时间',
|
||||||
cutoffTime: '截止时间',
|
cutoffTime: '截止时间',
|
||||||
ProcessStatus: '流程状态',
|
ProcessStatus: '流程状态',
|
||||||
|
|||||||
@@ -186,10 +186,10 @@
|
|||||||
this.loading = true
|
this.loading = true
|
||||||
getAction(this.url.queryTaskDetailByTaskIds, { taskIds: this.$route.query.taskIds }).then((res) => {
|
getAction(this.url.queryTaskDetailByTaskIds, { taskIds: this.$route.query.taskIds }).then((res) => {
|
||||||
if (res instanceof String) {
|
if (res instanceof String) {
|
||||||
this.queryBy = JSON.parse(res)
|
this.queryBy = JSON.parse(res) || {}
|
||||||
callback()
|
callback()
|
||||||
} else {
|
} else {
|
||||||
this.queryBy = res
|
this.queryBy = res || {}
|
||||||
callback()
|
callback()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -401,10 +401,10 @@
|
|||||||
this.loading = true
|
this.loading = true
|
||||||
getAction(this.url.queryTaskDetailByTaskIds, { taskIds: this.$route.query.taskIds }).then((res) => {
|
getAction(this.url.queryTaskDetailByTaskIds, { taskIds: this.$route.query.taskIds }).then((res) => {
|
||||||
if (res instanceof String) {
|
if (res instanceof String) {
|
||||||
this.queryBy = JSON.parse(res)
|
this.queryBy = JSON.parse(res) || {}
|
||||||
callback()
|
callback()
|
||||||
} else {
|
} else {
|
||||||
this.queryBy = res
|
this.queryBy = res || {}
|
||||||
callback()
|
callback()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -21,10 +21,10 @@
|
|||||||
<a @click="RelatedItemsClick(record)" :title="text">{{text}}</a>
|
<a @click="RelatedItemsClick(record)" :title="text">{{text}}</a>
|
||||||
</span>
|
</span>
|
||||||
<span slot="standardInformation" slot-scope="text,record">
|
<span slot="standardInformation" slot-scope="text,record">
|
||||||
<a @click="standardInformationClick(record)" v-if="text" :title="text">
|
<a @click="standardInformationClick(record)" v-if="text && text != '--'" :title="text+'、'+record.title">
|
||||||
{{text}}
|
{{text+'、'+record.title}}
|
||||||
</a>
|
</a>
|
||||||
<span v-else>--</span>
|
<span v-else>--</span>
|
||||||
</span>
|
</span>
|
||||||
</a-table>
|
</a-table>
|
||||||
<div class="page" v-if="dataSource && dataSource.length > 0">
|
<div class="page" v-if="dataSource && dataSource.length > 0">
|
||||||
|
|||||||
@@ -19,8 +19,8 @@
|
|||||||
<a @click="RelatedItemsClick(record)" :title="text">{{text}}</a>
|
<a @click="RelatedItemsClick(record)" :title="text">{{text}}</a>
|
||||||
</span>
|
</span>
|
||||||
<span slot="standardInformation" slot-scope="text,record">
|
<span slot="standardInformation" slot-scope="text,record">
|
||||||
<a @click="standardInformationClick(record)" v-if="text" :title="text">
|
<a @click="standardInformationClick(record)" v-if="text && text != '--'" :title="text+'、'+record.title">
|
||||||
{{text}}
|
{{text+'、'+record.title}}
|
||||||
</a>
|
</a>
|
||||||
<span v-else>--</span>
|
<span v-else>--</span>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -23,8 +23,8 @@
|
|||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
<span slot="standardInformation" slot-scope="text,record">
|
<span slot="standardInformation" slot-scope="text,record">
|
||||||
<a @click="standardInformationClick(record)" v-if="text" :title="text">
|
<a @click="standardInformationClick(record)" v-if="text && text != '--'" :title="text+'、'+record.title">
|
||||||
{{text}}
|
{{text+'、'+record.title}}
|
||||||
</a>
|
</a>
|
||||||
<span v-else>--</span>
|
<span v-else>--</span>
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
@@ -18,7 +18,9 @@
|
|||||||
@click="viewClick(record)">{{$t('view')}}</a>
|
@click="viewClick(record)">{{$t('view')}}</a>
|
||||||
</span>
|
</span>
|
||||||
<span slot="standardInformation" slot-scope="text,record">
|
<span slot="standardInformation" slot-scope="text,record">
|
||||||
<a @click="standardInformationClick(record)" :title="text">{{text}}</a>
|
<a @click="standardInformationClick(record)" :title="text+'、'+record.title">
|
||||||
|
{{text+'、'+record.title}}
|
||||||
|
</a>
|
||||||
</span>
|
</span>
|
||||||
</a-table>
|
</a-table>
|
||||||
<div class="page" v-if="dataSource && dataSource.length > 0">
|
<div class="page" v-if="dataSource && dataSource.length > 0">
|
||||||
|
|||||||
@@ -16,7 +16,9 @@
|
|||||||
@click="ProcessingClick(record)">{{$t('Processing')}}</a>
|
@click="ProcessingClick(record)">{{$t('Processing')}}</a>
|
||||||
</span>
|
</span>
|
||||||
<span slot="standardInformation" slot-scope="text,record">
|
<span slot="standardInformation" slot-scope="text,record">
|
||||||
<a @click="standardInformationClick(record)" :title="text">{{text}}</a>
|
<a @click="standardInformationClick(record)" :title="text+'、'+record.title">
|
||||||
|
{{text+'、'+record.title}}
|
||||||
|
</a>
|
||||||
</span>
|
</span>
|
||||||
</a-table>
|
</a-table>
|
||||||
<div class="page" v-if="dataSource && dataSource.length > 0">
|
<div class="page" v-if="dataSource && dataSource.length > 0">
|
||||||
|
|||||||
@@ -18,7 +18,9 @@
|
|||||||
@click="viewClick(record)">{{$t('view')}}</a>
|
@click="viewClick(record)">{{$t('view')}}</a>
|
||||||
</span>
|
</span>
|
||||||
<span slot="standardInformation" slot-scope="text,record">
|
<span slot="standardInformation" slot-scope="text,record">
|
||||||
<a @click="standardInformationClick(record)" :title="text">{{text}}</a>
|
<a @click="standardInformationClick(record)" :title="text+'、'+record.title">
|
||||||
|
{{text+'、'+record.title}}
|
||||||
|
</a>
|
||||||
</span>
|
</span>
|
||||||
</a-table>
|
</a-table>
|
||||||
<div class="page" v-if="dataSource && dataSource.length > 0">
|
<div class="page" v-if="dataSource && dataSource.length > 0">
|
||||||
|
|||||||
@@ -9,6 +9,17 @@
|
|||||||
@ok="handleOk"
|
@ok="handleOk"
|
||||||
@cancel="handleCancel"
|
@cancel="handleCancel"
|
||||||
>
|
>
|
||||||
|
<template slot="footer">
|
||||||
|
<a-button key="back" @click="handleCancel">
|
||||||
|
{{$t('cancel')}}
|
||||||
|
</a-button>
|
||||||
|
<a-button type="danger" :loading="confirmLoading" v-if="taskDefinitionKey == 'dreqr'" @click="sendBackClick">
|
||||||
|
{{$t('sendBack')}}
|
||||||
|
</a-button>
|
||||||
|
<a-button type="primary" :loading="confirmLoading" @click="handleOk">
|
||||||
|
{{$t('confirm')}}
|
||||||
|
</a-button>
|
||||||
|
</template>
|
||||||
<a-form-model :model="formInline" class="formAdd" :rules="rules" ref="ruleForm">
|
<a-form-model :model="formInline" class="formAdd" :rules="rules" ref="ruleForm">
|
||||||
<a-row :gutter="24" v-if="taskDefinitionKey != 'dreqr'">
|
<a-row :gutter="24" v-if="taskDefinitionKey != 'dreqr'">
|
||||||
<a-col :span="24">
|
<a-col :span="24">
|
||||||
@@ -68,6 +79,7 @@
|
|||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
</a-form-model>
|
</a-form-model>
|
||||||
|
|
||||||
</a-modal>
|
</a-modal>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -138,6 +150,10 @@
|
|||||||
this.$refs.ruleForm.clearValidate()
|
this.$refs.ruleForm.clearValidate()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
sendBackClick() {
|
||||||
|
this.formInline.flag = '1'
|
||||||
|
this.handleOk()
|
||||||
|
},
|
||||||
flagChange(event) {
|
flagChange(event) {
|
||||||
if (event.target.value == 3) {
|
if (event.target.value == 3) {
|
||||||
this.isTrue = true
|
this.isTrue = true
|
||||||
|
|||||||
@@ -181,6 +181,7 @@
|
|||||||
window.open(newUrl.href, '_blank')
|
window.open(newUrl.href, '_blank')
|
||||||
},
|
},
|
||||||
batchProcessingForm() {
|
batchProcessingForm() {
|
||||||
|
this.selectedRowKeys = []
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
batchProcessingClick() {
|
batchProcessingClick() {
|
||||||
@@ -202,10 +203,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
searchQuery() {
|
searchQuery() {
|
||||||
|
this.selectedRowKeys = []
|
||||||
this.pageNo = 1
|
this.pageNo = 1
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
searchReset() {
|
searchReset() {
|
||||||
|
this.selectedRowKeys = []
|
||||||
this.pageNo = 1
|
this.pageNo = 1
|
||||||
this.queryParam = {}
|
this.queryParam = {}
|
||||||
this.getList()
|
this.getList()
|
||||||
|
|||||||
Reference in New Issue
Block a user