Browse Source

取消预约

zhangshuling 4 years ago
parent
commit
fe78589c9f
6 changed files with 106 additions and 71 deletions
  1. 34 0
      pages/piano/piano.js
  2. 1 0
      pages/piano/piano.wxml
  3. 9 1
      pages/piano/piano.wxss
  4. 58 67
      pages/student/student.js
  5. 3 3
      pages/student/student.wxml
  6. 1 0
      utils/urls.js

+ 34 - 0
pages/piano/piano.js

@@ -111,6 +111,7 @@ Page({
         let list = rs.list
         list.map(o => {
           o.visitDate = o.visitDate.substring(0, 10)
+          o.cancelFlag = true // 是否可以取消
         })
         this.setData({
           'hasNextPage': rs.hasNextPage,
@@ -119,5 +120,38 @@ Page({
         })
       })
     }
+  },
+  doCancel: function (e) {
+    let id = e.currentTarget.dataset.id
+    let that = this
+    wx.showModal({
+      title: '确认信息',
+      content: '确定要取消本次预约?',
+      showCancel: true,
+      cancelText: "否",
+      confirmText: "是",
+      success: function (res) {
+        if (res.cancel) {
+        } else {
+          that.doRealCancel(id)
+        }
+      }
+    })
+  },
+  doRealCancel: function (id) {
+    const urls = urlDef.urls;
+    util.apiPost(urls.cancel_appointment + '?id=' + id).then(rs => {
+      if (rs.message) {
+        wx.showToast({ title: rs.message, icon: 'none' })
+        return
+      }
+      wx.showToast({ title: '取消成功', icon: 'success' })
+      this.setData({
+        list: [],
+        pageNum: 0,
+        loading: '加载中'
+      })
+      this.queryList()
+    })
   }
 })

+ 1 - 0
pages/piano/piano.wxml

@@ -14,6 +14,7 @@
       <view class="piano-date">
         {{item.createdDate}}
       </view>
+      <view class="class-btn" bindtap="doCancel" data-id="{{item.id}}" wx:if="{{item.cancelFlag}}">取消预约</view>
     </view>
   </view>
   <view class="getPiano" bindtap="getPiano">去预约</view>

+ 9 - 1
pages/piano/piano.wxss

@@ -137,4 +137,12 @@ page{
   left: 50%;
   margin-left: -150rpx;
   border-radius: 100rpx;
-}
+}
+.class-btn{
+  width: 178rpx;
+    border: 2rpx solid #cc6031;
+    color: #cc6031;
+    text-align: center;
+    font-size: 28rpx;
+    border-radius: 50rpx;
+}

+ 58 - 67
pages/student/student.js

@@ -40,6 +40,9 @@ Page({
         height: 200
       }],
     },
+    qrCodeImg: '',
+    sid: null,
+    oid: null,
   },
 
 
@@ -53,56 +56,64 @@ Page({
       success(res) {
         wx.showToast({
           title: '图片已保存到本地相册',
-          icon:'none'
+          icon: 'none'
         })
         that.setData({
           showShareImg: false
         })
         that.triggerEvent("callMethod")
-      },fail(res){
+      }, fail(res) {
         console.log(res)
         that.getSetting()
       }
     })
   },
 
