对接未符合项
This commit is contained in:
@@ -965,9 +965,7 @@
|
|||||||
this.visible = false
|
this.visible = false
|
||||||
this.selectedRowKeys = []
|
this.selectedRowKeys = []
|
||||||
this.$message.success(this.$t('OperationSuccessful'))
|
this.$message.success(this.$t('OperationSuccessful'))
|
||||||
this.$router.push({
|
this.getList()
|
||||||
path: '/ProcessCenter'
|
|
||||||
})
|
|
||||||
} else {
|
} else {
|
||||||
this.$message.warning(this.$t('operationFailed'))
|
this.$message.warning(this.$t('operationFailed'))
|
||||||
}
|
}
|
||||||
@@ -1133,17 +1131,17 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
addProcess(val) {
|
addProcess(val) {
|
||||||
let num = 2
|
let num = 1
|
||||||
// for (let i = 0; i < 3; i++) {
|
for (let i = 0; i < 3; i++) {
|
||||||
// setTimeout(() => {
|
setTimeout(() => {
|
||||||
this.startProcessDesign(val)
|
++num
|
||||||
// }, 500)
|
this.startProcessDesign(val, num)
|
||||||
// }
|
}, 500)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
startProcessDesign(value, num) {
|
startProcessDesign(value, num) {
|
||||||
let query = {
|
let query = {
|
||||||
type: 2,
|
type: num,
|
||||||
msg: JSON.stringify(value).replace(/\"/g, '\'')
|
msg: JSON.stringify(value).replace(/\"/g, '\'')
|
||||||
}
|
}
|
||||||
postAction('/workFlow/startProcess', query).then((res) => {
|
postAction('/workFlow/startProcess', query).then((res) => {
|
||||||
|
|||||||
@@ -89,7 +89,7 @@
|
|||||||
{
|
{
|
||||||
title: this.$t('ProcessType'),
|
title: this.$t('ProcessType'),
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'ProcessType'
|
dataIndex: 'flowType'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: this.$t('areaOfResponsibility'),
|
title: this.$t('areaOfResponsibility'),
|
||||||
|
|||||||
@@ -99,7 +99,7 @@
|
|||||||
{
|
{
|
||||||
title: this.$t('ProcessType'),
|
title: this.$t('ProcessType'),
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'ProcessType'
|
dataIndex: 'flowType'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: this.$t('RelatedItems'),
|
title: this.$t('RelatedItems'),
|
||||||
|
|||||||
Reference in New Issue
Block a user