对接握手流程
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>
|
||||
|
||||
Reference in New Issue
Block a user