jump.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <view class="jump-container">
  3. <view v-if="viewType === 'verification'">
  4. <JHeader tabbar="/pages/tabbar/user/index" width="50" height="50" title="订单核销"></JHeader>
  5. <view v-if="orderInfo && orderInfo.orderId" style="margin-top: 40upx;">
  6. <OrderInfo :data="orderInfo"></OrderInfo>
  7. </view>
  8. <view style="margin-top: 50upx;">
  9. <tui-input v-model="code" label="核销码" placeholder="请输入核销码" disabled></tui-input>
  10. </view>
  11. <view>
  12. <tui-button
  13. margin="20upx 0 0 auto" type="green" width="260rpx" shape="circle"
  14. @click="handleVerification()"
  15. >
  16. 确认核销
  17. </tui-button>
  18. </view>
  19. </view>
  20. <view v-else>
  21. <tui-skeleton :preload-data="preloadData" style="z-index: 888;"></tui-skeleton>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. import { J_STORAGE_KEY, J_NEW_BIND_TYPE, J_NEW_BIND_CODE, J_NEW_BIND_ID } from '../../config/constant'
  27. import { getOrderDetailApi, updateSetHxCodeApi, bindPlatformInfoCodeApi } from '../../api/user'
  28. import { getUserToken } from '../../utils'
  29. export default {
  30. name: 'Jump',
  31. components: {},
  32. props: {},
  33. data() {
  34. return {
  35. data: [],
  36. preloadData: [
  37. {
  38. 'id': '',
  39. 'dataset': {},
  40. 'left': 164.84375,
  41. 'right': 365,
  42. 'top': 20,
  43. 'bottom': 220,
  44. 'width': 200.15625,
  45. 'height': 19,
  46. 'skeletonType': 'rect'
  47. }, {
  48. 'id': '',
  49. 'dataset': {},
  50. 'left': 0,
  51. 'right': 375,
  52. 'top': 70,
  53. 'bottom': 187,
  54. 'width': 375,
  55. 'height': 187,
  56. 'skeletonType': 'fillet'
  57. }
  58. ],
  59. type: '',
  60. code: '',
  61. otherSideUserId: '',
  62. userToken: '',
  63. userInfo: {},
  64. // 视图显示
  65. viewType: '',
  66. // verification的情况
  67. orderId: '',
  68. orderInfo: {}
  69. }
  70. },
  71. /**
  72. * 生命周期函数--监听页面加载
  73. */
  74. onLoad(options) {
  75. if (options.type) uni.setStorageSync(J_NEW_BIND_TYPE, options.type) || uni.setStorageSync(J_NEW_BIND_CODE, options.code || '') || uni.setStorageSync(J_NEW_BIND_ID, options.userId || '') // 有绑定id就进行存储,以防下面没登录跳到登录页
  76. this.userToken = getUserToken() || ''
  77. if (this.userToken && !options.type && uni.getStorageSync(J_NEW_BIND_TYPE)) { // 如果原先有绑定id,例如注册/重新登陆了然后跳回来(options没携带绑定id),则是存储里的绑定id
  78. this.userInfo = uni.getStorageSync(J_STORAGE_KEY)
  79. this.type = uni.getStorageSync(J_NEW_BIND_TYPE) || ''
  80. this.code = uni.getStorageSync(J_NEW_BIND_CODE) || ''
  81. this.otherSideUserId = uni.getStorageSync(J_NEW_BIND_ID) || ''
  82. this.handleBusiness(true)
  83. } else if (this.userToken && options.type) { // 请求路径上面直接有绑定id参数
  84. this.userInfo = uni.getStorageSync(J_STORAGE_KEY)
  85. this.type = options.type || ''
  86. this.code = options.code || ''
  87. this.otherSideUserId = options.userId || ''
  88. this.handleBusiness(false)
  89. }
  90. },
  91. /**
  92. * 生命周期函数--监听页面初次渲染完成
  93. */
  94. onReady() { },
  95. /**
  96. * 生命周期函数--监听页面显示
  97. */
  98. onShow() {
  99. },
  100. /**
  101. * 生命周期函数--监听页面隐藏
  102. */
  103. onHide() { },
  104. /**
  105. * 生命周期函数--监听页面卸载
  106. */
  107. onUnload() { },
  108. /**
  109. * 页面相关事件处理函数--监听用户下拉动作
  110. */
  111. onPullDownRefresh() { },
  112. /**
  113. * 页面上拉触底事件的处理函数
  114. */
  115. onReachBottom() { },
  116. /**
  117. * 用户点击右上角分享
  118. */
  119. onShareAppMessage() { },
  120. methods: {
  121. // 业务逻辑
  122. async handleBusiness(isFromLogin) {
  123. console.log(isFromLogin)
  124. uni.removeStorageSync(J_NEW_BIND_TYPE)
  125. uni.removeStorageSync(J_NEW_BIND_CODE)
  126. uni.removeStorageSync(J_NEW_BIND_ID)
  127. if (this.type === 'nothing') {
  128. this.$switchTab('/pages/store/store')
  129. } else if (this.type === 'verification') {
  130. this.orderId = this.code.split('-')[0]
  131. this.code = this.code.split('-')[1]
  132. await getOrderDetailApi({
  133. orderId: this.orderId,
  134. noticeId: 0
  135. }).then(({ data }) => {
  136. this.orderInfo = data
  137. })
  138. return this.viewType = 'verification'
  139. } else if (this.type === 'invitation') {
  140. setTimeout(() => { this.$switchTab('/pages/tabbar/user/index') }, 1000)
  141. } else if (this.type === 'bindingBranchOffice' || this.type === 'bindingStore' || this.type === 'bindingPlanner') {
  142. bindPlatformInfoCodeApi({ parentId: this.code })
  143. .then((res) => {
  144. this.$showToast('绑定成功', 'success')
  145. })
  146. .finally((e) => {
  147. setTimeout(() => { this.$switchTab('/pages/tabbar/user/index') }, 2000)
  148. })
  149. }
  150. // else if (this.type === 'bindingPlanner') {
  151. // // http://localhost:8989/#/pages/jump/jump?userId=277&type=bindingPlanner&code=JFFPLXER
  152. // if (this.userInfo.roleIds === 10) {
  153. // uni.redirectTo({
  154. // url: `/user/xxx?code=${this.code}`
  155. // })
  156. // } else if (this.userInfo.roleIds === 7 || this.userInfo.roleIds === 6) {
  157. // bindUserSaoMaApi({ marketingId: this.otherSideUserId, userId: this.userId })
  158. // .then((res) => {
  159. // this.$showToast('绑定策划师成功', 'success')
  160. // })
  161. // .finally((e) => {
  162. // setTimeout(() => { this.$switchTab('/pages/user/user') }, 2000)
  163. // })
  164. // }
  165. // } else if (this.type === 'bindingStore') {
  166. // if (this.userInfo.roleIds === 10) {
  167. // bindSaoMaBrandApi({ marketingId: this.otherSideUserId, userId: this.userId })
  168. // .then((res) => {
  169. // this.$showToast('绑定商户成功', 'success')
  170. // this.$switchTab('/pages/user/user')
  171. // })
  172. // .finally((e) => {
  173. // setTimeout(() => { this.$switchTab('/pages/user/user') }, 2000)
  174. // })
  175. // }
  176. // }
  177. },
  178. handleVerification() {
  179. updateSetHxCodeApi({ orderId: this.orderId, noticeId: 0 })
  180. .then((res) => {
  181. this.$showToast('核销成功', 'success')
  182. })
  183. .finally((e) => {
  184. setTimeout(() => { this.$switchTab('/pages/tabbar/user/index') }, 2000)
  185. })
  186. }
  187. }
  188. }
  189. </script>
  190. <style lang="less" scoped>
  191. .jump-container {
  192. min-height: 100vh;
  193. padding: 46upx;
  194. box-sizing: border-box;
  195. }
  196. </style>