29 lines
484 B
JavaScript
29 lines
484 B
JavaScript
|
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);
|
||
|
},
|
||
|
});
|