Skip to content
This repository was archived by the owner on Jul 30, 2020. It is now read-only.

Commit 2ecf8a3

Browse files
committed
修复评论蒙层问题、添加预览二维码
1 parent ee52a71 commit 2ecf8a3

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ API来自于[cnode社区](https://cnodejs.org/api)
66

77
想熟悉下vue的开发流程,又想体验下mpvue,于是写了个练手项目
88

9+
线上demo
10+
11+
![](./img/show.jpg)
12+
13+
线上版本更新日志
14+
15+
v0.0.2 帖子评论框修复
16+
917
## 预览流程
1018

1119
``` bash

img/show.jpg

45.9 KB
Loading

src/components/sendReply.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export default {
6767
height: 100vh;
6868
width: 100vw;
6969
position: fixed;
70+
z-index:1;
7071
background-color: rgba(0, 0, 0, 0.6);
7172
}
7273
.textarea {

src/pages/detail/index.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
<template>
22
<div class='container'>
3-
<div v-if='sendVisible'>
4-
<sendReply @close-modal='closeModal' @reply-success='replySuccess' :content='content' :topicId='id' :replyId='replyId'></sendReply>
5-
</div>
3+
<sendReply v-if='sendVisible' @close-modal='closeModal' @reply-success='replySuccess' :content='content' :topicId='id' :replyId='replyId'></sendReply>
64
<div>
75
<div class='header'>
86
<div class='author'>

0 commit comments

Comments
 (0)