张佳燕 7 달 전
부모
커밋
aa3929a944

+ 4 - 2
pages/home/home.js

@@ -220,15 +220,17 @@ Page({
      * 生命周期函数--监听页面加载
      */
     onLoad(options) {
-        console.log(options);
         let json = {};
         if (options.q) {
             var url = decodeURIComponent(options.q);
             json = GetQueryJson(url);
             if ('adminId' in json) {
                 console.log(111, json.adminId);
-                wx.setStorageSync('adminId', json.adminId)
                 let adminId = wx.getStorageSync('adminId')
+                if (adminId != json.adminId) {
+                    this.removeData()
+                }
+                wx.setStorageSync('adminId', json.adminId)
             }
         }
     },

+ 2 - 3
pages/login/index.js

@@ -30,7 +30,6 @@ Page({
         })
     },
     goLogin() {
-
         wx.login({
             success: res => {
                 wx.setStorageSync('wxCode', res.code)
@@ -49,7 +48,7 @@ Page({
             })
             return
         }
-        adminId=2
+        // adminId=2
         if (!adminId) {
             wx.showToast({
                 title: '请重新扫码进入',
@@ -85,7 +84,7 @@ Page({
                             }, 800)
                         }
                     })
-                }).catch(err=>{
+                }).catch(err => {
                     wx.hideLoading()
                 })
             }

+ 1 - 1
pages/meeting/detail/index.js

@@ -115,7 +115,7 @@ Page({
         let currentUrl = event.currentTarget.dataset.src
         wx.previewImage({
             current: currentUrl, // 当前显示图片的http链接
-            urls: [currentUrl] // 需要预览的图片http链接列表
+            urls: this.data.itemData.imgList // 需要预览的图片http链接列表
         })
     },
     /**

+ 2 - 2
pages/meeting/subscribe/index.js

@@ -168,7 +168,7 @@ Page({
                 isType=true
             }
         })
-        if(!isType){
+        if(!itemData.meetingTurnRecordId &&!isType){
             wx.showToast({
                 title: '当天会议室已经约满',
                 icon: 'none'
@@ -177,7 +177,7 @@ Page({
         }
         if (!form.appointmentStartTime || !form.appointmentEndTime) {
             wx.showToast({
-                title: '会议时间不能为空',
+                title: '点击绿色时间段选择会议时间',
                 icon: 'none'
             })
             return

+ 8 - 1
pages/meeting/transfer/index.js

@@ -12,11 +12,18 @@ Page({
         appletUsername: '',
         userMsg: {},
     },
+    preview(event) {
+        let currentUrl = event.currentTarget.dataset.src
+        wx.previewImage({
+            current: currentUrl, // 当前显示图片的http链接
+            urls: [currentUrl] // 需要预览的图片http链接列表
+        })
+    },
     getValue(e) {
         this.setData({
             appletUsername: e.detail.value
         });
-        if(e.detail.value){
+        if (e.detail.value) {
             this.turnUsername()
         }
     },

+ 1 - 1
pages/meeting/transfer/index.wxml

@@ -11,7 +11,7 @@
         </view>
         <view class="flex" wx:if="{{userMsg.avatar}}">
             <view class="tit">接收人照片</view>
-            <image src="{{userMsg.avatar}}" mode="" />
+            <image src="{{userMsg.avatar}}" mode="" bindtap="preview" data-src="{{userMsg.avatar}}"/>
         </view>
     </view>
 </view>

+ 6 - 4
pages/mine/index/index.js

@@ -79,10 +79,12 @@ Page({
     },
     preview(event) {
         let currentUrl = event.currentTarget.dataset.src
-        wx.previewImage({
-            current: currentUrl, // 当前显示图片的http链接
-            urls: [currentUrl] // 需要预览的图片http链接列表
-        })
+        if (currentUrl) {
+            wx.previewImage({
+                current: currentUrl, // 当前显示图片的http链接
+                urls: [currentUrl] // 需要预览的图片http链接列表
+            })
+        }
     },
     /**
      * 生命周期函数--监听页面加载

+ 4 - 4
utils/func/request.js

@@ -3,7 +3,7 @@ const dev_baseUrl = 'http://192.168.11.17:14001/ma-meeting'; //测试
 const pro_baseUrl = 'https://common.hz-hanghui.com:8087/ma-meeting'; //正式
 
 //是否是正式环境
-const wx_rlxf =true
+const wx_rlxf = true
 const baseUrl = wx_rlxf ? pro_baseUrl : dev_baseUrl;
 
 //https请求
@@ -16,22 +16,22 @@ const request = e => {
             method: e.method,
             header: {
                 'content-type': e.type,
-                'Authorization': userInfo?userInfo.token:null,
+                'Authorization': userInfo ? userInfo.token : null,
             },
             success: res => {
                 if (res.data.code == 200) {
                     resolve(res.data)
+                } else if (res.data.code == 401) {
+                    wx.removeStorageSync('userInfo')
                 } else {
                     wx.showToast({
                         icon: 'none',
                         title: res.data.msg,
                     })
-                    reject(res.data)
                 };
             },
             fail: error => {
                 wx.hideLoading()
-                reject(error.errMsg)
             }
         })
     })