修改工作台开户建筑必填和优化报错信息,账单支持峰谷

This commit is contained in:
2025-04-22 18:00:12 +08:00
parent 721937fa5b
commit fb9e727efd
9 changed files with 360 additions and 65 deletions

View File

@@ -14,7 +14,7 @@ Component({
},
lifetimes: {
attached() {
loadingFunc(() => this.init())
loadingFunc(async () => await this.init())
}
},
/**
@@ -42,7 +42,7 @@ Component({
this.setData({ list: data, selectList: new Array(data?.length).map(() => false), allChecked: false, })
},
onRefresh() {
loadingFunc(() => this.init())
loadingFunc(async () => await this.init())
},
onChange(e) {
const { id, index } = e.currentTarget.dataset;