electricity_bill_calc_wx/pages/workBench/components/recharge/index.js
2025-02-27 17:37:12 +08:00

34 lines
477 B
JavaScript

// pages/workBench/components/recharge/index.js
Component({
/**
* 组件的属性列表
*/
properties: {
},
/**
* 组件的初始数据
*/
data: {
active: 0,
segmentedList: ['待审核', '已审核', '充值'],
},
/**
* 组件的方法列表
*/
methods: {
changeQueryType(e) {
console.log("change", e)
const { type } = e.currentTarget.dataset;
this.setData({
active: type
})
},
}
})