维修工单消息跳转功能

This commit is contained in:
zhangjunwen 2024-10-31 14:03:09 +08:00
parent 7a44b8351f
commit 1edca208be

View File

@ -521,7 +521,11 @@ export default {
};
},
created() {
if (this.$route.query.orderId) {
this.getQueryData();
} else {
this.getList();
}
this.initSelection();
},
methods: {
@ -637,6 +641,16 @@ export default {
this.loading = false;
}
},
/**跳转查询 */
async getQueryData() {
this.loading = true;
const res = await RemoteMaintenanceOrderApi.getRemoteMaintenanceOrder(
this.$route.query.orderId
);
this.list = [res.data];
this.total = this.list.length;
this.loading = false;
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNo = 1;