vue_zhongyou 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -0
- package/package.json +9 -0
- package//344/273/243/347/240/201/assets/common.css +10 -0
- package//344/273/243/347/240/201/components/FilterSortPanel.vue +183 -0
- package//344/273/243/347/240/201/components/card.vue +17 -0
- package//344/273/243/347/240/201/views/HomePage.vue +199 -0
- package//344/273/243/347/240/201/views/listPage.vue +95 -0
- package//344/273/243/347/240/201/views/officialPage.vue +326 -0
- package//344/273/243/347/240/201/views/searchPage.vue +257 -0
- package//345/212/237/350/203/275/344/273/243/347/240/201//345/211/215/347/253/257/347/233/221/346/216/247/errorLogPage.vue +410 -0
- package//345/212/237/350/203/275/344/273/243/347/240/201//345/211/215/347/253/257/347/233/221/346/216/247/errorMonitor.js +324 -0
- package//345/212/237/350/203/275/344/273/243/347/240/201//345/211/215/347/253/257/347/233/221/346/216/247/main.js +103 -0
- package//345/212/237/350/203/275/344/273/243/347/240/201//345/211/215/347/253/257/347/233/221/346/216/247/request.js +89 -0
- package//345/212/237/350/203/275/344/273/243/347/240/201//345/211/215/347/253/257/347/233/221/346/216/247/testError.vue +501 -0
- package//346/226/207/344/273/266/fitler.vue +455 -0
- package//346/226/207/344/273/266/useFilter.vue +110 -0
- package//346/226/207/344/273/266//345/217/257/351/205/215/347/275/256/347/247/273/345/212/250/345/210/227/350/241/250/346/236/266/345/255/220.vue +243 -0
|
@@ -0,0 +1,326 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="official_page">
|
|
3
|
+
<!-- 顶部Header -->
|
|
4
|
+
<div class="header">
|
|
5
|
+
<h1 class="title">公文管理</h1>
|
|
6
|
+
<div class="search_box">
|
|
7
|
+
<van-icon name="search" />
|
|
8
|
+
<input type="text" placeholder="搜索流程名称..." />
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
11
|
+
|
|
12
|
+
<!-- 第一个统计区域 -->
|
|
13
|
+
<div class="first_section">
|
|
14
|
+
<div class="all_total">
|
|
15
|
+
<div class="label">公文库总数</div>
|
|
16
|
+
<div class="number">1,284</div>
|
|
17
|
+
</div>
|
|
18
|
+
<div class="approval_status">
|
|
19
|
+
<div class="pending_approval">
|
|
20
|
+
<div class="label">待审公文</div>
|
|
21
|
+
<div class="content">
|
|
22
|
+
<div class="number">248</div>
|
|
23
|
+
<van-icon name="clock-o" class="icon" />
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
<div class="approved">
|
|
27
|
+
<div class="label">已审公文</div>
|
|
28
|
+
<div class="content">
|
|
29
|
+
<div class="number">1,036</div>
|
|
30
|
+
<van-icon name="success" class="icon" />
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
|
|
36
|
+
<!-- 发文统计 -->
|
|
37
|
+
<div class="stat_section">
|
|
38
|
+
<div class="section_header">
|
|
39
|
+
<div class="header_left">
|
|
40
|
+
<img style="width: 22px;margin-right: 5px;" src="@/assets/image/发文.png" alt="">
|
|
41
|
+
<!-- <van-icon name="arrow-up" class="section_icon blue" /> -->
|
|
42
|
+
<span class="section_title">发文统计</span>
|
|
43
|
+
</div>
|
|
44
|
+
<div class="section_total">846</div>
|
|
45
|
+
</div>
|
|
46
|
+
<div class="sub_cards">
|
|
47
|
+
<div class="sub_card">
|
|
48
|
+
<div class="sub_label">待办</div>
|
|
49
|
+
<div class="sub_number">128</div>
|
|
50
|
+
</div>
|
|
51
|
+
<div class="sub_card">
|
|
52
|
+
<div class="sub_label">已办</div>
|
|
53
|
+
<div class="sub_number">245</div>
|
|
54
|
+
</div>
|
|
55
|
+
<div class="sub_card">
|
|
56
|
+
<div class="sub_label">已阅</div>
|
|
57
|
+
<div class="sub_number">245</div>
|
|
58
|
+
</div>
|
|
59
|
+
</div>
|
|
60
|
+
</div>
|
|
61
|
+
|
|
62
|
+
<!-- 收文统计 -->
|
|
63
|
+
<div class="stat_section">
|
|
64
|
+
<div class="section_header">
|
|
65
|
+
<div class="header_left">
|
|
66
|
+
<img style="width: 22px;margin-right: 5px;" src="@/assets/image/收文.png" alt="">
|
|
67
|
+
<span class="section_title">收文统计</span>
|
|
68
|
+
</div>
|
|
69
|
+
<div class="section_total">623</div>
|
|
70
|
+
</div>
|
|
71
|
+
<div class="sub_cards">
|
|
72
|
+
<div class="sub_card">
|
|
73
|
+
<div class="sub_label">待办</div>
|
|
74
|
+
<div class="sub_number">245</div>
|
|
75
|
+
</div>
|
|
76
|
+
<div class="sub_card">
|
|
77
|
+
<div class="sub_label">已办</div>
|
|
78
|
+
<div class="sub_number">245</div>
|
|
79
|
+
</div>
|
|
80
|
+
<div class="sub_card">
|
|
81
|
+
<div class="sub_label">已阅</div>
|
|
82
|
+
<div class="sub_number">245</div>
|
|
83
|
+
</div>
|
|
84
|
+
</div>
|
|
85
|
+
</div>
|
|
86
|
+
|
|
87
|
+
<!-- 签报统计 -->
|
|
88
|
+
<div class="stat_section">
|
|
89
|
+
<div class="section_header">
|
|
90
|
+
<div class="header_left">
|
|
91
|
+
<van-icon name="success" class="section_icon green" />
|
|
92
|
+
<span class="section_title">签报统计</span>
|
|
93
|
+
</div>
|
|
94
|
+
<div class="section_total">419</div>
|
|
95
|
+
</div>
|
|
96
|
+
<div class="sub_cards">
|
|
97
|
+
<div class="sub_card">
|
|
98
|
+
<div class="sub_label">待办</div>
|
|
99
|
+
<div class="sub_number">245</div>
|
|
100
|
+
</div>
|
|
101
|
+
<div class="sub_card">
|
|
102
|
+
<div class="sub_label">已办</div>
|
|
103
|
+
<div class="sub_number">245</div>
|
|
104
|
+
</div>
|
|
105
|
+
<div class="sub_card">
|
|
106
|
+
<div class="sub_label">已阅</div>
|
|
107
|
+
<div class="sub_number">245</div>
|
|
108
|
+
</div>
|
|
109
|
+
</div>
|
|
110
|
+
</div>
|
|
111
|
+
</div>
|
|
112
|
+
</template>
|
|
113
|
+
<style lang='scss' scoped>
|
|
114
|
+
.official_page {
|
|
115
|
+
padding: 10px 15px;
|
|
116
|
+
background-color: #f5f5f5;
|
|
117
|
+
height: 100%;
|
|
118
|
+
box-sizing: border-box;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// 顶部Header
|
|
122
|
+
.header {
|
|
123
|
+
display: flex;
|
|
124
|
+
justify-content: space-between;
|
|
125
|
+
align-items: center;
|
|
126
|
+
margin-bottom: 10px;
|
|
127
|
+
|
|
128
|
+
.title {
|
|
129
|
+
font-size: 20px;
|
|
130
|
+
font-weight: bold;
|
|
131
|
+
color: #333;
|
|
132
|
+
margin: 0;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.search_box {
|
|
136
|
+
display: flex;
|
|
137
|
+
align-items: center;
|
|
138
|
+
background-color: #fff;
|
|
139
|
+
border-radius: 20px;
|
|
140
|
+
padding: 8px 16px;
|
|
141
|
+
flex: 1;
|
|
142
|
+
max-width: 200px;
|
|
143
|
+
margin-left: 20px;
|
|
144
|
+
|
|
145
|
+
.van-icon {
|
|
146
|
+
color: #999;
|
|
147
|
+
margin-right: 8px;
|
|
148
|
+
font-size: 16px;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
input {
|
|
152
|
+
border: none;
|
|
153
|
+
outline: none;
|
|
154
|
+
flex: 1;
|
|
155
|
+
font-size: 14px;
|
|
156
|
+
color: #333;
|
|
157
|
+
|
|
158
|
+
&::placeholder {
|
|
159
|
+
color: #999;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// 第一个统计区域
|
|
166
|
+
.first_section {
|
|
167
|
+
display: flex;
|
|
168
|
+
justify-content: space-between;
|
|
169
|
+
gap: 14px;
|
|
170
|
+
background-color: #fff;
|
|
171
|
+
border-radius: 10px;
|
|
172
|
+
padding: 14px;
|
|
173
|
+
margin-bottom: 10px;
|
|
174
|
+
align-items: stretch;
|
|
175
|
+
|
|
176
|
+
.all_total {
|
|
177
|
+
flex: 1;
|
|
178
|
+
display: flex;
|
|
179
|
+
flex-direction: column;
|
|
180
|
+
justify-content: center;
|
|
181
|
+
align-items: flex-start;
|
|
182
|
+
background-color: #f9f4e9;
|
|
183
|
+
border-radius: 8px;
|
|
184
|
+
padding: 20px;
|
|
185
|
+
|
|
186
|
+
.label {
|
|
187
|
+
font-size: 14px;
|
|
188
|
+
color: #666;
|
|
189
|
+
margin-bottom: 12px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.number {
|
|
193
|
+
font-size: 32px;
|
|
194
|
+
font-weight: bold;
|
|
195
|
+
color: #333;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.approval_status {
|
|
200
|
+
display: flex;
|
|
201
|
+
flex-direction: column;
|
|
202
|
+
gap: 14px;
|
|
203
|
+
flex: 1;
|
|
204
|
+
|
|
205
|
+
.pending_approval,
|
|
206
|
+
.approved {
|
|
207
|
+
background-color: #6be46542;
|
|
208
|
+
border-radius: 8px;
|
|
209
|
+
padding: 16px;
|
|
210
|
+
flex: 1;
|
|
211
|
+
|
|
212
|
+
.label {
|
|
213
|
+
font-size: 14px;
|
|
214
|
+
color: #666;
|
|
215
|
+
margin-bottom: 12px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.content {
|
|
219
|
+
display: flex;
|
|
220
|
+
justify-content: space-between;
|
|
221
|
+
align-items: center;
|
|
222
|
+
|
|
223
|
+
.number {
|
|
224
|
+
font-size: 24px;
|
|
225
|
+
font-weight: bold;
|
|
226
|
+
color: #333;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.icon {
|
|
230
|
+
font-size: 24px;
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.pending_approval {
|
|
236
|
+
background-color: #e6f4ff;
|
|
237
|
+
|
|
238
|
+
.content .icon {
|
|
239
|
+
color: #1890ff;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.approved {
|
|
244
|
+
background-color: #56e65b40;
|
|
245
|
+
|
|
246
|
+
.content .icon {
|
|
247
|
+
color: #52c41a;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
// 统计区域
|
|
254
|
+
.stat_section {
|
|
255
|
+
background-color: #fff;
|
|
256
|
+
border-radius: 10px;
|
|
257
|
+
padding: 16px;
|
|
258
|
+
margin-bottom: 10px;
|
|
259
|
+
|
|
260
|
+
.section_header {
|
|
261
|
+
display: flex;
|
|
262
|
+
justify-content: space-between;
|
|
263
|
+
align-items: center;
|
|
264
|
+
margin-bottom: 10px;
|
|
265
|
+
|
|
266
|
+
.header_left {
|
|
267
|
+
display: flex;
|
|
268
|
+
align-items: center;
|
|
269
|
+
|
|
270
|
+
.section_icon {
|
|
271
|
+
font-size: 20px;
|
|
272
|
+
margin-right: 8px;
|
|
273
|
+
|
|
274
|
+
&.blue {
|
|
275
|
+
color: #1890ff;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
&.purple {
|
|
279
|
+
color: #722ed1;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
&.green {
|
|
283
|
+
color: #52c41a;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.section_title {
|
|
288
|
+
font-size: 16px;
|
|
289
|
+
font-weight: 500;
|
|
290
|
+
color: #333;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.section_total {
|
|
295
|
+
font-size: 24px;
|
|
296
|
+
font-weight: bold;
|
|
297
|
+
color: #333;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.sub_cards {
|
|
302
|
+
display: flex;
|
|
303
|
+
gap: 12px;
|
|
304
|
+
|
|
305
|
+
.sub_card {
|
|
306
|
+
flex: 1;
|
|
307
|
+
background-color: #f8f8f8;
|
|
308
|
+
border-radius: 8px;
|
|
309
|
+
padding: 16px;
|
|
310
|
+
text-align: center;
|
|
311
|
+
|
|
312
|
+
.sub_label {
|
|
313
|
+
font-size: 14px;
|
|
314
|
+
color: #666;
|
|
315
|
+
margin-bottom: 8px;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.sub_number {
|
|
319
|
+
font-size: 20px;
|
|
320
|
+
font-weight: bold;
|
|
321
|
+
color: #333;
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
</style>
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="search-page">
|
|
3
|
+
<!-- 查询bar -->
|
|
4
|
+
<div class="search-bar">
|
|
5
|
+
<van-search
|
|
6
|
+
v-model="keyword"
|
|
7
|
+
placeholder="请输入搜索内容"
|
|
8
|
+
show-action
|
|
9
|
+
clearable
|
|
10
|
+
shape="round"
|
|
11
|
+
@search="onSearch"
|
|
12
|
+
@cancel="onCancel"
|
|
13
|
+
>
|
|
14
|
+
<template #action>
|
|
15
|
+
<span class="search-action" @click="onSearch(keyword)">搜索</span>
|
|
16
|
+
</template>
|
|
17
|
+
</van-search>
|
|
18
|
+
</div>
|
|
19
|
+
|
|
20
|
+
<!-- 历史搜索功能-->
|
|
21
|
+
<div class="history-section" v-if="keyword.length == 0">
|
|
22
|
+
<div class="history-header">
|
|
23
|
+
<span class="section-title">历史搜索</span>
|
|
24
|
+
<van-icon name="delete" size="20" color="#8e8f91" @click="clearHistory" />
|
|
25
|
+
</div>
|
|
26
|
+
<div class="history-tags">
|
|
27
|
+
<div
|
|
28
|
+
class="tag-item"
|
|
29
|
+
v-for="item in historyList"
|
|
30
|
+
:key="item"
|
|
31
|
+
@click="onSelectHistory(item)"
|
|
32
|
+
>
|
|
33
|
+
<van-icon name="clock-o" size="16" color="#8e8f91"></van-icon>
|
|
34
|
+
<span class="tag-text">{{ item }}</span>
|
|
35
|
+
</div>
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<!-- <van-tag
|
|
39
|
+
v-for="item in historyList"
|
|
40
|
+
:key="item"
|
|
41
|
+
type="primary"
|
|
42
|
+
plain
|
|
43
|
+
round
|
|
44
|
+
@click="onSelectHistory(item)"
|
|
45
|
+
>
|
|
46
|
+
{{ item }}
|
|
47
|
+
</van-tag> -->
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
|
|
51
|
+
<!-- 查询结果展示 -->
|
|
52
|
+
<div class="result-section" v-else>
|
|
53
|
+
<div class="section-title">搜索结果</div>
|
|
54
|
+
<van-empty
|
|
55
|
+
v-if="!results.length && hasSearched"
|
|
56
|
+
description="暂无搜索结果"
|
|
57
|
+
/>
|
|
58
|
+
<van-empty
|
|
59
|
+
v-else-if="!hasSearched"
|
|
60
|
+
description="请输入关键字进行搜索"
|
|
61
|
+
image="search"
|
|
62
|
+
/>
|
|
63
|
+
<van-list v-else :finished="true">
|
|
64
|
+
<van-cell
|
|
65
|
+
v-for="item in results"
|
|
66
|
+
:key="item.id"
|
|
67
|
+
:title="item.title"
|
|
68
|
+
:label="item.description"
|
|
69
|
+
@click="onSelectResult(item)"
|
|
70
|
+
is-link
|
|
71
|
+
/>
|
|
72
|
+
</van-list>
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
75
|
+
</template>
|
|
76
|
+
|
|
77
|
+
<script setup>
|
|
78
|
+
import { onMounted, ref } from 'vue'
|
|
79
|
+
|
|
80
|
+
const HISTORY_KEY = 'official_search_history'
|
|
81
|
+
|
|
82
|
+
const keyword = ref('') // 查询关键词
|
|
83
|
+
const historyList = ref([]) // 历史搜索记录
|
|
84
|
+
const results = ref([]) // 查询结果
|
|
85
|
+
const hasSearched = ref(false) // 是否已搜索
|
|
86
|
+
|
|
87
|
+
const dataSource = [
|
|
88
|
+
{ id: 1, title: '公文审批流程', description: '快速审批新建公文,支持多人会签' },
|
|
89
|
+
{ id: 2, title: '发文统计报表', description: '统计发文办理情况,支持导出' },
|
|
90
|
+
{ id: 3, title: '收文登记流程', description: '登记收文并自动分发到相关部门' },
|
|
91
|
+
{ id: 4, title: '签报申请', description: '签报流程模板,支持多级审批' },
|
|
92
|
+
{ id: 5, title: '公文归档', description: '公文入库、归档与检索' },
|
|
93
|
+
{ id: 6, title: '督办事项', description: '跟踪公文办理进度,逾期提醒' }
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
// 查
|
|
97
|
+
const loadHistory = () => {
|
|
98
|
+
if (typeof window === 'undefined') return
|
|
99
|
+
const stored = localStorage.getItem(HISTORY_KEY)
|
|
100
|
+
historyList.value = stored ? JSON.parse(stored) : []
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// 保存历史搜索记录
|
|
104
|
+
const saveHistory = () => {
|
|
105
|
+
if (typeof window === 'undefined') return
|
|
106
|
+
localStorage.setItem(HISTORY_KEY, JSON.stringify(historyList.value))
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// 添加历史搜索记录
|
|
110
|
+
const addHistory = (value) => {
|
|
111
|
+
const trimmed = value.trim()
|
|
112
|
+
if (!trimmed) return
|
|
113
|
+
const existingIndex = historyList.value.findIndex((item) => item === trimmed)
|
|
114
|
+
if (existingIndex !== -1) {
|
|
115
|
+
historyList.value.splice(existingIndex, 1)
|
|
116
|
+
}
|
|
117
|
+
historyList.value.unshift(trimmed)
|
|
118
|
+
if (historyList.value.length > 10) {
|
|
119
|
+
historyList.value = historyList.value.slice(0, 10)
|
|
120
|
+
}
|
|
121
|
+
saveHistory()
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
// 查询
|
|
125
|
+
const onSearch = (value) => {
|
|
126
|
+
const trimmed = (value ?? '').trim()
|
|
127
|
+
if (!trimmed) return
|
|
128
|
+
keyword.value = trimmed
|
|
129
|
+
addHistory(trimmed)
|
|
130
|
+
results.value = dataSource.filter(
|
|
131
|
+
(item) =>
|
|
132
|
+
item.title.includes(trimmed) || item.description.includes(trimmed)
|
|
133
|
+
)
|
|
134
|
+
hasSearched.value = true
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// 取消查询
|
|
138
|
+
const onCancel = () => {
|
|
139
|
+
keyword.value = ''
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
// 清空历史搜索记录
|
|
143
|
+
const clearHistory = () => {
|
|
144
|
+
historyList.value = []
|
|
145
|
+
if (typeof window !== 'undefined') {
|
|
146
|
+
localStorage.removeItem(HISTORY_KEY)
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// 选择历史搜索记录
|
|
151
|
+
const onSelectHistory = (value) => {
|
|
152
|
+
onSearch(value)
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
const onSelectResult = (item) => {
|
|
156
|
+
// 这里可以集成路由跳转或详情页逻辑
|
|
157
|
+
console.log('selected result', item)
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
onMounted(() => {
|
|
161
|
+
loadHistory()
|
|
162
|
+
})
|
|
163
|
+
</script>
|
|
164
|
+
|
|
165
|
+
<style scoped lang="scss">
|
|
166
|
+
.search-page {
|
|
167
|
+
min-height: 100vh;
|
|
168
|
+
background: #f7f8fa;
|
|
169
|
+
display: flex;
|
|
170
|
+
flex-direction: column;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.search-bar {
|
|
174
|
+
background: #fff;
|
|
175
|
+
padding: 8px 0px;
|
|
176
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
|
|
177
|
+
|
|
178
|
+
.search-action {
|
|
179
|
+
color: #919294;
|
|
180
|
+
font-size: 14px;
|
|
181
|
+
padding: 0 8px;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.section-title {
|
|
186
|
+
font-size: 16px;
|
|
187
|
+
font-weight: 600;
|
|
188
|
+
color: #8e8f91;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.history-section {
|
|
192
|
+
background: transparent;
|
|
193
|
+
margin: 12px;
|
|
194
|
+
padding: 0 0 16px;
|
|
195
|
+
border-radius: 0;
|
|
196
|
+
box-shadow: none;
|
|
197
|
+
|
|
198
|
+
.history-header {
|
|
199
|
+
display: flex;
|
|
200
|
+
justify-content: space-between;
|
|
201
|
+
align-items: center;
|
|
202
|
+
margin-bottom: 12px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.history-tags {
|
|
206
|
+
display: flex;
|
|
207
|
+
flex-wrap: wrap;
|
|
208
|
+
gap: 10px;
|
|
209
|
+
|
|
210
|
+
.van-tag {
|
|
211
|
+
padding: 4px 12px;
|
|
212
|
+
font-size: 14px;
|
|
213
|
+
color: #1989fa;
|
|
214
|
+
border-color: rgba(25, 137, 250, 0.35);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.tag-item {
|
|
218
|
+
display: flex;
|
|
219
|
+
width: 40%;
|
|
220
|
+
align-items: center;
|
|
221
|
+
gap: 4px;
|
|
222
|
+
padding: 4px 12px;
|
|
223
|
+
font-size: 14px;
|
|
224
|
+
color: #8e8f91;
|
|
225
|
+
border-radius: 16px;
|
|
226
|
+
}
|
|
227
|
+
.tag-text {
|
|
228
|
+
font-size: 14px;
|
|
229
|
+
color: #8e8f91;
|
|
230
|
+
overflow: hidden;
|
|
231
|
+
text-overflow: ellipsis;
|
|
232
|
+
white-space: nowrap;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.result-section {
|
|
238
|
+
flex: 1;
|
|
239
|
+
background: #fff;
|
|
240
|
+
margin: 0 ;
|
|
241
|
+
padding: 12px;
|
|
242
|
+
border-radius: 0;
|
|
243
|
+
box-shadow: none;
|
|
244
|
+
|
|
245
|
+
.section-title {
|
|
246
|
+
padding: 0 0 12px;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.van-cell {
|
|
250
|
+
&:not(:last-child)::after {
|
|
251
|
+
left: 16px;
|
|
252
|
+
right: 16px;
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
</style>
|
|
257
|
+
|