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
05e07a0e
Commit
05e07a0e
authored
Mar 24, 2025
by
罗林杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
6964851d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
1 deletion
+16
-1
info.vue
pagesme/message/info.vue
+16
-1
No files found.
pagesme/message/info.vue
View file @
05e07a0e
...
...
@@ -29,7 +29,7 @@
<view
class=
"chat-inner-layout"
>
<view
class=
"chat-item-name"
>
{{
item
.
memNickName
}}
</view>
<view
class=
"chat-item-msg-layout"
>
<image
class=
"chat-item-photo"
:src=
"item.avatarUrl"
></image>
<image
@
click=
"gotoDetail(item.memberId)"
class=
"chat-item-photo"
:src=
"item.avatarUrl"
></image>
<view
class=
"chat-inner-msg-left"
>
{{
item
.
content
}}
</view>
</view>
</view>
...
...
@@ -87,6 +87,7 @@ import {getOssUrl} from "../../api/article";
import
{
getDict
}
from
"../../api/system/dict/data"
;
import
ELM
from
'@/components/elm-toast/index.vue'
;
import
UTextarea
from
"../../uni_modules/uview-ui/components/u--textarea/u--textarea.vue"
;
import
{
message
}
from
"../../common/message"
;
export
default
{
name
:
"info"
,
data
()
{
...
...
@@ -506,6 +507,20 @@ export default {
icon
:
'none'
})
},
//跳转用户详情
gotoDetail
(
item
){
if
(
item
!=
null
&&
item
!=
''
){
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
})
}
},
backbar
()
{
uni
.
navigateBack
({
delta
:
1
,
// 返回层数,2则上上页
...
...
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