| 12345678910111213141516171819202122232425262728 |
- import { getCategoryList } from '../../services/good/fetchCategoryList';
- Page({
- data: {
- list: [],
- },
- async init() {
- try {
- const result = await getCategoryList();
- this.setData({
- list: result,
- });
- } catch (error) {
- console.error('err:', error);
- }
- },
- onShow() {
- this.getTabBar().init();
- },
- onChange() {
- wx.navigateTo({
- url: '/pages/goods/list/index',
- });
- },
- onLoad() {
- this.init(true);
- },
- });
|