Browse Source

同路由tab切换刷新数据

fix_bug_pro20231227
smallchill 2 years ago
parent
commit
6be5e77860
  1. 11
      src/views/work/process/leave/detail.vue
  2. 23
      src/views/work/process/leave/handle.vue

11
src/views/work/process/leave/detail.vue

@ -77,6 +77,7 @@
<script>
import { historyFlowList, leaveDetail } from '@/api/work/process';
import func from '@/utils/func';
export default {
data() {
@ -98,6 +99,13 @@ export default {
created() {
this.init();
},
watch: {
$route(to, from) {
if (to.path !== from.path) {
this.init();
}
},
},
methods: {
init() {
if (!this.website.designMode) {
@ -107,6 +115,9 @@ export default {
}
this.processInstanceId = this.$route.params.processInstanceId;
this.businessId = this.$route.params.businessId;
if (func.isEmpty(this.processInstanceId) || func.isEmpty(this.businessId)) {
return;
}
historyFlowList(this.processInstanceId).then(res => {
const data = res.data;
if (data.success) {

23
src/views/work/process/leave/handle.vue

@ -86,6 +86,7 @@
<script>
import { historyFlowList, leaveDetail } from '@/api/work/process';
import { completeTask } from '@/api/work/work';
import func from '@/utils/func';
export default {
data() {
@ -109,15 +110,12 @@ export default {
created() {
this.init();
},
beforeRouteUpdate(to, from, next) {
//
// /foo/:id /foo/1 /foo/2
// Foo
// 访 `this`
if (to.fullPath !== from.fullPath) {
next();
this.init();
}
watch: {
$route(to, from) {
if (to.path !== from.path) {
this.init();
}
},
},
methods: {
init() {
@ -129,6 +127,13 @@ export default {
this.taskId = this.$route.params.taskId;
this.processInstanceId = this.$route.params.processInstanceId;
this.businessId = this.$route.params.businessId;
if (
func.isEmpty(this.taskId) ||
func.isEmpty(this.processInstanceId) ||
func.isEmpty(this.businessId)
) {
return;
}
historyFlowList(this.processInstanceId).then(res => {
const data = res.data;
if (data.success) {

Loading…
Cancel
Save