优化订单列表
This commit is contained in:
parent
4dff81d1d4
commit
460c228154
|
@ -291,6 +291,7 @@ export default {
|
|||
.chooseWorker(that.id, uid)
|
||||
.then((msg) => {
|
||||
that.$utils.toast(msg).then(() => {
|
||||
this.$store.commit("system/refreshOrder", true);
|
||||
that.loadDetail();
|
||||
});
|
||||
})
|
||||
|
@ -339,6 +340,7 @@ export default {
|
|||
* 刷新页面
|
||||
*/
|
||||
refresh() {
|
||||
this.$store.commit("system/refreshOrder", true);
|
||||
this.loadDetail();
|
||||
},
|
||||
/**
|
||||
|
@ -376,6 +378,7 @@ export default {
|
|||
},
|
||||
})
|
||||
.then(() => {
|
||||
this.$store.commit("system/refreshOrder", true);
|
||||
this.changeTimeData.data.serviceTime = datetime;
|
||||
this.changeTimeData.changeTimeModal = false;
|
||||
})
|
||||
|
|
|
@ -142,6 +142,10 @@ export default {
|
|||
currentTab.page = 1;
|
||||
currentTab.more = true;
|
||||
currentTab.list = [];
|
||||
uni.pageScrollTo({
|
||||
scrollTop: 0,
|
||||
duration: 0,
|
||||
});
|
||||
this.loadData();
|
||||
},
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue