123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- <template>
- <view class="jump-container">
- <view v-if="viewType === 'verification'">
- <JHeader tabbar="/" width="50" height="50" title="订单核销"></JHeader>
- <view v-if="orderInfo && orderInfo.orderId" style="margin-top: 40upx;">
- <ATFOrderInfo :data="orderInfo"></ATFOrderInfo>
- </view>
- <view style="margin-top: 50upx;">
- <tui-input v-model="code" label="核销码" placeholder="请输入核销码" disabled></tui-input>
- </view>
- <view>
- <tui-button
- margin="20upx 0 0 auto" type="green" width="260rpx" shape="circle"
- @click="handleVerification()"
- >
- 确认核销
- </tui-button>
- </view>
- </view>
- <view v-else>
- <tui-skeleton :preload-data="preloadData" style="z-index: 888;"></tui-skeleton>
- </view>
- </view>
- </template>
- <script>
- import { T_STORAGE_KEY, T_NEW_BIND_TYPE, T_NEW_BIND_CODE, T_NEW_BIND_ID } from '../../constant'
- import { ANOTHER_TF_SETTLE } from '../../config'
- // import { checkBindApi, bindLastUserApi, bindServiceUserBindingApi, bindPartnerInviteApi, bindPartnerGroupApi, bindchangeActivityUserApi } from '../../api/xxx'
- import { bindDistributorSalesCustomerApi, getOrderDetailApi, updateSetHxCodeApi, bindPlatformRelationshipCodeApi, bindPlatformRelationshipShopApi, bindPlatformInfoCodeBindingApi } from '../../api/anotherTFInterface'
- import { getStorageKeyToken, jumpToOtherProject } from '../../utils'
- import { Encrypt } from '../../utils/secret'
- export default {
- name: 'Jump',
- components: {},
- props: {},
- data() {
- return {
- data: [],
- preloadData: [
- {
- 'id': '',
- 'dataset': {},
- 'left': 164.84375,
- 'right': 365,
- 'top': 20,
- 'bottom': 220,
- 'width': 200.15625,
- 'height': 19,
- 'skeletonType': 'rect'
- }, {
- 'id': '',
- 'dataset': {},
- 'left': 0,
- 'right': 375,
- 'top': 70,
- 'bottom': 187,
- 'width': 375,
- 'height': 187,
- 'skeletonType': 'fillet'
- }
- ],
- type: '',
- code: '',
- otherSideUserId: '',
- userId: '',
- userInfo: {},
- // 视图显示
- viewType: '',
- // verification的情况
- orderId: '',
- orderInfo: {}
- }
- },
- /**
- * 生命周期函数--监听页面加载
- */
- // eslint-disable-next-line complexity
- onLoad(options) {
- if (options.type) uni.setStorageSync(T_NEW_BIND_TYPE, options.type) || uni.setStorageSync(T_NEW_BIND_CODE, options.code || '') || uni.setStorageSync(T_NEW_BIND_ID, options.userId || '') // 有绑定id就进行存储,以防下面没登录跳到登录页
- if (!getStorageKeyToken()) return
- this.userInfo = uni.getStorageSync(T_STORAGE_KEY) || {}
- this.userId = this.userInfo.buyerUserId || ''
- if (this.userId && !options.type && uni.getStorageSync(T_NEW_BIND_TYPE)) { // 如果原先有绑定id,例如注册/重新登陆了然后跳回来(options没携带绑定id),则是存储里的绑定id
- this.type = uni.getStorageSync(T_NEW_BIND_TYPE) || ''
- this.code = uni.getStorageSync(T_NEW_BIND_CODE) || ''
- this.otherSideUserId = uni.getStorageSync(T_NEW_BIND_ID) || ''
- this.handleBusiness(true)
- } else if (this.userId && options.type) { // 请求路径上面直接有绑定id参数
- this.type = options.type || ''
- this.code = options.code || ''
- this.otherSideUserId = options.userId || ''
- this.handleBusiness(false)
- }
- },
- /**
- * 生命周期函数--监听页面初次渲染完成
- */
- onReady() { },
- /**
- * 生命周期函数--监听页面显示
- */
- onShow() {
- },
- /**
- * 生命周期函数--监听页面隐藏
- */
- onHide() { },
- /**
- * 生命周期函数--监听页面卸载
- */
- onUnload() { },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh() { },
- /**
- * 页面上拉触底事件的处理函数
- */
- onReachBottom() { },
- /**
- * 用户点击右上角分享
- */
- onShareAppMessage() { },
- methods: {
- // 业务逻辑
- async handleBusiness(isFromLogin) {
- console.log(isFromLogin)
- uni.removeStorageSync(T_NEW_BIND_TYPE)
- uni.removeStorageSync(T_NEW_BIND_CODE)
- uni.removeStorageSync(T_NEW_BIND_ID)
- if (this.type === 'nothing') {
- this.$switchTab('/')
- } else if (this.type === 'bindingSalesCustomer') { // 绑定分销关系,salesId分销员ID
- const shareType = Number(this.code.split('~')[0])
- const shopId = this.code.split('~')[1]
- const productId = this.code.split('~')[2]
- const skuId = this.code.split('~')[3]
- const salesId = this.code.split('~')[4]
- bindDistributorSalesCustomerApi({ shopId, distributorId: salesId })
- .then((res) => {
- this.$showToast('绑定成功', 'success')
- setTimeout(() => {
- if (shareType === 1) {
- uni.redirectTo({ url: `/another-tf/another-user/shop/shop-detail?storeId=${shopId}` })
- } else if (shareType === 2) {
- uni.redirectTo({ url: `/another-tf/another-serve/goodsDetails/index?shopId=${shopId}&productId=${productId}&skuId=${skuId}` })
- }
- }, 2000)
- })
- .catch((e) => {
- setTimeout(() => { this.$switchTab('/') }, 2000)
- })
- } else if (this.type === 'verification') {
- this.orderId = this.code.split('~')[0]
- console.log(this.code.split('~')[1])
- this.viewType = 'verification'
- getOrderDetailApi({
- orderId: this.orderId,
- noticeId: 0
- }).then(({ data }) => {
- this.orderInfo = data
- })
- } else if (this.type === 'invitation') {
- setTimeout(() => { this.$switchTab('/') }, 1000)
- } else if (this.type === 'toAnotherTFSettle') {
- const storageKeyToken = getStorageKeyToken()
- if (storageKeyToken) {
- setTimeout(() => {
- jumpToOtherProject(`${ANOTHER_TF_SETTLE}/#/?username=${this.userInfo.nickName}&user=${Encrypt(storageKeyToken)}`)
- }, 300)
- }
- } else if (this.type === 'bindingUser') {
- bindPlatformRelationshipCodeApi({ code: this.code })
- .then((res) => { this.$showToast('绑定成功', 'success') })
- .finally((e) => { setTimeout(() => { this.$switchTab('/') }, 2000) })
- } else if (this.type === 'bindingFranchisee') {
- bindPlatformRelationshipShopApi({ code: this.code })
- .then((res) => { this.$showToast('绑定成功', 'success') })
- .finally((e) => { setTimeout(() => { this.$switchTab('/') }, 2000) })
- } else if (this.type === 'bindingShop') {
- bindPlatformInfoCodeBindingApi({ phone: this.code, type: 1 })
- .then((res) => { this.$showToast('绑定成功', 'success') })
- .finally((e) => { setTimeout(() => { this.$switchTab('/') }, 2000) })
- } else if (this.type === 'bindingTeamMembers') { // 这里指团长和合伙人,其它还有会员、股东
- const storageKeyToken = getStorageKeyToken()
- if (storageKeyToken) {
- setTimeout(() => {
- jumpToOtherProject(`${ANOTHER_TF_SETTLE}/#/?username=${this.userInfo.nickName}&user=${Encrypt(storageKeyToken)}&code=${this.code}`)
- }, 300)
- }
- } else if (this.type === 'bindLastUser') { // 旧系统
- checkBindApi({ userId: this.userId })
- .then(() => {
- this.$showToast('已存在上级绑定')
- setTimeout(() => { this.$switchTab('/') }, 2000)
- })
- .catch(() => {
- uni.hideToast()
- bindLastUserApi({ userId: this.userId, userCode: this.code })
- .then((res) => { this.$showToast('绑定成功', 'success') })
- .finally((e) => { setTimeout(() => { this.$switchTab('/') }, 2000) })
- })
- } else if (this.type === 'bindCommunityService') { // 旧系统
- const serverTypeId = this.code.split('~')[0]
- const title = this.code.split('~')[1]
- const serverUrl = this.code.split('~')[2]
- bindServiceUserBindingApi({ bindingUserId: this.userId, shareUserId: this.otherSideUserId })
- .then((res) => { this.$showToast('成功参与服务分享!', 'success') })
- .finally((e) => { setTimeout(() => { uni.redirectTo({ url: `/community-center/community-detail?id=${serverTypeId}&serverNameThree=${title}&serverImageUrl=${serverUrl}` }) }, 2000) })
- } else if (this.type === 'bindPartnerInvite') { // 旧系统 // 师傅邀请码,用户绑定师傅
- bindPartnerInviteApi({ userId: this.userId, partnerCode: this.code })
- .then((data) => {
- if (data.ok) {
- this.$showToast('扫码成功', 'success')
- } else {
- this.$showToast(data.msg || '扫码失败', 'error')
- }
- })
- .catch((e) => { this.$showToast('操作失败,请重试', 'error') })
- .finally((e) => {
- setTimeout(() => {
- getApp().globalData.isShowFollowOfficialAccount = true
- uni.setStorageSync(xxx, this.code)
- this.$switchTab('/')
- }, 2000)
- })
- } else if (this.type === 'bindPartnerGroup') { // 旧系统 // 团长码,用户绑定团长
- bindPartnerGroupApi({ userId: this.userId, partnerCode: this.code })
- .then((data) => {
- if (data.ok) {
- this.$showToast('操作成功', 'success')
- } else {
- this.$showToast('操作失败,请重试', 'error')
- }
- })
- .catch((e) => { this.$showToast('操作失败,请重试', 'error') })
- .finally((e) => { setTimeout(() => { this.$switchTab('/') }, 2000) })
- } else if (this.type === 'bindActivityUser') { // 旧系统 // 活动码,399活动绑定
- const campaignsType = this.code.split('-')[0] * 1
- const bindActivityId = this.code.split('-')[1]
- bindchangeActivityUserApi({ userId: this.userId, userCode: bindActivityId, type: campaignsType })
- .then((res) => { this.$showToast('绑定成功', 'success') })
- .finally((e) => { setTimeout(() => { uni.redirectTo({ url: '/user/sever/activityCenter/index' }) }, 2000) })
- }
- },
- handleVerification() {
- updateSetHxCodeApi({ orderId: this.orderId, noticeId: 0 })
- .then((res) => { this.$showToast('核销成功', 'success') })
- .finally((e) => { setTimeout(() => { this.$switchTab('/') }, 2000) })
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .jump-container {
- min-height: 100vh;
- padding: 46upx;
- box-sizing: border-box;
- }
- </style>
|