修改解绑表的时候读数问题,抄表路线的抄表记录可以查看图片

This commit is contained in:
2025-10-28 14:25:59 +08:00
parent 2535720023
commit fe590353df
16 changed files with 197 additions and 29 deletions

View File

@@ -0,0 +1,30 @@
// pages/readingHistory/components/detailModal/index.js
Component({
/**
* 组件的属性列表
*/
properties: {
visible: Boolean,
detail: Object,
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
showImage() {
this.setData({ show: true })
},
onClose() {
this.setData({ show: false })
}
}
})