对接设计符合性确认流程

This commit is contained in:
qq787203167
2022-05-09 18:06:09 +08:00
parent 600b7fcb98
commit 7086786f70
6 changed files with 113 additions and 38 deletions
@@ -67,6 +67,12 @@
export default {
name: 'circulationHistory',
props: {
url: {
type: String,
default: '/workFlow/get_list_by_instance'
}
},
data() {
return {
dataSource: [],
@@ -140,9 +146,10 @@
methods: {
getList() {
let query = {
prcNum: this.$route.query.prcNum
prcNum: this.$route.query.prcNum,
prcId: this.$route.query.actiProcInstId
}
getAction('/workFlow/get_list_by_instance', query).then((res) => {
getAction(this.url, query).then((res) => {
this.dataSource = res
})
},
@@ -41,6 +41,7 @@
<span slot="operation" slot-scope="result">
<a class="text"
v-if="$route.query.TaskKey == 'zrrclrw' || $route.query.TaskKey == 'dreDispose'"
:disabled="!result.createUser"
@click="edit(result,$t('edit'))">
{{$t('edit')}}
</a>
@@ -55,6 +56,7 @@
</a>
<a class="text"
v-if="$route.query.TaskKey == 'zrrclrw' || $route.query.TaskKey == 'dreDispose'"
:disabled="!result.createUser"
@click="deleted(result)">
{{$t('deleteLib')}}
</a>
@@ -52,6 +52,7 @@
<script>
export default {
name: 'reviewedByThePersonInCharge',
props: ['queryBy'],
data() {
return {
formInline: {},
@@ -75,6 +76,11 @@
}
},
mounted() {
if (this.queryBy) {
this.formInline.reviewResult = this.queryBy.reviewResult || undefined
this.formInline.approvalOpinion = this.queryBy.approvalOpinion || ''
this.formInline = { ...this.formInline }
}
},
methods: {
submit(callBack) {