forked from angelo/web-retail-h5
fix(success): 注册单不展示注册信息问题修复
This commit is contained in:
parent
cddf0dfc70
commit
9108eb14dd
|
@ -65,6 +65,7 @@ import { registeredAutoLogin } from '@/config/login.js'
|
||||||
import successDialog from '@/components/successDialog.vue'
|
import successDialog from '@/components/successDialog.vue'
|
||||||
import { setToken } from '@/config/auth.js'
|
import { setToken } from '@/config/auth.js'
|
||||||
import store from '@/store'
|
import store from '@/store'
|
||||||
|
import { REGIEST_AREA } from '@/util/specialAreaMap.js'
|
||||||
let paySetTimeoutFlag = null
|
let paySetTimeoutFlag = null
|
||||||
let getRegisterInfoTimeoutFlag = null
|
let getRegisterInfoTimeoutFlag = null
|
||||||
export default {
|
export default {
|
||||||
|
@ -134,7 +135,7 @@ export default {
|
||||||
if (res.data == 1) {
|
if (res.data == 1) {
|
||||||
this.payStatus = 1
|
this.payStatus = 1
|
||||||
clearTimeout(paySetTimeoutFlag)
|
clearTimeout(paySetTimeoutFlag)
|
||||||
if ([1, 7, 24].includes(Number(this.specialArea))) {
|
if ([REGIEST_AREA.id].includes(Number(this.specialArea))) {
|
||||||
uni.showLoading({
|
uni.showLoading({
|
||||||
title: '注册信息加载中...',
|
title: '注册信息加载中...',
|
||||||
mask: false,
|
mask: false,
|
||||||
|
|
Loading…
Reference in New Issue