lll
liukangdong
2024-08-01 3508c76f824c6632b47aff17b1ec2f2a11c504fc
lll
已添加1个文件
已修改4个文件
55 ■■■■■ 文件已修改
wechat_jiaxuan/app.js 32 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
wechat_jiaxuan/pages/index/index.js 19 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
wechat_staff/pages/login/index.wxml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
wechat_staff/pages/sets/index.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
wechat_staff/static/icon/logo.png 补丁 | 查看 | 原始文档 | blame | 历史
wechat_jiaxuan/app.js
@@ -4,14 +4,10 @@
} from './api/index'
import CustomHook from 'spa-custom-hooks';
let globalData = {
  token: '',
  token: wx.getStorageSync('token'),
  primary: '#B08771',
  bottomLift: ''
}
App({
  globalData,
  onLaunch: function (op) {
    console.log('options', op.query)
    let pathMap = [
      '/pages/detailDis/product',
      '/pages/detailDis/case',
@@ -19,6 +15,10 @@
      '/pages/consult/detail',
      '/pages/productVideo/index',
    ]
App({
  globalData,
  onLaunch: function (op) {
    console.log('options', op.query)
    //获取当前设备信息
    const WindowInfo = wx.getWindowInfo()
    if (WindowInfo.safeArea.top > 20) {
@@ -85,12 +85,12 @@
            }
          })
        } else {
          if (op.query.scene) {
            let temp = op.query.scene.split('_')
            wx.navigateTo({
              url: `${pathMap[temp[1]]}?id=${temp[0]}&userId=${temp[2]}`,
            })
          }
          // if (op.query.scene) {
          //   let temp = op.query.scene.split('_')
          //   wx.navigateTo({
          //     url: `${pathMap[temp[1]]}?id=${temp[0]}&userId=${temp[2]}`,
          //   })
          // }
        }
      })
    } else {
@@ -136,7 +136,15 @@
    }
  },
  onShow(options) {
    console.log('options', options);
    const token = wx.getStorageSync('token') || ''
    if(token){
      if (options.query.scene) {
        let temp = options.query.scene.split('_')
        wx.navigateTo({
          url: `${pathMap[temp[1]]}?id=${temp[0]}&userId=${temp[2]}`,
        })
      }
    }
  }
})
CustomHook.install({
wechat_jiaxuan/pages/index/index.js
@@ -52,14 +52,9 @@
    this.initData()
  },
  onShow() {
    let that = this
    setTimeout(() => {
      getMemberInfo().then(res => {
        this.setData({
          member: res.data
        })
      })
    }, 500)
    const member = wx.getStorageSync('member')
    this.setData({ member })
    eventBus.once("reloadHome", () => {
      console.log('reloadHome');
      this.onLoad()
@@ -72,6 +67,7 @@
  },
  changePath(e) {
    let index = e.currentTarget.dataset.type
    const member = this.data.member
    let that = this
    switch (index) {
      case '0':
@@ -92,9 +88,16 @@
        })
        break;
      case '2':
        if(member && member.phone){
        wx.navigateTo({
          url: '/pages/design/design'
        })
        }else{
          wx.navigateTo({
            url: '/pages/auth/auth',
          })
        }
        // wx.navigateTo({
        //   url: '/pages/wonderful_activity/index',
        //   success: function(res) {
wechat_staff/pages/login/index.wxml
@@ -1,5 +1,5 @@
<view class="container">
  <image class="avatar" src=""></image>
  <image class="avatar" src="../../static/icon/logo.png"></image>
  <view class="home_title">志邦优家</view>
  <view class="placeholder9">最懂你的营销助手</view>
  <!--  -->
wechat_staff/pages/sets/index.js
@@ -29,7 +29,7 @@
            wx.clearStorageSync()
            setTimeout(() => {
              wx.setStorageSync('sessionKey', sessionKey)
              wx.navigateTo({
              wx.redirectTo({
                url: '/pages/login/index',
              })
            }, 300)
wechat_staff/static/icon/logo.png