工单详情增加部分字段,装表新增采集器,修改工单列表查询的问题

This commit is contained in:
2025-11-18 15:11:05 +08:00
parent c03d70b221
commit 4779cc1718
9 changed files with 104 additions and 8 deletions

View File

@@ -11,7 +11,12 @@ Page({
* 页面的初始数据
*/
data: {
detail: {}
detail: {},
header: [
// { key: 'address', title: '电表地址', renderBody: (item) => item.meter?.address },
{ title: '操作人',renderBody: (item) => { return item.user_name } },
{ title: '状态',renderBody: (item) => { return item.status === 0 ? "未确认" : "已确认" } },
],
},
/**