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
1927b2c7
Commit
1927b2c7
authored
Mar 03, 2025
by
liwei
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
b4ff2163
3074d00d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
6 deletions
+19
-6
userInfo.vue
pagesUser/userInfo.vue
+5
-3
info.vue
pagesme/message/info.vue
+14
-3
No files found.
pagesUser/userInfo.vue
View file @
1927b2c7
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
<view
class=
"te"
>
{{
userData
.
memCollege
?
userData
.
memCollege
:
''
}}
</view>
<view
class=
"te"
>
{{
userData
.
memCollege
?
userData
.
memCollege
:
''
}}
</view>
<view
class=
"xian"
></view>
<view
class=
"xian"
></view>
<view
class=
"te"
>
<view
class=
"te"
>
{{
userData
.
memMaxEducation
}}
{{
userData
.
memMaxEducation
?
userData
.
memMaxEducation
:
''
}}
</view>
</view>
</view>
</view>
</view>
</view>
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
<view
class=
"hint"
>
<view
class=
"hint"
>
<image
:src=
"baseUrl+'/user/auth.png'"
mode=
"aspectFill"
></image>
<image
:src=
"baseUrl+'/user/auth.png'"
mode=
"aspectFill"
></image>
<view
class=
"t"
>
<view
class=
"t"
>
{{
userData
.
memRealAuthen
}}
{{
userData
.
memRealAuthen
?
userData
.
memRealAuthen
:
''
}}
</view>
</view>
</view>
</view>
</view>
</view>
...
@@ -226,7 +226,9 @@
...
@@ -226,7 +226,9 @@
//是否关注 0:未关注 1:已关注
//是否关注 0:未关注 1:已关注
isFollowed
:
'0'
,
isFollowed
:
'0'
,
//用户信息
//用户信息
userData
:
{},
userData
:
{
},
//点赞字典数据
//点赞字典数据
userLikeOptions
:[],
userLikeOptions
:[],
//点赞花费金币数
//点赞花费金币数
...
...
pagesme/message/info.vue
View file @
1927b2c7
...
@@ -54,7 +54,7 @@
...
@@ -54,7 +54,7 @@
</view>
</view>
</
template
>
</
template
>
</z-paging>
</z-paging>
<u-popup
:show=
"show"
mode=
"center"
@
close=
"close"
@
open=
"open"
customStyle=
"min-height: 15vh; width: 700rpx; b
ackground: linear-gradient(135deg, #E3D4FC 0%, #ffdbd1 50%, #FFFFFF 100%); b
order-radius: 10rpx;"
>
<u-popup
:show=
"show"
mode=
"center"
@
close=
"close"
@
open=
"open"
customStyle=
"min-height: 15vh; width: 700rpx; border-radius: 10rpx;"
>
<view
class=
"popup-content"
>
<view
class=
"popup-content"
>
<text
style=
"font-weight: bold"
>
互换微信成功
</text>
<text
style=
"font-weight: bold"
>
互换微信成功
</text>
</view>
</view>
...
@@ -371,10 +371,16 @@ export default {
...
@@ -371,10 +371,16 @@ export default {
if
(
res
.
data
.
code
==
200
){
if
(
res
.
data
.
code
==
200
){
this
.
$refs
.
paging
.
reload
();
this
.
$refs
.
paging
.
reload
();
this
.
inputTemp
=
''
this
.
inputTemp
=
''
}
else
{
}
else
if
(
res
.
data
.
code
==
1003
)
{
this
.
showApply
=
false
this
.
isMessageConfirm
=
true
;
this
.
isMessageConfirm
=
true
;
this
.
tipMsg
=
res
.
data
.
message
;
this
.
tipMsg
=
res
.
data
.
message
;
this
.
$refs
.
elmMessage
.
showDialog
();
this
.
$refs
.
elmMessage
.
showDialog
();
}
else
{
uni
.
showToast
({
title
:
res
.
data
.
message
,
icon
:
'none'
})
}
}
})
})
},
},
...
@@ -446,11 +452,16 @@ export default {
...
@@ -446,11 +452,16 @@ export default {
icon
:
'none'
icon
:
'none'
})
})
this
.
showApply
=
false
this
.
showApply
=
false
}
else
{
}
else
if
(
res
.
data
.
code
==
1003
)
{
this
.
showApply
=
false
this
.
showApply
=
false
this
.
isMessageConfirm
=
true
;
this
.
isMessageConfirm
=
true
;
this
.
tipMsg
=
res
.
data
.
message
;
this
.
tipMsg
=
res
.
data
.
message
;
this
.
$refs
.
elmMessage
.
showDialog
();
this
.
$refs
.
elmMessage
.
showDialog
();
}
else
{
uni
.
showToast
({
title
:
res
.
data
.
message
,
icon
:
'none'
})
}
}
})
})
},
},
...
...
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