|
@@ -1,139 +1,375 @@
|
1
|
1
|
<template>
|
2
|
2
|
<div class="body-wrapper">
|
3
|
3
|
<div class="search-card">
|
4
|
|
- <el-input class="input-wrapper" v-model="searchWords" placeholder="请输入关键字">
|
5
|
|
- <el-button slot="append" class="searchbtn" @click="handleSearch">
|
6
|
|
- </el-button>
|
7
|
|
- </el-input>
|
|
4
|
+ <h5>车场查询</h5>
|
|
5
|
+ <el-input class="input-wrapper" v-model="searchWords" placeholder="请输入车场名称">
|
|
6
|
+ <el-button slot="append" class="searchbtn" @click="handleSearch">
|
|
7
|
+ </el-button>
|
|
8
|
+ </el-input>
|
8
|
9
|
</div>
|
9
|
10
|
<el-table :data="tableData" style="background: #2a2a2a;border-color: #333;">
|
10
|
11
|
<el-table-column v-for="(item, index) in columns" :key="index" :label="item.label" :prop="item.key">
|
11
|
12
|
</el-table-column>
|
12
|
|
- <el-table-column
|
13
|
|
- label="操作"
|
14
|
|
- width="100">
|
15
|
|
- <template slot-scope="scope">
|
16
|
|
- <el-button v-if="scope.row && scope.row.applyType === '1'" @click="handleAudit(scope.row)" type="text" size="small">审核</el-button>
|
17
|
|
- </template>
|
|
13
|
+ </el-table>
|
|
14
|
+ <div class="table-pagination">
|
|
15
|
+ <el-pagination :background="false" layout="total, prev, pager, next" :total="total" @current-change="handlePageChange"
|
|
16
|
+ :current-page.sync="pageNum" :page-size.sync="pageSize">
|
|
17
|
+ </el-pagination>
|
|
18
|
+ </div>
|
|
19
|
+
|
|
20
|
+ <div class="search-card">
|
|
21
|
+ <h5>泊位查询</h5>
|
|
22
|
+ <el-input class="input-wrapper" v-model="searchWords2" placeholder="请输入泊位编号">
|
|
23
|
+ <el-button slot="append" class="searchbtn" @click="handleSearch">
|
|
24
|
+ </el-button>
|
|
25
|
+ </el-input>
|
|
26
|
+ </div>
|
|
27
|
+ <el-table :data="tableData2" style="background: #2a2a2a;border-color: #333;">
|
|
28
|
+ <el-table-column v-for="(item, index) in columns2" :key="index" :label="item.label" :prop="item.key">
|
|
29
|
+ </el-table-column>
|
|
30
|
+ </el-table>
|
|
31
|
+ <div class="table-pagination">
|
|
32
|
+ <el-pagination :background="false" layout="total, prev, pager, next" :total="total" @current-change="handlePageChange"
|
|
33
|
+ :current-page.sync="pageNum2" :page-size.sync="pageSize2">
|
|
34
|
+ </el-pagination>
|
|
35
|
+ </div>
|
|
36
|
+
|
|
37
|
+ <div class="search-card">
|
|
38
|
+ <h5>监控查询</h5>
|
|
39
|
+ <el-input class="input-wrapper" v-model="searchWords3" placeholder="请输入监控编号">
|
|
40
|
+ <el-button slot="append" class="searchbtn" @click="handleSearch">
|
|
41
|
+ </el-button>
|
|
42
|
+ </el-input>
|
|
43
|
+ </div>
|
|
44
|
+ <el-table :data="tableData" style="background: #2a2a2a;border-color: #333;">
|
|
45
|
+ <el-table-column v-for="(item, index) in columns3" :key="index" :label="item.label" :prop="item.key">
|
|
46
|
+ </el-table-column>
|
|
47
|
+ </el-table>
|
|
48
|
+ <div class="table-pagination">
|
|
49
|
+ <el-pagination :background="false" layout="total, prev, pager, next" :total="total" @current-change="handlePageChange"
|
|
50
|
+ :current-page.sync="pageNum3" :page-size.sync="pageSize3">
|
|
51
|
+ </el-pagination>
|
|
52
|
+ </div>
|
|
53
|
+
|
|
54
|
+ <div class="search-card">
|
|
55
|
+ <h5>设备查询</h5>
|
|
56
|
+ <el-input class="input-wrapper" v-model="searchWords4" placeholder="请输入设备编号">
|
|
57
|
+ <el-button slot="append" class="searchbtn" @click="handleSearch">
|
|
58
|
+ </el-button>
|
|
59
|
+ </el-input>
|
|
60
|
+ </div>
|
|
61
|
+ <el-table :data="tableData" style="background: #2a2a2a;border-color: #333;">
|
|
62
|
+ <el-table-column v-for="(item, index) in columns4" :key="index" :label="item.label" :prop="item.key">
|
|
63
|
+ </el-table-column>
|
|
64
|
+ </el-table>
|
|
65
|
+ <div class="table-pagination">
|
|
66
|
+ <el-pagination :background="false" layout="total, prev, pager, next" :total="total" @current-change="handlePageChange"
|
|
67
|
+ :current-page.sync="pageNum4" :page-size.sync="pageSize4">
|
|
68
|
+ </el-pagination>
|
|
69
|
+ </div>
|
|
70
|
+
|
|
71
|
+ <div class="search-card">
|
|
72
|
+ <h5>单位查询</h5>
|
|
73
|
+ <el-input class="input-wrapper" v-model="searchWords5" placeholder="请输入单位名称">
|
|
74
|
+ <el-button slot="append" class="searchbtn" @click="handleSearch">
|
|
75
|
+ </el-button>
|
|
76
|
+ </el-input>
|
|
77
|
+ </div>
|
|
78
|
+ <el-table :data="tableData" style="background: #2a2a2a;border-color: #333;">
|
|
79
|
+ <el-table-column v-for="(item, index) in columns5" :key="index" :label="item.label" :prop="item.key">
|
|
80
|
+ </el-table-column>
|
|
81
|
+ </el-table>
|
|
82
|
+ <div class="table-pagination">
|
|
83
|
+ <el-pagination :background="false" layout="total, prev, pager, next" :total="total" @current-change="handlePageChange"
|
|
84
|
+ :current-page.sync="pageNum5" :page-size.sync="pageSize5">
|
|
85
|
+ </el-pagination>
|
|
86
|
+ </div>
|
|
87
|
+
|
|
88
|
+ <div class="search-card">
|
|
89
|
+ <h5>备案资源查询</h5>
|
|
90
|
+ <el-input class="input-wrapper" v-model="searchWords6" placeholder="请输入备案单位名称">
|
|
91
|
+ <el-button slot="append" class="searchbtn" @click="handleSearch">
|
|
92
|
+ </el-button>
|
|
93
|
+ </el-input>
|
|
94
|
+ </div>
|
|
95
|
+ <el-table :data="tableData" style="background: #2a2a2a;border-color: #333;">
|
|
96
|
+ <el-table-column v-for="(item, index) in columns6" :key="index" :label="item.label" :prop="item.key">
|
|
97
|
+ </el-table-column>
|
|
98
|
+ </el-table>
|
|
99
|
+ <div class="table-pagination">
|
|
100
|
+ <el-pagination :background="false" layout="total, prev, pager, next" :total="total" @current-change="handlePageChange"
|
|
101
|
+ :current-page.sync="pageNum6" :page-size.sync="pageSize6">
|
|
102
|
+ </el-pagination>
|
|
103
|
+ </div>
|
|
104
|
+
|
|
105
|
+ <div class="search-card">
|
|
106
|
+ <h5>普查资源查询</h5>
|
|
107
|
+ <el-input class="input-wrapper" v-model="searchWords7" placeholder="请输车场名称">
|
|
108
|
+ <el-button slot="append" class="searchbtn" @click="handleSearch">
|
|
109
|
+ </el-button>
|
|
110
|
+ </el-input>
|
|
111
|
+ </div>
|
|
112
|
+ <el-table :data="tableData" style="background: #2a2a2a;border-color: #333;">
|
|
113
|
+ <el-table-column v-for="(item, index) in columns7" :key="index" :label="item.label" :prop="item.key">
|
18
|
114
|
</el-table-column>
|
19
|
115
|
</el-table>
|
20
|
116
|
<div class="table-pagination">
|
21
|
117
|
<el-pagination :background="false" layout="total, prev, pager, next" :total="total" @current-change="handlePageChange"
|
22
|
|
- :current-page.sync="pageNum" :page-size.sync="pageSize">
|
|
118
|
+ :current-page.sync="pageNum7" :page-size.sync="pageSize7">
|
23
|
119
|
</el-pagination>
|
24
|
120
|
</div>
|
25
|
|
- <el-dialog
|
26
|
|
- title="审核"
|
27
|
|
- :visible.sync="dialogVisible"
|
28
|
|
- width="60%"
|
29
|
|
- custom-class="audit-dialog">
|
30
|
|
- <el-row class="mg-bt">
|
31
|
|
- <el-col class="label" :span="4">审核:</el-col>
|
32
|
|
- <el-col :span="18">
|
33
|
|
- <el-radio v-model="radio" label="2">通过</el-radio>
|
34
|
|
- <el-radio v-model="radio" label="3">驳回</el-radio>
|
35
|
|
- </el-col>
|
36
|
|
- </el-row>
|
37
|
|
- <span slot="footer" class="dialog-footer">
|
38
|
|
- <el-button @click="dialogVisible = false">取 消</el-button>
|
39
|
|
- <el-button type="primary" @click="handleConfirm">确 定</el-button>
|
40
|
|
- </span>
|
41
|
|
- </el-dialog>
|
|
121
|
+
|
|
122
|
+
|
42
|
123
|
</div>
|
43
|
124
|
</template>
|
44
|
125
|
<script>
|
45
|
126
|
import api from "@/api/audit.js";
|
46
|
127
|
|
47
|
128
|
export default {
|
48
|
|
- components: {},
|
49
|
|
- data() {
|
50
|
|
- return {
|
51
|
|
- columns: [
|
52
|
|
- {
|
53
|
|
- label: '资源名称',
|
54
|
|
- key: 'resourceName'
|
55
|
|
- },
|
56
|
|
- {
|
57
|
|
- label: '资源类型',
|
58
|
|
- key: 'resourceType'
|
59
|
|
- },
|
60
|
|
- {
|
61
|
|
- label: '申请人',
|
62
|
|
- key: 'userName'
|
63
|
|
- },
|
64
|
|
- {
|
65
|
|
- label: '状态',
|
66
|
|
- key: 'applyTypeText'
|
67
|
|
- }
|
68
|
|
- ],
|
69
|
|
- tableData: [],
|
70
|
|
- total: 0,
|
71
|
|
- pageSize: 10,
|
72
|
|
- pageNum: 1,
|
73
|
|
- radio: '2',
|
74
|
|
- dialogVisible: false,
|
75
|
|
- selRow: {},
|
76
|
|
- searchWords: undefined
|
77
|
|
- }
|
78
|
|
- },
|
79
|
|
- mounted() {
|
|
129
|
+ components: {},
|
|
130
|
+ data() {
|
|
131
|
+ return {
|
|
132
|
+ columns: [
|
|
133
|
+ {
|
|
134
|
+ label: '车场名称',
|
|
135
|
+ key: 'resourceName'
|
|
136
|
+ },
|
|
137
|
+ {
|
|
138
|
+ label: '位置',
|
|
139
|
+ key: 'resourceType'
|
|
140
|
+ },
|
|
141
|
+ {
|
|
142
|
+ label: '泊位数',
|
|
143
|
+ key: 'userName'
|
|
144
|
+ }
|
|
145
|
+ ],
|
|
146
|
+ columns2: [
|
|
147
|
+ {
|
|
148
|
+ label: '泊位编号',
|
|
149
|
+ key: 'resourceName'
|
|
150
|
+ },
|
|
151
|
+ {
|
|
152
|
+ label: '所属停车场',
|
|
153
|
+ key: 'resourceType'
|
|
154
|
+ },
|
|
155
|
+ {
|
|
156
|
+ label: '是否共享泊位',
|
|
157
|
+ key: 'userName'
|
|
158
|
+ },
|
|
159
|
+ {
|
|
160
|
+ label: '是否充电泊位',
|
|
161
|
+ key: 'userName'
|
|
162
|
+ }
|
|
163
|
+ ],
|
|
164
|
+ columns3: [
|
|
165
|
+ {
|
|
166
|
+ label: '监控编号',
|
|
167
|
+ key: 'resourceName'
|
|
168
|
+ },
|
|
169
|
+ {
|
|
170
|
+ label: '位置',
|
|
171
|
+ key: 'resourceType'
|
|
172
|
+ },
|
|
173
|
+ {
|
|
174
|
+ label: '状态',
|
|
175
|
+ key: 'userName'
|
|
176
|
+ }
|
|
177
|
+ ],
|
|
178
|
+ columns4: [
|
|
179
|
+ {
|
|
180
|
+ label: '设备编号',
|
|
181
|
+ key: 'resourceName'
|
|
182
|
+ },
|
|
183
|
+ {
|
|
184
|
+ label: '设备类型',
|
|
185
|
+ key: 'resourceType'
|
|
186
|
+ },
|
|
187
|
+ {
|
|
188
|
+ label: '工作区域',
|
|
189
|
+ key: 'userName'
|
|
190
|
+ }
|
|
191
|
+ ],
|
|
192
|
+ columns5: [
|
|
193
|
+ {
|
|
194
|
+ label: '车位数量',
|
|
195
|
+ key: 'resourceName'
|
|
196
|
+ },
|
|
197
|
+ {
|
|
198
|
+ label: '专属泊位数量',
|
|
199
|
+ key: 'resourceType'
|
|
200
|
+ },
|
|
201
|
+ {
|
|
202
|
+ label: '合作起止日期',
|
|
203
|
+ key: 'userName'
|
|
204
|
+ }
|
|
205
|
+ ],
|
|
206
|
+ columns6: [
|
|
207
|
+ {
|
|
208
|
+ label: '单位名称',
|
|
209
|
+ key: 'resourceName'
|
|
210
|
+ },
|
|
211
|
+ {
|
|
212
|
+ label: '负责人',
|
|
213
|
+ key: 'resourceType'
|
|
214
|
+ },
|
|
215
|
+ {
|
|
216
|
+ label: '提交日期',
|
|
217
|
+ key: 'userName'
|
|
218
|
+ }
|
|
219
|
+ ],
|
|
220
|
+ columns7: [
|
|
221
|
+ {
|
|
222
|
+ label: '车场名称',
|
|
223
|
+ key: 'resourceName'
|
|
224
|
+ },
|
|
225
|
+ {
|
|
226
|
+ label: '设备数量',
|
|
227
|
+ key: 'resourceType'
|
|
228
|
+ },
|
|
229
|
+ {
|
|
230
|
+ label: '异常数量',
|
|
231
|
+ key: 'userName'
|
|
232
|
+ }
|
|
233
|
+ ],
|
|
234
|
+ tableData: [],
|
|
235
|
+ tableData2: [],
|
|
236
|
+ tableData3: [],
|
|
237
|
+ tableData4: [],
|
|
238
|
+ tableData5: [],
|
|
239
|
+ tableData6: [],
|
|
240
|
+ tableData7: [],
|
|
241
|
+ total: 0,
|
|
242
|
+ pageSize: 10,
|
|
243
|
+ pageNum: 1,
|
|
244
|
+ pageSize2: 10,
|
|
245
|
+ pageNum2: 1,
|
|
246
|
+ pageSize3: 10,
|
|
247
|
+ pageNum3: 1,
|
|
248
|
+ pageSize4: 10,
|
|
249
|
+ pageNum4: 1,
|
|
250
|
+ pageSize5: 10,
|
|
251
|
+ pageNum5: 1,
|
|
252
|
+ pageSize6: 10,
|
|
253
|
+ pageNum6: 1,
|
|
254
|
+ pageSize7: 10,
|
|
255
|
+ pageNum7: 1,
|
|
256
|
+ radio: '2',
|
|
257
|
+ dialogVisible: false,
|
|
258
|
+ selRow: {},
|
|
259
|
+ searchWords: undefined,
|
|
260
|
+ searchWords2: undefined,
|
|
261
|
+ searchWords3: undefined,
|
|
262
|
+ searchWords4: undefined,
|
|
263
|
+ searchWords5: undefined,
|
|
264
|
+ searchWords6: undefined,
|
|
265
|
+ searchWords7: undefined
|
|
266
|
+ }
|
|
267
|
+ },
|
|
268
|
+ mounted() {
|
|
269
|
+ this.getTableData()
|
|
270
|
+ this.getTableData2()
|
|
271
|
+ this.getTableData3()
|
|
272
|
+ this.getTableData4()
|
|
273
|
+ this.getTableData5()
|
|
274
|
+ this.getTableData6()
|
|
275
|
+ this.getTableData7()
|
|
276
|
+ },
|
|
277
|
+ watch: {
|
|
278
|
+ },
|
|
279
|
+ methods: {
|
|
280
|
+ handlePageChange() {
|
80
|
281
|
this.getTableData()
|
81
|
282
|
},
|
82
|
|
- watch: {
|
|
283
|
+ handleAudit(row) {
|
|
284
|
+ this.selRow = row
|
|
285
|
+ this.dialogVisible = true
|
83
|
286
|
},
|
84
|
|
- methods: {
|
85
|
|
- handlePageChange() {
|
86
|
|
- this.getTableData()
|
87
|
|
- },
|
88
|
|
- handleAudit(row) {
|
89
|
|
- this.selRow = row
|
90
|
|
- this.dialogVisible = true
|
91
|
|
- },
|
92
|
|
- handleCancelApply(row) {
|
93
|
|
- console.log('enter handle cancel apply')
|
94
|
|
- },
|
95
|
|
- handleConfirm() {
|
96
|
|
- const {id} = this.selRow
|
97
|
|
- console.log('radio', this.radio)
|
98
|
|
- api.applyResource({id, applyType: this.radio}).then(res => {
|
99
|
|
- if(res.success) {
|
100
|
|
- this.dialogVisible = false
|
101
|
|
- this.$message({
|
102
|
|
- message: '审核成功!',
|
103
|
|
- type: 'success'
|
104
|
|
- })
|
105
|
|
- this.getTableData()
|
106
|
|
- }
|
107
|
|
- })
|
108
|
|
- },
|
109
|
|
- getTableData() {
|
110
|
|
- const {pageNum, pageSize, searchWords} = this
|
111
|
|
- api.applyList({pageNum, pageSize, resourceName: searchWords}).then(res => {
|
112
|
|
- this.tableData = []
|
113
|
|
- res.data.records.map((item, index) => {
|
114
|
|
- const newItem = {...item}
|
115
|
|
- newItem.applyTypeText = this.getApplyTypeText(item.applyType)
|
116
|
|
- this.tableData.push(newItem)
|
|
287
|
+ handleCancelApply(row) {
|
|
288
|
+ console.log('enter handle cancel apply')
|
|
289
|
+ },
|
|
290
|
+ handleConfirm() {
|
|
291
|
+ const {id} = this.selRow
|
|
292
|
+ api.applyResource({id, applyType: this.radio}).then(res => {
|
|
293
|
+ if(res.success) {
|
|
294
|
+ this.dialogVisible = false
|
|
295
|
+ this.$message({
|
|
296
|
+ message: '审核成功!',
|
|
297
|
+ type: 'success'
|
117
|
298
|
})
|
118
|
|
- this.total = res.data.total
|
119
|
|
- })
|
120
|
|
- },
|
121
|
|
- getApplyTypeText(val) {
|
122
|
|
- if (!val){
|
123
|
|
- return '未申请'
|
124
|
|
- }
|
125
|
|
- const textMap = {
|
126
|
|
- 1: '待审批',
|
127
|
|
- 2: '审批通过',
|
128
|
|
- 3: '审批驳回'
|
|
299
|
+ this.getTableData()
|
129
|
300
|
}
|
130
|
|
- return textMap[val]
|
131
|
|
- },
|
132
|
|
- handleSearch() {
|
133
|
|
- this.pageNum = 1
|
134
|
|
- this.getTableData()
|
|
301
|
+ })
|
|
302
|
+ },
|
|
303
|
+ getTableData() {
|
|
304
|
+ const {pageNum, pageSize, searchWords} = this
|
|
305
|
+ api.applyList({pageNum, pageSize, resourceName: searchWords}).then(res => {
|
|
306
|
+ this.tableData = []
|
|
307
|
+ res.data.records.map((item, index) => {
|
|
308
|
+ const newItem = {...item}
|
|
309
|
+ newItem.applyTypeText = this.getApplyTypeText(item.applyType)
|
|
310
|
+ this.tableData.push(newItem)
|
|
311
|
+ })
|
|
312
|
+ this.total = res.data.total
|
|
313
|
+ })
|
|
314
|
+ },
|
|
315
|
+ getTableData2() {
|
|
316
|
+ api.applyList({pageNum: this.pageNum2, pageSize:this.pageSize2, resourceName: this.searchWords2}).then(res => {
|
|
317
|
+ this.tableData2 = res.data.data
|
|
318
|
+ this.total2 = res.data.total
|
|
319
|
+ })
|
|
320
|
+ },
|
|
321
|
+
|
|
322
|
+ getTableData3() {
|
|
323
|
+ api.applyList({pageNum: this.pageNum3, pageSize:this.pageSize3, resourceName: this.searchWords3}).then(res => {
|
|
324
|
+ this.tableData3 = res.data.data
|
|
325
|
+ this.total3 = res.data.total
|
|
326
|
+ })
|
|
327
|
+ },
|
|
328
|
+
|
|
329
|
+ getTableData4() {
|
|
330
|
+ api.applyList({pageNum: this.pageNum4, pageSize:this.pageSize4, resourceName: this.searchWords4}).then(res => {
|
|
331
|
+ this.tableData4 = res.data.data
|
|
332
|
+ this.total4 = res.data.total
|
|
333
|
+ })
|
|
334
|
+ },
|
|
335
|
+
|
|
336
|
+ getTableData5() {
|
|
337
|
+ api.applyList({pageNum: this.pageNum5, pageSize:this.pageSize5, resourceName: this.searchWords5}).then(res => {
|
|
338
|
+ this.tableData5 = res.data.data
|
|
339
|
+ this.total5 = res.data.total
|
|
340
|
+ })
|
|
341
|
+ },
|
|
342
|
+
|
|
343
|
+ getTableData6() {
|
|
344
|
+ api.applyList({pageNum: this.pageNum6, pageSize:this.pageSize6, resourceName: this.searchWords6}).then(res => {
|
|
345
|
+ this.tableData6 = res.data.data
|
|
346
|
+ this.total6 = res.data.total
|
|
347
|
+ })
|
|
348
|
+ },
|
|
349
|
+
|
|
350
|
+ getTableData7() {
|
|
351
|
+ api.applyList({pageNum: this.pageNum7, pageSize:this.pageSize7, resourceName: this.searchWords7}).then(res => {
|
|
352
|
+ this.tableData7 = res.data.data
|
|
353
|
+ this.total7 = res.data.total
|
|
354
|
+ })
|
|
355
|
+ },
|
|
356
|
+
|
|
357
|
+ getApplyTypeText(val) {
|
|
358
|
+ if (!val){
|
|
359
|
+ return '未申请'
|
135
|
360
|
}
|
|
361
|
+ const textMap = {
|
|
362
|
+ 1: '待审批',
|
|
363
|
+ 2: '审批通过',
|
|
364
|
+ 3: '审批驳回'
|
|
365
|
+ }
|
|
366
|
+ return textMap[val]
|
|
367
|
+ },
|
|
368
|
+ handleSearch() {
|
|
369
|
+ this.pageNum = 1
|
|
370
|
+ this.getTableData()
|
136
|
371
|
}
|
|
372
|
+ }
|
137
|
373
|
}
|
138
|
374
|
</script>
|
139
|
375
|
<style lang="scss" scoped>
|
|
@@ -148,19 +384,21 @@ export default {
|
148
|
384
|
text-align: right;
|
149
|
385
|
}
|
150
|
386
|
.search-card{
|
|
387
|
+ font-size: 24px;
|
|
388
|
+ font-weight: bold;
|
|
389
|
+ color: #3498db;
|
151
|
390
|
margin-bottom: 20px;
|
152
|
|
- text-align: center;
|
153
|
391
|
.input-wrapper{
|
154
|
|
- width: 36%;
|
|
392
|
+ width: 36%;
|
155
|
393
|
}
|
156
|
394
|
}
|
157
|
395
|
}
|
158
|
396
|
.audit-dialog{
|
159
|
|
- .mg-bt{
|
160
|
|
- margin-bottom: 24px;
|
161
|
|
- }
|
162
|
|
- .label{
|
163
|
|
- text-align: right;
|
164
|
|
- }
|
|
397
|
+ .mg-bt{
|
|
398
|
+ margin-bottom: 24px;
|
|
399
|
+ }
|
|
400
|
+ .label{
|
|
401
|
+ text-align: right;
|
|
402
|
+ }
|
165
|
403
|
}
|
166
|
404
|
</style>
|