12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- Page({
-
- data: {
- nav: [
- {
- icon: '',
- name: '产品发布',
- path: 'businessGoodsEdit'
- },
- {
- icon: '',
- name: '产品管理',
- path: 'businessGoodsManage'
- },
- {
- icon: '',
- name: '视频管理',
- path: 'businessVideoManage'
- },
- {
- icon: '',
- name: '互动消息',
- path: 'businessLeavingAMessage'
- }
- ]
- },
-
- onLoad(options) {
- },
-
- onReady() {
- },
-
- onShow() {
- },
-
- onHide() {
- },
-
- onUnload() {
- },
-
- onPullDownRefresh() {
- },
-
- onReachBottom() {
- },
-
- onShareAppMessage() {
- },
- handleNav(e) {
- const { item } = e.currentTarget.dataset
- const path = item.path
- wx.navigateTo({
- url: `/pages/${path}/${path}`
- })
- }
- })
|