Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
_milo
Great Teamwork
提交
6035098c
Great Teamwork
项目概览
_milo
/
Great Teamwork
通知
13
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Great Teamwork
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
6035098c
编写于
5月 05, 2023
作者:
R
Renic1
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'frontend' of
https://gitcode.net/qq_50679803/great-teamwork
into frontend
上级
1a8b370d
dd1bdc02
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
41 addition
and
11 deletion
+41
-11
teamwork/pages/post/post-detial.vue
teamwork/pages/post/post-detial.vue
+39
-9
teamwork/uni_modules/uni-file-picker/components/uni-file-picker/upload-image.vue
...i-file-picker/components/uni-file-picker/upload-image.vue
+2
-2
未找到文件。
teamwork/pages/post/post-detial.vue
浏览文件 @
6035098c
...
...
@@ -26,6 +26,8 @@
<!-- 点赞和评论 -->
<view
class=
"like-and-comment"
>
<!-- 删除键,只有我的帖子可见该组件 -->
<text
class=
"del"
@
click=
"delPost"
>
删除
</text>
<view
class=
"icon-and-num"
>
<image
class=
"like-icon"
:src=
"isLike==1?'../../static/post/喜欢2.png':'../../static/post/喜欢.png'"
style=
"width: 16px;height:16px;"
@
click=
"changeLike"
/>
...
...
@@ -50,7 +52,8 @@
<image
:src=
"'https://mp-6f6feaec-a026-4402-8e8d-18f7572890da.cdn.bspapp.com/cloudstorage/becea65c-89d7-4fe0-9c3f-2e08cdf911e8.jpg'"
class=
"icon-small"
/>
<span
@
click=
"addComment"
class=
"comment-buttun"
><text
style=
"margin-left:8px;margin-top: 5px;float: left"
>
写评论
</text></span>
<span
@
click=
"addComment"
class=
"comment-buttun"
><text
style=
"margin-left:8px;margin-top: 5px;float: left"
>
写评论
</text></span>
</view>
<!-- 评论内容 -->
<view
class=
"one-comment"
>
...
...
@@ -71,13 +74,21 @@
<u-line
color=
"#EDEEF0"
></u-line>
</view>
</view>
<!-- 弹出的评论框 -->
<uni-popup
ref=
"popup"
type=
"dialog"
>
<uni-popup-dialog
mode=
"input"
message=
"评论成功"
title=
"评论"
placeholder=
"请输入内容"
:duration=
"2000"
:before-close=
"true"
@
close=
"close"
@
confirm=
"confirm"
></uni-popup-dialog>
</uni-popup>
<!-- 是否删除 -->
<uni-popup
ref=
"alertDialog"
type=
"dialog"
>
<uni-popup-dialog
cancelText=
"取消"
confirmText=
"确定"
title=
"警告"
content=
"确定删除该帖子吗?"
@
confirm=
"dialogConfirm"
></uni-popup-dialog>
</uni-popup>
</view>
</
template
>
...
...
@@ -112,6 +123,19 @@
},
methods
:
{
//删除确认弹窗
delPost
()
{
this
.
$refs
.
alertDialog
.
open
();
},
dialogConfirm
()
{
console
.
log
(
'
点击确认
'
)
this
.
$refs
.
alertDialog
.
close
();
},
dialogClose
()
{
console
.
log
(
'
点击关闭
'
)
this
.
$refsalertDialog
.
close
();
},
//输入评论
confirm
(
value
)
{
// 输入框的值
...
...
@@ -128,10 +152,10 @@
this
.
$refs
.
popup
.
close
();
},
//返回键
back
(){
back
()
{
uni
.
navigateBack
({
delta
:
1
,
//返回层数,2则上上页
})
delta
:
1
,
//返回层数,2则上上页
})
},
// 图片放大
showPic
(
imgUrl
)
{
...
...
@@ -183,6 +207,12 @@
overflow
:
auto
;
}
.del
{
float
:
left
;
font-size
:
12px
;
color
:
lightskyblue
;
}
.comment-buttun
{
background-color
:
#EDEEF0
;
float
:
left
;
...
...
@@ -341,13 +371,13 @@
.like-and-comment
{
float
:
left
;
margin-top
:
5
px
;
margin-top
:
10
px
;
margin-left
:
10%
;
height
:
25px
;
width
:
80%
;
}
.like-and-time
{
.like-and-time
{
float
:
left
;
margin-top
:
10px
;
margin-left
:
5%
;
...
...
@@ -363,7 +393,7 @@
.parting-line
{
width
:
100%
;
margin-top
:
2
0px
;
margin-top
:
1
0px
;
background-color
:
#EDEEF0
;
height
:
10px
;
}
...
...
teamwork/uni_modules/uni-file-picker/components/uni-file-picker/upload-image.vue
浏览文件 @
6035098c
...
...
@@ -192,9 +192,9 @@
.file-picker__box
{
position
:
relative
;
// flex: 0 0 33.3%;
width
:
33
.3
%
;
width
:
100
%
;
height
:
0
;
padding-top
:
33
.3
3
%
;
padding-top
:
33
.3%
;
/* #ifndef APP-NVUE */
box-sizing
:
border-box
;
/* #endif */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录