-  getSetting:function(){
+  getSetting: function () {
     // 相册授权
     wx.getSetting({
-     success(res) {
-       // 进行授权检测,未授权则进行弹层授权
-       if (!res.authSetting["scope.writePhotosAlbum"]) {
-           wx.showModal({
-             title: '提示',
-             content: '您未授权相册使用权限,是否重新授权?',
-             success:function(res){
-               if(res.confirm){
-                 wx.openSetting({
-                   success(settingdata) {
-                     if (settingdata.authSetting["scope.writePhotosAlbum"]) {
-                       console.log("获取权限成功,再次点击图片保存到相册")
-                     } else {
-                       console.log("获取权限失败")
-                     }
-                   },fail(res){
-                     console.log(res)
-                   }
-                 })
-               }
-             }
-           })
-         } 
-       },
-       fail(res) {
-         console.log(res);
-       }
-     });
+      success(res) {
+        // 进行授权检测,未授权则进行弹层授权
+        if (!res.authSetting["scope.writePhotosAlbum"]) {
+          wx.showModal({
+            title: '提示',
+            content: '您未授权相册使用权限,是否重新授权?',
+            success: function (res) {
+              if (res.confirm) {
+                wx.openSetting({
+                  success(settingdata) {
+                    if (settingdata.authSetting["scope.writePhotosAlbum"]) {
+                      console.log("获取权限成功,再次点击图片保存到相册")
+                    } else {
+                      console.log("获取权限失败")
+                    }
+                  }, fail(res) {
+                    console.log(res)
+                  }
+                })
+              }
+            }
+          })
+        }
+      },
+      fail(res) {
+        console.log(res);
+      }
+    });
   },
 
   /**
    * 生命周期函数--监听页面加载
    */
   onLoad: function (options) {
+
+    if (options.sid && options.oid) {
+      this.setData({ sid: options.sid, oid: options.oid })
+    } else {
+      let stu = wx.getStorageSync('student');
+      this.setData({ sid: stu.studentId, oid: stu.orgId })
+    }
+
     wx.getSystemInfo({
       success: (result) => {
         this.setData({
@@ -118,13 +129,13 @@ Page({
     }, 1000);
   },
 
-  showCodeImg:function(){
+  showCodeImg: function () {
     this.setData({
       showCodeImg: true
     })
   },
 
-  closeImg:function(){
+  closeImg: function () {
     this.setData({
       showShareImg: false,
       showCodeImg: false
@@ -177,22 +188,28 @@ Page({
    * 用户点击右上角分享
    */
   onShareAppMessage: function () {
-
+    return {
+      title: '邀请有礼',
+      path: '/pages/student/student?sid=' + this.data.sid + '&oid=' + this.data.oid,
+      image: this.data.qrCodeImg
+    }
   },
   queryInvitation: function (methodName) {
     let urls = urlDef.urls
-    let stu = wx.getStorageSync('student');
     let inviteConfig = {}
-    util.apiPost(urls.get_activity_share + '&q.orgId=' + stu.orgId).then((rs) => {
+    util.apiPost(urls.get_activity_share + '&q.orgId=' + this.data.oid).then((rs) => {
       if (rs && rs.length > 0) {
         let r = rs[0];
         inviteConfig.title = (r.name ? r.name : '邀请有礼');
         inviteConfig.description = (r.remark ? r.remark : '邀请新学员,赢得奖励');
         inviteConfig.imageUrl = r.imgUrl;
         if (r.activityUrl && r.activityUrl.length > 0) {
-          inviteConfig.url = r.activityUrl + (r.activityUrl.indexOf('?') === -1 ? '?' : '&') + 'studentId=' + stu.studentId + '&orgId=' + stu.orgId;
+          inviteConfig.url = r.activityUrl + (r.activityUrl.indexOf('?') === -1 ? '?' : '&') + 'studentId=' + this.data.sid + '&orgId=' + this.data.oid;
         }
 
+        let qrCodeImg = urls.get_qr_code + '?content=' + encodeURIComponent(inviteConfig.url)
+        this.setData({ 'posterConfig.images[1].url': qrCodeImg })
+        this.setData({ qrCodeImg: qrCodeImg })
         this.setData({ inviteConfig: inviteConfig })
         if ('billShare' === methodName) {
           this.billShare();
@@ -208,20 +225,19 @@ Page({
   },
   doSearch: function () {
     let urls = urlDef.urls
-    let stu = wx.getStorageSync('student');
-    util.apiPost(urls.get_invitation_count + '&q.introducer=' + stu.studentId).then(rs => {
+    util.apiPost(urls.get_invitation_count + '&q.introducer=' + this.data.sid).then(rs => {
       if (rs) {
         this.setData({ count: rs.num })
       }
     });
 
-    util.apiPost(urls.get_invitation_enroll + '&q.introducer=' + stu.studentId).then(rs => {
+    util.apiPost(urls.get_invitation_enroll + '&q.introducer=' + this.data.sid).then(rs => {
       if (rs) {
         this.setData({ enroll: rs.num })
       }
     });
 
-    util.apiPost(urls.get_invitation_coin + '&q.introducer=' + stu.studentId).then(rs => {
+    util.apiPost(urls.get_invitation_coin + '&q.introducer=' + this.data.sid).then(rs => {
       if (rs && rs.length > 0) {
         let i = 0;
         let coin = ''
@@ -236,7 +252,7 @@ Page({
       }
     });
 
-    util.apiPost(urls.query_invitation_list + '&q.introducer=' + stu.studentId).then(rs => {
+    util.apiPost(urls.query_invitation_list + '&q.introducer=' + this.data.sid).then(rs => {
       if (rs) {
         rs.map(o => {
           o.name = o.studentName ? o.studentName : o.clientName
@@ -262,40 +278,15 @@ Page({
     }
   },
   billShare: function () {
-   
     if (this.data.inviteConfig.url && this.data.inviteConfig.url.length > 4) {
-      console.log('弹出海报分享页面')
       this.setData({
         showShareImg: true
       })
-      // this.modal = this.modalCtrl.create('BillSharePage', { item: this.inviteConfig });
-      // this.modal.present();
     } else {
       this.queryInvitation('billShare');
     }
   },
-  share: function () {
-    if (this.data.inviteConfig.url && this.data.inviteConfig.url.length > 4) {
-      // this.modal = this.modalCtrl.create('SharePage', { item: this.inviteConfig });
-      // this.modal.present();
-      console.log('弹出享页面')
-    } else {
-      this.queryInvitation('share');
-    }
-  },
   codeInvite: function () {
-    let urls = urlDef.urls
-    if (this.data.inviteConfig.url && this.data.inviteConfig.url.length > 4) {
-      let regUrl = this.data.inviteConfig.url;
-      let imgUrl = urls.get_qr_code + '?content=' + encodeURIComponent(regUrl);
-      this.openModal(imgUrl);
-    } else {
-      this.queryInvitation('codeInvite');
-    }
-  },
-  openModal: function (imgUrl) {
-    // 弹出页面
-    console.log('...' + imgUrl)
     this.setData({
       showCodeImg: true
     })

+ 3 - 3
pages/student/student.wxml

@@ -6,16 +6,16 @@
   <!-- 海报 -->
   <view class="shareImg-view" wx:if="{{showShareImg}}">
     <image src="{{shareImg}}"></image>
-    <image class="code-img" src=""></image>
+    <image class="code-img" src="{{qrCodeImg}}"></image>
     <view class="shareImg-btn">
       <!-- <button open-type='share' class="edit-view shareBtn">
         <image src="https://app.schoolwisdoms.com/static/app/student/imgs/wechat.png"></image>
         <view>分享好友</view>
       </button> -->
       <view class="downloadBtn edit-view">
-        <image src="https://app.schoolwisdoms.com/static/app/student/imgs/download-to-images.png"></image>
         <view>
           <poster id="poster" config="{{posterConfig}}" bind:success="onPosterSuccess">
+            <image src="https://app.schoolwisdoms.com/static/app/student/imgs/download-to-images.png"></image>
             <view class="save-image">保存图片</view>
           </poster>
         </view>
@@ -25,7 +25,7 @@
   <!-- end -->
   <!-- 二维码 -->
   <view class="shareCodeImg-view" wx:if="{{showCodeImg}}">
-    <image src="https://app.schoolwisdoms.com/static/app/student/imgs/share-bill.png"></image>
+    <image src="{{qrCodeImg}}"></image>
     <view>邀请好友微信扫一扫</view>
   </view>
   <!-- end -->

+ 1 - 0
utils/urls.js

@@ -162,4 +162,5 @@ export const urls = {
   do_appointment: schoolBase + '/student/appointment',
   do_appointment_check: schoolBase + '/student/checkCard',
   query_appointment_list: crudListBase + '?statement=ExercisePlanMapper.queryReserve',
+  cancel_appointment: schoolBase + '/timetable/updateExercisePlanStatus',
 };