对接握手流程
This commit is contained in:
@@ -20,6 +20,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { getAction, postAction } from '@/api/manage'
|
||||
|
||||
export default {
|
||||
name: 'circulationHistory',
|
||||
data() {
|
||||
@@ -59,6 +61,21 @@
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.getList()
|
||||
},
|
||||
methods: {
|
||||
getList() {
|
||||
let query = {
|
||||
prcNum: this.$route.query.prcNum
|
||||
}
|
||||
getAction('/workFlow/get_list_by_instance', query).then((res) => {
|
||||
if (res.success) {
|
||||
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -159,7 +159,7 @@
|
||||
},
|
||||
mounted() {
|
||||
if (this.$route.query.mes) {
|
||||
this.queryBy = eval('(' + JSON.parse(this.$route.query.mes) + ')')
|
||||
this.queryBy = JSON.parse(this.$route.query.mes)
|
||||
}
|
||||
this.queryProjectLawsInventoryInfo()
|
||||
},
|
||||
|
||||
@@ -143,10 +143,11 @@
|
||||
},
|
||||
// 打开查看
|
||||
classAdd(row) {
|
||||
// this.$router.push({
|
||||
// path: '/handshakeProcess',
|
||||
// query: row
|
||||
// })
|
||||
let newUrl = this.$router.resolve({
|
||||
path: '/handshakeProcess',
|
||||
query: row
|
||||
})
|
||||
window.open(newUrl.href, '_blank')
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
|
||||
@@ -133,10 +133,11 @@
|
||||
let index = row.taskIds.lastIndexOf(',')
|
||||
row.taskIds = row.taskIds.slice(0, index)
|
||||
if (row.prcType == '1') {
|
||||
this.$router.push({
|
||||
let newUrl = this.$router.resolve({
|
||||
path: '/handshakeProcess',
|
||||
query: row
|
||||
})
|
||||
window.open(newUrl.href, '_blank')
|
||||
}
|
||||
},
|
||||
onChange(page, pageSize) {
|
||||
|
||||
Reference in New Issue
Block a user