Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mallapp
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
viitto
mallapp
Commits
6375846e
Commit
6375846e
authored
Mar 29, 2021
by
Mac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
8f0d503f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
13 deletions
+28
-13
postDetails.vue
pages/blindDate/postDetails.vue
+20
-11
mydetails.vue
pages/friendcircle/mydetails.vue
+8
-2
No files found.
pages/blindDate/postDetails.vue
View file @
6375846e
...
...
@@ -299,6 +299,11 @@
color
:
#666666
;
}
.share-icon
{
width
:
20px
;
height
:
20px
;
}
</
style
>
<
template
>
...
...
@@ -323,10 +328,15 @@
<image
style=
"width: 100%;height: 100%;"
:src=
"details.ImageList[0]"
mode=
"aspectFill"
></image>
</view>
<view
class=
"details"
>
<view
class=
"details-title"
><u-tag
:text=
"details.Label"
mode=
"dark"
:bg-color=
"mainColor"
size=
"mini"
v-if=
"details.Label!=null&& details.Label!=''"
/>
{{
details
.
ActivityTitle
}}
</view>
<view
style=
"display: flex;align-items: flex-start;justify-content: space-between;"
>
<view
class=
"details-title"
><u-tag
:text=
"details.Label"
mode=
"dark"
:bg-color=
"mainColor"
size=
"mini"
v-if=
"details.Label!=null&& details.Label!=''"
style=
'margin-right:5px ;'
/>
{{
details
.
ActivityTitle
}}
</view>
<view
style=
"width: 30px;"
@
click=
"fxshow=true"
>
<image
src=
"@/static/images/icon/icon-share.png"
class=
"share-icon"
@
click=
"fxshow=true"
/>
</view>
</view>
<!--
<text
v-if=
"details.Label!=null&& details.Label!='' "
:style=
"
{color:mainColor}">【
{{
details
.
Label
}}
】
</text>
-->
<view
@
click=
"fxshow=true"
>
分享
</view>
<view
class=
"details-info"
>
<view
class=
"details-info-l"
>
<view
style=
"width: 35px;height: 35px;border-radius: 50%;position: relative;"
@
click
.
native
.
stop=
"goUserinfo(details)"
>
...
...
@@ -695,10 +705,10 @@
this
.
UserId
=
UserId
},
onShareTimeline
()
{
setTimeout
(()
=>
{
console
.
log
(
"分享朋友圈调用"
);
this
.
getReceive
();
},
2500
);
//
setTimeout(() => {
//
console.log("分享朋友圈调用");
//
this.getReceive();
//
}, 2500);
let
uid
=
uni
.
getStorageSync
(
"mall_UserInfo"
)
?
uni
.
getStorageSync
(
"mall_UserInfo"
).
UserId
:
0
;
...
...
@@ -723,10 +733,10 @@
};
},
onShareAppMessage
(
res
)
{
setTimeout
(()
=>
{
console
.
log
(
"分享好友调用"
);
this
.
getReceive
();
},
2500
);
//
setTimeout(() => {
//
console.log("分享好友调用");
//
this.getReceive();
//
}, 2500);
let
u
=
uni
.
getStorageSync
(
"mall_UserInfo"
);
let
uid
=
u
.
UserId
?
u
.
UserId
:
0
;
if
(
uid
==
0
){
...
...
@@ -948,7 +958,6 @@
this
.
sendMsg
.
Content
=
''
;
this
.
sendMsg
.
ParentId
=
0
;
this
.
sendMsg
.
ImageList
=
[];
this
.
sendMsg
.
ImageList
=
0
;
this
.
ParentName
=
''
;
this
.
showreply
=
false
this
.
showreply2
=
false
...
...
pages/friendcircle/mydetails.vue
View file @
6375846e
...
...
@@ -199,7 +199,7 @@
</view>
<view
class=
"ftBox-right"
>
<view
class=
"text"
style=
"font-size: 14px;font-weight: bold;margin-bottom: 5px;"
>
{{
detial
.
createEmName
}}
</view>
<view
class=
"text2"
style=
"font-size: 14px;margin-bottom: 5px;"
>
{{
detial
.
content
}}
</view>
<view
class=
"text2"
style=
"font-size: 14px;margin-bottom: 5px;"
>
<text
@
click=
"gohuati(x)"
:style=
"
{'font-weight': '600','margin-right': '2px',color:mainColor}" v-if="detial.TalkContent!=null
&&
detial.TalkContent!=''">#
{{
detial
.
TalkContent
}}
#
</text>
{{
detial
.
content
}}
</view>
<!-- 图片模式 -->
<view
class=
"imgmode"
v-if=
"detial.fileType==1"
>
<view
v-if=
"detial.files.length==1"
style=
"width: 150px;height:200px;margin-bottom: 6px;"
@
click
.
stop=
"previewImage(0,detial.files)"
>
...
...
@@ -621,7 +621,13 @@
this
.
videoContext
.
play
()
this
.
controls
=
true
}
}
},
gohuati
(){
//跳入话题列表
uni
.
navigateTo
({
url
:
'/pages/friendcircle/friendcircle?TalkId='
+
this
.
detial
.
TalkId
+
'&TalkContent='
+
this
.
detial
.
TalkContent
+
'&barshow=1'
})
innerAudioContext
.
stop
();
},
}
}
...
...
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