3f535f30
杨鑫
'初始'
|
1
2
|
<template>
<div style="background-color:#f7f7f7;padding:10px 10px;">
|
b9f23950
wesley88
1
|
3
|
<div class="zhuti" v-if="onaction == '1'">
|
3f535f30
杨鑫
'初始'
|
4
5
6
7
|
<div style="height:58px;line-height:58px;">
<div style="color:#0006"> <span>商家管理</span> <span style="padding:0 5px;">></span> <span
style="color:#000000e6">商家信息管理</span></div>
</div>
|
b9f23950
wesley88
1
|
8
9
10
11
12
|
<!-- 线上 -->
<div>
<!-- 搜索 -->
<div class="formSearch">
<el-form :inline="true" :model="pagequery">
|
9d8bcb26
wesley88
2
|
13
14
|
<el-form-item label="名称">
<el-input v-model="pagequery.name" placeholder="请输入" style="width:168px;" />
|
b9f23950
wesley88
1
|
15
|
</el-form-item>
|
6d7925d7
wesley88
1
|
16
17
18
19
20
21
|
<el-form-item label="手机号">
<el-input v-model="pagequery.phone" placeholder="请输入" style="width:168px;" />
</el-form-item>
<el-form-item label="身份证号">
<el-input v-model="pagequery.idCardNumber" placeholder="请输入" style="width:168px;" />
</el-form-item>
|
b9f23950
wesley88
1
|
22
23
24
25
26
27
28
29
30
|
</el-form>
<div>
<el-button @click="onSubmit" style="background-color: #3F9B6A;color: #fff">查询
</el-button>
<el-button @click="resetting" class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">重置
</el-button>
</div>
|
3f535f30
杨鑫
'初始'
|
31
|
</div>
|
a6cb34d3
wesley88
1
|
32
33
34
35
36
|
<div style="margin-bottom:20px;">
<el-button @click="removeonaction('2')" icon="el-icon-circle-plus-outline"
style="background-color: #3F9B6A;color: #fff;">新增
</el-button>
</div>
|
b9f23950
wesley88
1
|
37
38
39
40
|
<!-- 表格 -->
<el-table :data="tableData"
:header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}">
|
b9f23950
wesley88
1
|
41
|
<el-table-column label="姓名">
|
3f535f30
杨鑫
'初始'
|
42
|
<template slot-scope="scope">
|
b9f23950
wesley88
1
|
43
44
|
{{scope.row.name}}
|
3f535f30
杨鑫
'初始'
|
45
46
|
</template>
</el-table-column>
|
b9f23950
wesley88
1
|
47
48
49
|
<el-table-column label="手机号">
<template slot-scope="scope">
{{scope.row.phone}}
|
8550d958
杨鑫
'最新'
|
50
|
|
b9f23950
wesley88
1
|
51
52
53
54
55
|
</template>
</el-table-column>
<el-table-column label="证件类型">
<template slot-scope="scope">
{{scope.row.idCardType}}
|
8550d958
杨鑫
'最新'
|
56
|
|
b9f23950
wesley88
1
|
57
58
59
60
61
|
</template>
</el-table-column>
<el-table-column label="身份证号">
<template slot-scope="scope">
{{scope.row.idCardNumber}}
|
4373acf5
wesley88
1
|
62
|
|
b9f23950
wesley88
1
|
63
64
|
</template>
</el-table-column>
|
1dbc0b2d
wesley88
1
|
65
|
<!-- <el-table-column label="申请时间">
|
b9f23950
wesley88
1
|
66
67
|
<template slot-scope="scope">
{{scope.row.applyTime}}
|
8550d958
杨鑫
'最新'
|
68
|
|
b9f23950
wesley88
1
|
69
70
71
72
73
74
75
76
|
</template>
</el-table-column>
<el-table-column label="状态">
<template slot-scope="scope">
<span v-if="scope.row.checkState == '1'">待审核</span>
<span v-else-if="scope.row.checkState == '2'">同意</span>
<span v-else-if="scope.row.checkState == '3'">拒绝</span>
</template>
|
1dbc0b2d
wesley88
1
|
77
|
</el-table-column> -->
|
d64cd58f
wesley88
上传验收小程序
|
78
|
<el-table-column label="操作" fixed="right">
|
b9f23950
wesley88
1
|
79
80
|
<template slot-scope="scope">
<div @click="details(scope.row)" class="tableBtn greens">查看</div>
|
a6cb34d3
wesley88
1
|
81
82
|
<div @click="bianji(scope.row)" class="tableBtn greens">编辑</div>
<div @click="delmsg(scope.row.id)" class="tableBtn greens">删除</div>
|
9d8bcb26
wesley88
2
|
83
|
<!-- <div @click="openyujingSet(scope.row)" class="tableBtn greens">审核</div> -->
|
b9f23950
wesley88
1
|
84
85
86
87
88
89
90
91
92
93
|
</template>
</el-table-column>
</el-table>
<div style="display: flex;justify-content: space-between;" class="bom">
<div style="font-size: 14px;">共 <span style="color: #3F9B6A;">{{total}}</span> 项数据</div>
<el-pagination :current-page="pagequery.pageNumber+1" :page-sizes="[10, 20, 50, 100]" :page-size="10"
background small layout="prev, pager, next" :total="total" @size-change="handleSizeChange"
@current-change="handleCurrentChange">
</el-pagination>
</div>
|
8550d958
杨鑫
'最新'
|
94
|
|
b9f23950
wesley88
1
|
95
|
</div>
|
8550d958
杨鑫
'最新'
|
96
|
|
b9f23950
wesley88
1
|
97
|
</div>
|
3f535f30
杨鑫
'初始'
|
98
|
|
4373acf5
wesley88
1
|
99
|
|
8550d958
杨鑫
'最新'
|
100
|
|
8550d958
杨鑫
'最新'
|
101
|
|
8550d958
杨鑫
'最新'
|
102
|
|
8550d958
杨鑫
'最新'
|
103
|
|
a6cb34d3
wesley88
1
|
104
105
|
<el-dialog title="审核" :visible.sync="yujingSet" style="padding: 0;" width="60%" center :close-on-click-modal="false"
:show-close="false" top="20vh">
|
b9f23950
wesley88
1
|
106
107
108
109
110
|
<div>
<div style="margin-bottom: 20px;">
<el-form ref="form" :model="detailsinfo" label-width="120px">
<el-form-item label="审核状态" prop="checkState">
<el-select v-model="detailsinfo.checkState" placeholder="请选择" style="width: 100%;">
|
d64cd58f
wesley88
上传验收小程序
|
111
|
<!-- <el-option label="待审核" value="1"></el-option> -->
|
b9f23950
wesley88
1
|
112
113
114
115
116
|
<el-option label="同意" value="2"></el-option>
<el-option label="拒绝" value="3"></el-option>
</el-select>
</el-form-item>
<el-form-item label="审核意见">
|
a6cb34d3
wesley88
1
|
117
118
|
<el-input maxlength="200" show-word-limit rows="4" v-model="detailsinfo.checkOpinion"
placeholder="请输入审核意见" type="textarea" />
|
b9f23950
wesley88
1
|
119
120
|
</el-form-item>
</el-form>
|
8550d958
杨鑫
'最新'
|
121
|
|
b9f23950
wesley88
1
|
122
123
124
125
126
127
128
129
130
131
|
</div>
<div style="display: flex;justify-content: flex-end;">
<el-button @click="yuclose" class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">返回</el-button>
<el-button @click="yuChenk" style="background-color: #3F9B6A;color: #fff">确定</el-button>
</div>
</div>
</el-dialog>
<div class="zhuti" v-if="onaction == '2'">
<div style="height:58px;line-height:58px;">
|
cfe2752f
杨鑫
最新
|
132
|
<div style="color:#0006"> <span>商家信息管理</span> <span style="padding:0 5px;">></span> <span
|
b9f23950
wesley88
1
|
133
134
|
style="color:#000000e6">新增</span></div>
</div>
|
8550d958
杨鑫
'最新'
|
135
|
|
b9f23950
wesley88
1
|
136
137
|
<div style="padding: 20px 20px 20px 0;">
<add @removeonaction="removeonaction"></add>
|
8550d958
杨鑫
'最新'
|
138
139
|
</div>
</div>
|
b9f23950
wesley88
1
|
140
141
142
143
|
<div class="zhuti" v-if="onaction == '3'">
<div style="height:58px;line-height:58px;">
<div style="color:#0006"> <span>商家信息管理</span> <span style="padding:0 5px;">></span> <span
style="color:#000000e6">查看</span></div>
|
8550d958
杨鑫
'最新'
|
144
|
</div>
|
b9f23950
wesley88
1
|
145
146
147
148
149
150
151
152
153
|
<div>
<merchantInformation :info="detailsinfo" @removeonaction="removeonaction"></merchantInformation>
</div>
<!-- <div>
<el-button class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;margin-top: 20px;"
@click="removeonaction('1')">返回</el-button>
</div> -->
</div>
|
a6cb34d3
wesley88
1
|
154
155
|
<div class="zhuti" v-if="onaction == '4'">
<div style="height:58px;line-height:58px;">
|
cfe2752f
杨鑫
最新
|
156
|
<div style="color:#0006"> <span>商家信息管理</span> <span style="padding:0 5px;">></span> <span
|
a6cb34d3
wesley88
1
|
157
158
159
160
161
162
163
|
style="color:#000000e6">编辑</span></div>
</div>
<div style="padding: 20px 20px 20px 0;">
<add :info="bianinfo" @removeonaction="removeonaction"></add>
</div>
</div>
|
3f535f30
杨鑫
'初始'
|
164
|
|
3f535f30
杨鑫
'初始'
|
165
|
</div>
|
b9f23950
wesley88
1
|
166
167
|
<!-- </div> -->
|
3f535f30
杨鑫
'初始'
|
168
169
170
|
</template>
<script>
|
b9f23950
wesley88
1
|
171
|
import add from '@/components/add/addss.vue'
|
3f535f30
杨鑫
'初始'
|
172
|
import {
|
a6cb34d3
wesley88
1
|
173
174
175
|
cerePlatformMerchant,
cerePlatformMerchantedit,
cerePlatformMerchantdelet
|
b9f23950
wesley88
1
|
176
|
} from '../../../api/newly.js'
|
3f535f30
杨鑫
'初始'
|
177
|
import {
|
b9f23950
wesley88
1
|
178
179
180
181
182
|
cereReminderSet,
cereReminderSetedit
} from '../../../api/commodityLease.js'
import merchantInformation from '../../../components/merchantInformation/index.vue'
import wangEditor from "@/components/editor/index"
|
4373acf5
wesley88
1
|
183
|
export default {
|
4373acf5
wesley88
1
|
184
|
data() {
|
4373acf5
wesley88
1
|
185
|
return {
|
b9f23950
wesley88
1
|
186
|
zhong: {
|
3f535f30
杨鑫
'初始'
|
187
|
|
4373acf5
wesley88
1
|
188
|
},
|
b9f23950
wesley88
1
|
189
190
191
192
193
|
yujingSet: false,
detailsinfo: {},
pagequery: {
pageNumber: 0,
pageSize: 10,
|
a6cb34d3
wesley88
1
|
194
|
checkState: '2',
|
9d8bcb26
wesley88
2
|
195
|
name: '',
|
6d7925d7
wesley88
1
|
196
197
|
idCardNumber:'',
phone:''
|
3f535f30
杨鑫
'初始'
|
198
|
|
4373acf5
wesley88
1
|
199
|
},
|
4373acf5
wesley88
1
|
200
|
tableData: [],
|
b9f23950
wesley88
1
|
201
|
total: 0,
|
9d8bcb26
wesley88
2
|
202
|
onaction: '1',
|
02c2ca01
杨鑫
最新2
|
203
|
info: {},
|
a6cb34d3
wesley88
1
|
204
|
bianinfo: {}
|
4373acf5
wesley88
1
|
205
|
}
|
3f535f30
杨鑫
'初始'
|
206
|
},
|
b9f23950
wesley88
1
|
207
208
209
210
|
components: {
add,
merchantInformation,
wangEditor
|
3f535f30
杨鑫
'初始'
|
211
|
},
|
b9f23950
wesley88
1
|
212
213
|
created() {
this.getAll()
|
4373acf5
wesley88
1
|
214
|
|
b9f23950
wesley88
1
|
215
216
217
|
},
methods: {
calculateDaysUntilExpiration(endDateString) {
|
a6cb34d3
wesley88
1
|
218
219
220
221
222
223
|
const endDate = new Date(endDateString);
const today = new Date();
const timeDifference = endDate - today;
const daysDifference = Math.ceil(timeDifference / (1000 * 60 * 60 * 24));
return daysDifference >= 0 ? daysDifference : '已过期';
},
|
b9f23950
wesley88
1
|
224
225
|
yuclose() {
this.yujingSet = false
|
4373acf5
wesley88
1
|
226
|
},
|
b9f23950
wesley88
1
|
227
228
229
230
231
|
yuChenk() {
console.error(this.detailsinfo)
cerePlatformMerchantedit(this.detailsinfo).then(res => {
console.error(res)
if (res.code == 200) {
|
4373acf5
wesley88
1
|
232
|
this.$message({
|
b9f23950
wesley88
1
|
233
|
message: '处理成功',
|
4373acf5
wesley88
1
|
234
235
|
type: 'success'
})
|
b9f23950
wesley88
1
|
236
237
|
this.yujingSet = false
} else {
|
4373acf5
wesley88
1
|
238
|
this.$message({
|
b9f23950
wesley88
1
|
239
240
|
message: '处理失败',
type: 'error'
|
4373acf5
wesley88
1
|
241
|
})
|
4373acf5
wesley88
1
|
242
|
}
|
4373acf5
wesley88
1
|
243
|
})
|
a6cb34d3
wesley88
1
|
244
|
|
4373acf5
wesley88
1
|
245
|
},
|
b9f23950
wesley88
1
|
246
247
248
249
250
251
252
253
254
|
openyujingSet(row) {
// cereReminderSet({
// reminderType: '1'
// }).then(res => {
// console.error(res)
// this.zhong = res.data
// })
this.detailsinfo = JSON.parse(JSON.stringify(row))
this.yujingSet = true
|
4373acf5
wesley88
1
|
255
|
},
|
b9f23950
wesley88
1
|
256
257
258
|
details(row) {
this.detailsinfo = row
this.onaction = '3'
|
4373acf5
wesley88
1
|
259
|
},
|
a6cb34d3
wesley88
1
|
260
261
262
263
|
bianji(row) {
this.bianinfo = row
this.onaction = '4'
},
|
b9f23950
wesley88
1
|
264
265
|
biangeng(row) {
alert(`合同变更 - 店铺ID: ${row.id}`);
|
4373acf5
wesley88
1
|
266
|
},
|
b9f23950
wesley88
1
|
267
268
269
270
271
|
xuyue(row) {
alert(`合同续约 - 店铺ID: ${row.id}`);
},
zhongzhi(row) {
alert(`合同终止 - 店铺ID: ${row.id}`);
|
4373acf5
wesley88
1
|
272
|
},
|
b9f23950
wesley88
1
|
273
274
275
276
|
async getAll() {
const res = await cerePlatformMerchant(this.pagequery)
this.tableData = res.data.content
this.total = res.data.totalElements
|
4373acf5
wesley88
1
|
277
|
},
|
b9f23950
wesley88
1
|
278
279
280
|
removeonaction(e) {
console.error(e)
this.onaction = e
|
9d8bcb26
wesley88
2
|
281
|
this.onSubmit()
|
4373acf5
wesley88
1
|
282
|
},
|
b9f23950
wesley88
1
|
283
284
285
|
handleCurrentChange(val) {
this.pagequery.pageNumber = val - 1
this.getAll()
|
4373acf5
wesley88
1
|
286
|
},
|
b9f23950
wesley88
1
|
287
288
|
handleSizeChange(val) {
this.pagequery.pageSize = val
|
4373acf5
wesley88
1
|
289
|
},
|
b9f23950
wesley88
1
|
290
291
292
293
294
295
296
297
298
299
|
// 查询按钮
async onSubmit() {
this.pagequery.pageNumber = 0
this.getAll()
},
//重置按钮
resetting() {
this.pagequery = {
pageNumber: 0,
pageSize: 10,
|
a6cb34d3
wesley88
1
|
300
|
checkState: '2',
|
6d7925d7
wesley88
1
|
301
302
303
|
name: '',
idCardNumber:'',
phone:''
|
b9f23950
wesley88
1
|
304
305
|
},
this.getAll()
|
4373acf5
wesley88
1
|
306
|
},
|
a6cb34d3
wesley88
1
|
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
delmsg(ids) {
const h = this.$createElement;
this.$msgbox({
title: '消息',
message: h('p', null, [
h('span', null, '是否删除 '),
]),
showCancelButton: true,
showClose: false,
confirmButtonText: '确定',
cancelButtonText: '取消',
customClass: 'oe-dialog-btn',
beforeClose: (action, instance, done) => {
if (action === 'confirm') {
cerePlatformMerchantdelet({
id: ids
}).then(res => {
this.$message({
message: '删除成功',
type: 'success'
})
this.getAll()
done();
})
} else {
done();
}
}
})
},
|
8550d958
杨鑫
'最新'
|
338
|
}
|
b9f23950
wesley88
1
|
339
|
|
3f535f30
杨鑫
'初始'
|
340
|
}
|
3f535f30
杨鑫
'初始'
|
341
|
</script>
|
b9f23950
wesley88
1
|
342
343
344
|
<style scoped>
.zhuti {
|
a6cb34d3
wesley88
1
|
345
|
padding: 0 20px 20px 20px;
|
b9f23950
wesley88
1
|
346
347
348
349
|
min-height: calc(100vh - 50px - 20px);
background-color: #Fff;
}
|
a6cb34d3
wesley88
1
|
350
351
352
353
354
|
.chengeXia {
border-bottom: 6px solid #3F9B6A;
padding-bottom: 4px;
color: #3F9B6A;
|
b9f23950
wesley88
1
|
355
356
357
358
359
|
}
/deep/ .el-form-item__content {
/* line-height: 0; */
}
|
3f535f30
杨鑫
'初始'
|
360
|
|
a6cb34d3
wesley88
1
|
361
|
|
4373acf5
wesley88
1
|
362
363
|
.formSearch {
|
3f535f30
杨鑫
'初始'
|
364
365
366
367
|
display: flex;
width: 100%;
font-size: 14px;
justify-content: space-between;
|
b9f23950
wesley88
1
|
368
369
|
padding-bottom: 10px;
|
3f535f30
杨鑫
'初始'
|
370
371
|
}
|
4373acf5
wesley88
1
|
372
373
374
375
|
.greens {
color: #3F9B6A;
}
|
b9f23950
wesley88
1
|
376
377
|
/deep/ .el-table__row {
font-size: 14px;
|
a6cb34d3
wesley88
1
|
378
379
|
color: #000000e6;
height: 42px;
|
8550d958
杨鑫
'最新'
|
380
|
}
|
3f535f30
杨鑫
'初始'
|
381
|
|
4373acf5
wesley88
1
|
382
|
.fenye {
|
b9f23950
wesley88
1
|
383
|
margin-top: 20px;
|
4373acf5
wesley88
1
|
384
385
|
display: flex;
justify-content: flex-end;
|
4373acf5
wesley88
1
|
386
387
|
}
|
b9f23950
wesley88
1
|
388
389
|
/deep/ .el-pagination.is-background .el-pager li:not(.disabled).active {
background-color: #3F9B6A;
|
4373acf5
wesley88
1
|
390
391
|
}
|
b9f23950
wesley88
1
|
392
393
394
395
396
397
|
.el-row {
margin-bottom: 20px;
&:last-child {
margin-bottom: 0;
}
|
4373acf5
wesley88
1
|
398
399
|
}
|
b9f23950
wesley88
1
|
400
401
|
.el-col {
border-radius: 4px;
|
4373acf5
wesley88
1
|
402
403
|
}
|
b9f23950
wesley88
1
|
404
405
|
.bg-purple-dark {
background: #99a9bf;
|
4373acf5
wesley88
1
|
406
407
|
}
|
b9f23950
wesley88
1
|
408
409
|
.bg-purple {
background: #d3dce6;
|
4373acf5
wesley88
1
|
410
|
}
|
3f535f30
杨鑫
'初始'
|
411
|
|
b9f23950
wesley88
1
|
412
413
|
.bg-purple-light {
background: #e5e9f2;
|
3f535f30
杨鑫
'初始'
|
414
|
}
|
b9f23950
wesley88
1
|
415
416
417
418
|
.grid-content {
border-radius: 4px;
min-height: 36px;
|
3f535f30
杨鑫
'初始'
|
419
420
|
}
|
b9f23950
wesley88
1
|
421
422
423
|
.row-bg {
padding: 10px 0;
background-color: #f9fafc;
|
3f535f30
杨鑫
'初始'
|
424
425
|
}
|
b9f23950
wesley88
1
|
426
427
428
429
|
/deep/ .bg-purple[data-v-0e3fe4ec] {
background: #fff;
height: 50px;
}
|
a6cb34d3
wesley88
1
|
430
431
|
/deep/ .bg-purple[data-v-3bebae82] {
|
b9f23950
wesley88
1
|
432
433
434
435
|
background: #fff;
height: 50px;
}
|
a6cb34d3
wesley88
1
|
436
|
::v-deep .bg-purple {
|
b9f23950
wesley88
1
|
437
438
439
|
background: #fff;
height: 50px;
}
|
a6cb34d3
wesley88
1
|
440
|
|
b9f23950
wesley88
1
|
441
442
443
|
/deep/ .el-form--label-top .el-form-item__label {
padding: 0;
}
|
a6cb34d3
wesley88
1
|
444
445
446
447
448
|
::v-deep .el-form-item {
margin-bottom: 16px;
}
|
b9f23950
wesley88
1
|
449
450
451
452
453
|
.device-form .el-form-item__label::after {
content: "*";
color: #1A1A1A;
margin-left: 5px;
font-size: 16px;
|
3f535f30
杨鑫
'初始'
|
454
455
|
}
|
3f535f30
杨鑫
'初始'
|
456
|
|
b9f23950
wesley88
1
|
457
458
459
|
::v-deep .el-dialog__wrapper {
.el-dialog__header {
background-color: #FAFAFA;
|
3f535f30
杨鑫
'初始'
|
460
461
|
}
}
|
a6cb34d3
wesley88
1
|
462
463
464
465
466
|
::v-deep .el-input__inner:focus {
border: #3F9B6A 1px solid;
}
|
b9f23950
wesley88
1
|
467
468
469
470
471
472
|
.dialog-footer {
display: flex;
justify-content: flex-end;
border-top: solid rgba(209, 209, 209, 0.2) 2px;
padding-top: 20px;
}
|
a6cb34d3
wesley88
1
|
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
|
::v-deep .el-input__inner:focus {
border: #3F9B6A 1px solid;
}
::v-deep .el-input__inner:hover {
border: #3F9B6A 1px solid;
}
::v-deep .el-select .el-input.is-focus .el-input__inner {
border-color: #3F9B6A
}
::v-deep .btn .el-button:focus,
.el-button:hover {
border: 1px solid #3F9B6A;
}
.el-select-dropdown__item.selected {
|
b9f23950
wesley88
1
|
492
|
color: #3F9B6A;
|
a6cb34d3
wesley88
1
|
493
|
}
|
b9f23950
wesley88
1
|
494
|
|
a6cb34d3
wesley88
1
|
495
|
.el-pagination__sizes .el-input .el-input__inner:hover {
|
b9f23950
wesley88
1
|
496
|
border-color: #3F9B6A;
|
a6cb34d3
wesley88
1
|
497
498
499
|
}
::v-deep .el-dialog__wrapper {
|
b9f23950
wesley88
1
|
500
|
|
a6cb34d3
wesley88
1
|
501
|
.dialog_css {
|
b9f23950
wesley88
1
|
502
|
margin-right: 12px;
|
a6cb34d3
wesley88
1
|
503
504
|
margin-top: 61px !important;
|
b9f23950
wesley88
1
|
505
506
507
508
509
|
.el-dialog__title {
font-size: 16px !important;
font-weight: 600;
color: #000;
}
|
a6cb34d3
wesley88
1
|
510
511
512
513
514
515
516
|
}
.diaslog_zhong {
margin-left: 20%;
margin-top: 61px !important;
}
|
b9f23950
wesley88
1
|
517
|
}
|
a6cb34d3
wesley88
1
|
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
|
::v-deep .diaslog_zhong {
margin-left: 20%;
margin-top: 61px !important;
.el-dialog__header {
background-color: #fff;
border-bottom: 1px solid #EFEFEF;
.el-dialog__title {
font-size: 14px;
color: #000000e6;
}
}
.el-dialog__body {
padding: 10px 20px 30px 20px
}
}
/deep/ .el-table_1_column_8 .hetong {
color: #7DBB9A;
text-decoration: underline;
}
/deep/ .first-column-bg {
|
b9f23950
wesley88
1
|
544
545
|
background-color: #FAFAFA !important;
}
|
3f535f30
杨鑫
'初始'
|
546
|
|
a6cb34d3
wesley88
1
|
547
548
549
|
.el-table tr {
height: 56px;
}
|
3f535f30
杨鑫
'初始'
|
550
|
|
a6cb34d3
wesley88
1
|
551
552
553
554
|
::v-deep .table3 {
.el-table__empty-block {
display: none;
}
|
b9f23950
wesley88
1
|
555
|
}
|
a6cb34d3
wesley88
1
|
556
557
558
559
560
561
562
563
564
565
566
|
::v-deep .textarea {
width: 85%;
.el-textarea__inner {
width: 100%;
}
}
::v-deep .el-button--mini {
padding: 7px 10px;
|
b9f23950
wesley88
1
|
567
|
}
|
a6cb34d3
wesley88
1
|
568
569
|
::v-deep .pass_input {
|
b9f23950
wesley88
1
|
570
|
width: 100%;
|
a6cb34d3
wesley88
1
|
571
|
|
b9f23950
wesley88
1
|
572
|
.el-input__inner {
|
3f535f30
杨鑫
'初始'
|
573
|
border: none;
|
a6cb34d3
wesley88
1
|
574
|
padding: 0;
|
3f535f30
杨鑫
'初始'
|
575
|
}
|
b9f23950
wesley88
1
|
576
|
}
|
3f535f30
杨鑫
'初始'
|
577
|
|
a6cb34d3
wesley88
1
|
578
579
580
581
582
583
584
585
586
587
588
|
::v-deep .pass_select {
width: 100%;
.el-input__inner {
border: none;
padding: 0;
}
.el-icon-arrow-up:before {
content: ''
}
|
3f535f30
杨鑫
'初始'
|
589
|
|
a6cb34d3
wesley88
1
|
590
|
}
|
3f535f30
杨鑫
'初始'
|
591
|
|
a6cb34d3
wesley88
1
|
592
593
594
|
/deep/ .el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell {
background-color: #fff;
}
|
b9f23950
wesley88
1
|
595
596
|
</style>
<style lang="scss" scoped>
|
a6cb34d3
wesley88
1
|
597
598
599
|
::v-deep .bian_css {
.el-dialog__header {
padding: 0px;
|
3f535f30
杨鑫
'初始'
|
600
601
|
}
}
|
a6cb34d3
wesley88
1
|
602
603
604
|
::v-deep .buttonHover:hover {
color: #3f9b6a !important;
|
b9f23950
wesley88
1
|
605
606
607
608
|
border-color: #c5e1d2 !important;
background-color: #ecf5f0 !important;
outline: none;
}
|
a6cb34d3
wesley88
1
|
609
610
611
612
|
::v-deep .el-pagination__total {
position: absolute;
left: 33px;
|
b9f23950
wesley88
1
|
613
|
}
|
3f535f30
杨鑫
'初始'
|
614
|
</style>
|