myPublish.vue
5.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<template>
<view class="page">
<view class="searchbox">
<text class="tipsword">查询日期</text>
<input type="text" value="" placeholder="2019-03-05" class="fill"/>
<view class="searchbtn">搜索</view>
</view>
<view class="box">
<view class="item">
<view class="titlebox">
<view class="type">审核中</view>
<view class="word">帖子标题帖子标题帖子标题帖子帖...</view>
<image src="../../static/del.png" mode="widthFix" class="del"></image>
</view>
<view class="wordarea">
帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容...
</view>
<view class="numbox">
<view class="time">2019-10-10 15:30:30</view>
<view class="btnbox">
<view class="zan">
<image src="../../static/zan.png" mode="widthFix" class="icon"></image>399
</view>
<view class="people">
<image src="../../static/people.png" mode="widthFix" class="icon"></image>399
</view>
</view>
</view>
</view>
<view class="item">
<view class="titlebox">
<view class="type">审核中</view>
<view class="word">帖子标题帖子标题帖子标题帖子帖...</view>
<image src="../../static/del.png" mode="widthFix" class="del"></image>
</view>
<view class="wordarea">
帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容...
</view>
<view class="numbox">
<view class="time">2019-10-10 15:30:30</view>
<view class="btnbox">
<view class="zan">
<image src="../../static/zan.png" mode="widthFix" class="icon"></image>399
</view>
<view class="people">
<image src="../../static/people.png" mode="widthFix" class="icon"></image>399
</view>
</view>
</view>
</view>
<view class="item">
<view class="titlebox">
<view class="type">审核中</view>
<view class="word">帖子标题帖子标题帖子标题帖子帖...</view>
<image src="../../static/del.png" mode="widthFix" class="del"></image>
</view>
<view class="wordarea">
帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容帖子内容...
</view>
<view class="numbox">
<view class="time">2019-10-10 15:30:30</view>
<view class="btnbox">
<view class="zan">
<image src="../../static/zan.png" mode="widthFix" class="icon"></image>399
</view>
<view class="people">
<image src="../../static/people.png" mode="widthFix" class="icon"></image>399
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
page{
background: #F7F7F7;
}
.searchbox{
padding: 0 32rpx;
box-sizing: border-box;
background: #fff;
height: 88rpx;
display: flex;
align-items: center;
justify-content: space-between;
}
.tipsword{
font-size:28rpx;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(61,69,76,1);
}
.searchbox .fill{
width:482rpx;
height:60rpx;
padding: 0 24rpx;
box-sizing: border-box;
background:rgba(249,249,249,1);
border-radius:32rpx;
border:2rpx solid rgba(238,238,238,1);
font-size:24rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(189,196,206,1);
}
.searchbtn{
font-size:28rpx;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(61,69,76,1);
}
.box{
background: #fff;
padding: 0 32rpx;
box-sizing: border-box;
}
.item{
padding: 32rpx 0;
border-bottom: 1px solid #EEEEEE;
box-sizing: border-box;
}
.titlebox{
display: flex;
align-items: center;
justify-content: space-between;
}
.type{
width:100rpx;
height:36rpx;
background:rgba(255,255,255,1);
border-radius:4rpx;
border:2rpx solid rgba(194,148,69,1);
font-size:22rpx;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(194,148,69,1);
display: flex;
align-items: center;
justify-content: center;
}
.word{
font-size:32rpx;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:600;
color:rgba(6,18,32,1);
}
.del{
width: 32rpx;
height: 32rpx;
}
.wordarea{
font-size:28rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(60,68,76,1);
margin-top: 12rpx;
}
.numbox{
margin-top: 18rpx;
display: flex;
align-items: center;
justify-content: space-between;
}
.time{
font-size:24rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(91,94,100,1);
}
.btnbox{
display: flex;
align-items: center;
}
.zan,.people{
display: flex;
align-items: center;
font-size:28rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(91,94,100,1);
}
.zan{
margin-right: 32rpx;
}
.icon{
width: 28rpx;
margin-right: 8rpx;
}
</style>