Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cust-app
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李伟
cust-app
Commits
02b56c5e
Commit
02b56c5e
authored
Apr 29, 2025
by
liwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改了bug
parent
ad2cb64c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
27 deletions
+19
-27
index.vue
pages/tab/index.vue
+8
-14
activityDetail.vue
pagesActivity/activityDetail.vue
+3
-0
articleDetail.vue
pagesArticle/articleDetail.vue
+7
-13
recharge.vue
pagesme/goldCoin/recharge.vue
+1
-0
No files found.
pages/tab/index.vue
View file @
02b56c5e
...
...
@@ -214,15 +214,6 @@
});
},
500
)
}
else
{
// 判断是否已实名 this.realAuthFlag=1需要判断是否已实名 否则不校验
if
(
this
.
realAuthFlag
===
'1'
){
if
(
uni
.
getStorageSync
(
'userInfo'
).
memRealAuthen
!==
'1'
){
this
.
tipMsg
=
message
.
authenticationMsg
;
this
.
isConfirm
=
true
;
this
.
$refs
.
elm
.
showDialog
();
return
}
}
isStopAccount
().
then
(
res
=>
{
//如果flag=0 被禁用了 踢出该用户
if
(
res
.
data
.
data
==
'0'
)
{
...
...
@@ -232,11 +223,14 @@
url
:
"/pageslogin/index"
})
}
else
{
if
(
uni
.
getStorageSync
(
'userInfo'
).
memRealAuthen
!=
'1'
){
this
.
tipMsg
=
message
.
authenticationMsg
;
this
.
isConfirm
=
true
;
this
.
$refs
.
elm
.
showDialog
();
return
;
// 判断是否已实名 this.realAuthFlag=1需要判断是否已实名 否则不校验
if
(
this
.
realAuthFlag
===
'1'
){
if
(
uni
.
getStorageSync
(
'userInfo'
).
memRealAuthen
!==
'1'
){
this
.
tipMsg
=
message
.
authenticationMsg
;
this
.
isConfirm
=
true
;
this
.
$refs
.
elm
.
showDialog
();
return
}
}
uni
.
navigateTo
({
url
:
'/pagesUser/userInfo?memberId='
+
item
.
businessId
...
...
pagesActivity/activityDetail.vue
View file @
02b56c5e
...
...
@@ -68,6 +68,7 @@ import {activityDetail, addApplication, isApplication, pay} from "../api/activit
import
ELM
from
'@/components/elm-toast/index.vue'
;
import
{
message
}
from
"../common/message"
;
import
"./css/detail.css"
import
{
getDict
}
from
"../api/system/dict/data"
;
export
default
{
components
:
{
ELM
...
...
@@ -94,6 +95,7 @@ export default {
onShow
()
{
this
.
getActivityDetail
()
this
.
getUserInfo
()
this
.
getRealAuthDict
()
},
methods
:
{
//获取实名字典配置
...
...
@@ -131,6 +133,7 @@ export default {
//校验token 如果没有token,跳到登录页进行登录
if
(
token
&&
token
!==
''
&&
token
!=
null
){
// 判断是否已实名 this.realAuthFlag=1需要判断是否已实名 否则不校验
console
.
log
(
'this.realAuthFlag'
,
this
.
realAuthFlag
)
if
(
this
.
realAuthFlag
===
'1'
){
if
(
uni
.
getStorageSync
(
'userInfo'
).
memRealAuthen
!==
'1'
){
this
.
tipMsg
=
message
.
authenticationMsg
;
...
...
pagesArticle/articleDetail.vue
View file @
02b56c5e
...
...
@@ -277,14 +277,6 @@ export default{
if
(
token
&&
token
!==
''
&&
token
!=
null
){
//已登录
// 判断是否已实名 this.realAuthFlag=1需要判断是否已实名 否则不校验
if
(
this
.
realAuthFlag
===
'1'
){
if
(
uni
.
getStorageSync
(
'userInfo'
).
memRealAuthen
!==
'1'
){
this
.
tipMsg
=
message
.
authenticationMsg
;
this
.
isConfirm
=
true
;
this
.
$refs
.
elm
.
showDialog
();
return
}
}
isStopAccount
().
then
(
res
=>
{
//如果flag=0 被禁用了 踢出该用户
if
(
res
.
data
.
data
==
'0'
)
{
...
...
@@ -294,11 +286,13 @@ export default{
url
:
"/pageslogin/index"
})
}
else
{
if
(
uni
.
getStorageSync
(
'userInfo'
).
memRealAuthen
!=
'1'
){
this
.
tipMsg
=
message
.
authenticationMsg
;
this
.
isConfirm
=
true
;
this
.
$refs
.
elm
.
showDialog
();
return
if
(
this
.
realAuthFlag
===
'1'
){
if
(
uni
.
getStorageSync
(
'userInfo'
).
memRealAuthen
!==
'1'
){
this
.
tipMsg
=
message
.
authenticationMsg
;
this
.
isConfirm
=
true
;
this
.
$refs
.
elm
.
showDialog
();
return
}
}
this
.
commentValue
=
''
const
params
=
{
...
...
pagesme/goldCoin/recharge.vue
View file @
02b56c5e
...
...
@@ -66,6 +66,7 @@ import {getBalance, payGoldCoins} from "../../api/user";
import
{
addApplication
,
pay
}
from
"../../api/activity"
;
import
ELM
from
'@/components/elm-toast/index.vue'
;
import
{
message
}
from
"../../common/message"
;
import
{
getDict
}
from
"../../api/system/dict/data"
;
let
iapChannel
=
null
// 苹果内部支付渠道
export
default
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment