Compare commits

...

2 Commits

Author SHA1 Message Date
1edca208be 维修工单消息跳转功能 2024-10-31 14:03:09 +08:00
7a44b8351f 维修工单消息跳转功能 2024-10-31 14:02:47 +08:00
2 changed files with 17 additions and 2 deletions

View File

@ -521,7 +521,11 @@ export default {
};
},
created() {
this.getList();
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;

View File

@ -108,6 +108,7 @@
label="发送时间"
align="center"
prop="createTime"
sortable
width="180"
>
<template v-slot="scope">
@ -195,7 +196,7 @@
v-show="scope.row.orderId && scope.row.type === 3"
size="mini"
type="text"
icon="el-icon-check"
icon="el-icon-tickets"
@click="handle2MaintenanceOrder(scope.row.orderId)"
>维修工单</el-button>
</template>