添加基础资料下的页面功能

This commit is contained in:
zhengw
2026-03-06 17:18:27 +08:00
parent 816188c2bb
commit aa1294f997
47 changed files with 1697 additions and 5 deletions

View File

@@ -74,7 +74,19 @@ Page({
});
});
},
onOrderEdit(e: any) {
const data = getDataSet(e);
const index = data.index;
wx.navigateTo({
url: '/pages/base/account/edit/edit',
success: (res) => {
res.eventChannel.emit('accountEdit', {
data: index == -1 ? {} : this.data.list[index],
});
},
});
},
onDefault(e: any) {
const data = getDataSet(e);
const index = data.index;