| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- // pages/mine/mine.ts
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- // 功能菜单项
- menulists: [{id: 1, title: '我的库存', img: 'medal', path: "/mMine/pages/myinventorys/myinventorys"},
- {id: 2, title: "我的订单", img: 'invitation', path: "/mMine/pages/myorders/myorders"},
- {id: 3, title: '我的履约', img: 'underway', path: "/mMine/pages/myperformance/myperformance"},
- {id: 4, title: '我的出境', img: 'hot', path: "/mHome/pages/inspection/inspection"},
- {id: 5, title: '我的保税', img: 'fire-o', path: "/mHome/pages/bond/bond"}],
- // 列表菜单项
- tablelists: [{id: 1, title: '签约账户', path: "/mMine/pages/bank/bankh"},
- {id: 2, title: '收货地址', path: ""},
- {id: 3, title: '发票信息', path: ""},
- {id: 4, title: '账户安全', path: ""},
- {id: 5, title: '关于我们', path: ""}],
- /// 微信头像
- avatarUrl: "",
- /// 微信昵称
- nickName: ""
- },
- /**
- * 进入系统设置
- */
- goToSettings() {
- wx.navigateTo({
- url: '/mMine/pages/settings/settings'
- })
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad() {
- /// 获取微信头像
- let url = wx.getStorageSync('avatarUrl')
- if (url) {
- this.setData({
- avatarUrl: url
- })
- }
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady() {
-
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow() {
- this.getTabBar().init()
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide() {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload() {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh() {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom() {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage() {
- }
- })
|