| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- import Dialog from '../../miniprogram_npm/@vant/weapp/dialog/dialog'
- import { accountid, loginid, loginQuery, taAccount } from '../../services/utils';
- import { hideLoading, showLoading } from '../../utils/message/index';
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- // 功能菜单项
- menulists: [{id: 1, title: '我的库存', img: 'medal', path: '/mMine/pages/myinventorys/list/index'},
- {id: 2, title: "我的订单", img: 'invitation', path: '/mMine/pages/myorders/list/index'},
- {id: 3, title: '我的履约', img: 'underway', path: '/mMine/pages/myperformance/list/index'},
- {id: 4, title: '我的出境', img: 'hot', path: '/mHome/pages/inspection/list/index'},
- {id: 5, title: '我的保税', img: 'fire-o', path: '/mHome/pages/bond/list/index'}],
- // 列表菜单项
- tablelists: [{id: 1, title: '签约账户', iconfont: 'sign', path: '/mMine/pages/bank/index'},
- {id: 2, title: '收货地址', iconfont: 'location-o', path: '/mMine/pages/address/list/index'},
- {id: 3, title: '发票信息', iconfont: 'todo-list-o', path: '/mMine/pages/invoice/list/index'},
- {id: 4, title: '账户安全', iconfont: 'wap-nav', path: '/mMine/pages/modifypwd/index'},
- {id: 5, title: '关于我们', iconfont: 'info', path: '/mMine/pages/about/about/index'}],
- /// 微信头像
- avatarUrl: "",
- /// 微信昵称
- nickName: loginQuery().userInfo.customername,
- /// 资金账户信息
- ta: <GuangZuan.TaAccount>({}),
- /// 登录账号
- loginid: loginid(),
- /// 是否脱敏显示
- isOpenEye: false
- },
- onEye() {
- this.setData({
- isOpenEye: !this.data.isOpenEye
- })
- },
- /**
- * 按钮点击响应事件
- */
- onButtonPressed(e: any) {
- switch (e.target.id) {
- case 'into-gold': /// 充值
- wx.navigateTo({ url: '/mMine/pages/inoutgold/index' })
- break;
- case 'out-gold': /// 提现
- wx.navigateTo({ url: '/mMine/pages/inoutgold/index' })
- break;
- default:
- break;
- }
- },
- /**
- * 进入系统设置
- */
- goToSettings() {
- wx.navigateTo({
- url: '/mMine/pages/settings/settings'
- })
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad() {
- /// 获取微信头像
- let url = wx.getStorageSync('avatarUrl')
- if (url) {
- this.setData({ avatarUrl: url })
- }
- this.setData({
- /// 设置账户信息
- ta: taAccount(accountid())
- })
- },
- /**
- * 系统登出响应
- */
- onLoginOut() {
- Dialog.confirm({
- title: '提示',
- message: '确定要退出系统吗?',
- }).then(() => {
- /// 清楚所有的缓存数据
- wx.clearStorage()
- /// loding....
- showLoading(()=>{
- /// 登出
- setTimeout(function () {
- hideLoading(()=>{
- // on confirm
- wx.reLaunch({ url: '/pages/login/index' })
- }, '登出成功', 'success')
- }, 3000)
- }, '登出中....')
- }).catch(() => {
- // on cancel
- });
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady() {
-
- },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow() {
- this.getTabBar().init()
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide() {
- },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload() {
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh() {
- },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom() {
- },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage() {
- }
- })
|