Blame view

admin-web-master/src/views/shopRental/manage/index.vue 20.1 KB
3f535f30   杨鑫   '初始'
1
  <template>
a6a3878d   杨鑫   最新绿道
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
  	<div style="background-color:#f7f7f7;padding:10px 10px;">
  		<div class="zhuti" v-if="onaction == '1'">
  			<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>
  			<!-- 线上 -->
  			<div>
  				<!-- 搜索 -->
  				<div class="formSearch">
  					<el-form :inline="true" :model="pagequery">
  						<el-form-item label="合同名称">
  							<el-input v-model="pagequery.contractName" placeholder="请输入" style="width:168px;" />
  						</el-form-item>
  						<el-form-item label="合同状态" prop="dataStatus">
  							<el-select v-model="pagequery.dataStatus" clearable placeholder="请选择"
  								style="width: 168px;margin-right: 15px">
  								<el-option label="使用中" value="1"></el-option>
  								<el-option label="往期合同" value="2"></el-option>
  								<el-option label="已终止" value="3"></el-option>
  							</el-select>
  						</el-form-item>
  						<el-form-item label="合同类型" prop="contractType">
  							<el-select v-model="pagequery.contractType" clearable placeholder="请选择"
  								style="width: 168px;margin-right: 15px">
  								<el-option label="商铺合同" value="商铺合同"></el-option>
  								<el-option label="广告位合同" value="广告位合同"></el-option>
  								<el-option label="场地合同" value="场地合同"></el-option>
  							</el-select>
  						</el-form-item>
  					</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>
  				</div>
  				<div style="margin-bottom: 20px;">
  					<el-button @click="removeonaction('2')"
  						style="background-color: #3F9B6A;color: #fff;padding:8px 15px;"
  						icon="el-icon-circle-plus-outline">新增</el-button>
  					<!-- <el-button @click="" style="background-color: #3F9B6A;color: #fff">批量导入</el-button> -->
  				</div>
  				<!-- 表格 -->
  
  				<el-table :data="tableData"
  					:header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}">
  					<el-table-column label="合同名称">
  						<template slot-scope="scope">
  							{{scope.row.contractName}}
  
  						</template>
  					</el-table-column>
  					<el-table-column label="合同金额">
  						<template slot-scope="scope">
  							{{scope.row.contractAmount}}
  
  						</template>
  					</el-table-column>
  					<el-table-column label="签订日期">
  						<template slot-scope="scope">
  							{{scope.row.contractSigningDate}}
  
  						</template>
  					</el-table-column>
  					<el-table-column label="终止日期">
  						<template slot-scope="scope">
  							{{scope.row.contractTerminationDate}}
  
  						</template>
  					</el-table-column>
  					<el-table-column label="姓名">
  						<template slot-scope="scope">
  							{{scope.row.tenantName}}
  
  						</template>
  					</el-table-column>
  					<el-table-column label="联系电话">
  						<template slot-scope="scope">
  							{{scope.row.tenantTelephone}}
  
  						</template>
  					</el-table-column>
  					<el-table-column label="合同类型">
  						<template slot-scope="scope">
  							{{scope.row.contractType}}
  
  						</template>
  					</el-table-column>
  					<el-table-column prop="dataStatus" label="合同状态">
  						<template slot-scope="scope">
  							<span v-if='scope.row.dataStatus == 1'>使用中</span>
  							<span v-else-if='scope.row.dataStatus == 2'>往期合同</span>
  							<span v-else-if='scope.row.dataStatus == 3'>已终止</span>
  							<span v-else-if='scope.row.dataStatus == 4'>待发起</span>
  							<span v-else-if='scope.row.dataStatus == 5'>待审核</span>
  							<span v-else-if='scope.row.dataStatus == 6'>已拒绝</span>
  							<span v-else>-</span>
  						</template>
  					</el-table-column>
  
  					<el-table-column label="操作" min-width="150" fixed="right">
  						<template slot-scope="scope">
  							<div @click="details(scope.row,'1')" class="tableBtn greens">查看</div>
  							<!--  -->
  							<!-- <div v-if='scope.row.dataStatus == 5 && scope.row.isInterior == 1'  @click="details(scope.row,'2')" class="tableBtn greens">审核</div> -->
  							<div v-if='scope.row.dataStatus == 4' @click="details(scope.row,'2')"
  								class="tableBtn greens">审核</div>
  							<!-- <div v-if='scope.row.dataStatus == 4'  @click="remove(scope.row)" class="tableBtn greens">内部审核</div> -->
  							<div v-if='scope.row.dataStatus == 4' @click="openOAitem(scope.row)"
  								class="tableBtn greens">OA审核</div>
  							<div v-if='scope.row.dataStatus == 1' @click="removeinfo(scope.row,'合同变更')"
  								class="tableBtn greens">合同变更</div>
  							<div v-if='scope.row.dataStatus == 1' @click="removeinfo(scope.row,'合同续约')"
  								class="tableBtn greens">合同续约</div>
  							<div v-if='scope.row.dataStatus == 1' @click="removeinfozz(scope.row,'合同终止')"
  								class="tableBtn greens">合同终止</div>
  							<!-- <div @click="handleDelete(scope.row)" class="tableBtn greens">删除</div> -->
  						</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>
  
  			</div>
  
  		</div>
  
  
  
  
  
  
  		<div class="zhuti" v-if="onaction == '2'">
  			<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>
  
  			<div style="padding: 20px 20px 20px 0;">
  				<add :info="formInline" @removeonaction="removeonaction"></add>
  			</div>
  		</div>
  		<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>
  			</div>
  			<div>
  				<busCha :issp="issp" :info="detailsinfo" @removeonaction="removeonaction"></busCha>
  			</div>
  			<!-- <div>
4373acf5   wesley88   1
162
163
164
165
          <el-button class="buttonHover"
            style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;margin-top: 20px;"
            @click="removeonaction('1')">返回</el-button>
        </div> -->
a6a3878d   杨鑫   最新绿道
166
167
168
169
170
171
172
173
174
  		</div>
  		<div class="zhuti" v-if="onaction == '4'">
  			<div style="height:58px;line-height:58px;">
  				<div style="color:#0006"> <span>合同管理</span> <span style="padding:0 5px;">></span> <span
  						style="color:#000000e6">{{contractChangeReason}}</span></div>
  			</div>
  
  			<div style="padding: 20px 20px 20px 0;">
  				<!-- <addremove :info="detailsinfo" :contractChangeReason="contractChangeReason" @removeonaction="removeonaction">
9a707dae   wesley88   1
175
          </addremove> -->
a6a3878d   杨鑫   最新绿道
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
  				<add :info="detailsinfo" :contractChangeReason="contractChangeReason" @removeonaction="removeonaction">
  				</add>
  			</div>
  		</div>
  		<el-dialog :visible.sync="openoa" title="OA" width="25%" append-to-body center :close-on-click-modal="false"
  			:close-on-press-escape="false" :show-close="false">
  			<el-form v-if="openoa" style="padding-right: 50px;padding-top: 20px;" :model="ruleForm" :rules="rulesoa"
  				ref="oaForm" label-width="130px" class="demo-ruleForm">
  				<el-form-item label="审核人" prop="reviewers">
  					<el-select v-model="ruleForm.reviewers" placeholder="请选择" style="width: 100%;">
  						<el-option label="陈阳" value="1858710592190291968"></el-option>
  					</el-select>
  				</el-form-item>
  
  			</el-form>
  			<div style="display: flex; justify-content: flex-end; align-items: center;padding: 20px 50px;">
  				<el-button @click="openoa =false" class="buttonHover"
  					style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">取消</el-button>
  				<el-button @click="OA" style="background-color: #3F9B6A;color: #fff;">确定</el-button>
  			</div>
  		</el-dialog>
  	</div>
3f535f30   杨鑫   '初始'
198
199
200
201
202
  
  
  </template>
  
  <script>
a6a3878d   杨鑫   最新绿道
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
  	import {
  		contractGetAllnew,
  		edit,
  		editById,
  	} from '@/api/manage.js'
  	import {
  		examine,
  		startOa
  	} from '@/api/oa.js'
  	import add from '@/components/add/addht.vue'
  	import addremove from '@/components/add/addremoveht.vue'
  	import busCha from '@/components/buscha/busCha'
  	import {
  		cereContractInformation
  	} from '@/api/commodityLease.js'
  	import {
  		modifyResourceStatus,
  		general
  	} from '@/api/newly.js'
  	import axios from 'axios'
  	export default {
  		data() {
  			return {
  				issp: '1',
  				rulesoa: {
  					reviewers: [{
  						required: true,
  						message: '请选择审核人',
  						trigger: 'blur'
  					}, ],
  				},
  				ruleForm: {
  					reviewers: ""
  				},
  				openoa: false,
  				contractChangeReason: '',
  				detailsinfo: {},
  				pagequery: {
  					// dataStatus:'1',
  					pageNumber: 0,
  					pageSize: 10,
  					contractName: '',
  					contractType: ''
  				},
  				tableData: [],
  				total: 0,
  				onaction: '1',
  				formInline: {},
  				oainfo: {}
  			}
  		},
  		components: {
  			add,
  			busCha,
  			addremove
  		},
  	 created() { 
  		// localStorage.setItem('token','Bearer eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX25hbWUiOiIxODEwODE0Mzk0NSIsImp0aSI6Imx4QTlSam9IRmFhVFBoTl9qRTJkeTcybUFHayIsImNsaWVudF9pZCI6ImNiOGYxNDE2M2QxYzExZWM5NmU4MDBlMDRjMzEwMjUzIiwic2NvcGUiOlsiZ2V0X3VzZXJfaW5mbyJdfQ.dXD3dqoUg5ryH_fKk7LuwVwpsZh7SsyUWH8WO1wbuEfQqCPv7YEZShxGFfgr-pHvVqnhQeFrvmV30Ib4T12luqG7VU-CVe2Q6NjgzGgiM_f-ZtNfhPm-BUFRzpQT-pSe31QTm2N8R-rL5y6kt8HACFSTi8W6q6aMzZ9a6zLuL_3W0MqLEA1Xta6v2bGxfqiNaZ3tvSBOGnrX0NSUPdZvnhL-VH9zx9DFQmjK23drHty4baYQrJN9IW333b6pXQi_P6WhzSABE8FDva2RtplNrHS2ci40R0Cc3KaXkzM1Ac9m9ZKJUaGL7svjVEidlYsLuCAU1ccJvOOCFiRuGztxDQ')
  		 const ids = this.$route.query.ids;
  		 if (ids) {
  		 	let obj ={
  		 		pageNumber: 0,
  		 		pageSize: 10,
  		 		id:ids
  		 	}
  		  contractGetAllnew(obj).then(res=>{
  		 	 this.details(res.data.content[0],'2')
  		  })	
  			}
  
  		this.getAll()
  		},
  		methods: {
  			remove(row) {
  				let that = this
  				this.$confirm('是否确定内部审核吗?', '提示', {
  					confirmButtonText: '确定',
  					cancelButtonText: '取消',
  					type: 'warning'
  				}).then(() => {
  					editById({
  						contractNumber: row.contractNumber,
  						isInterior: '1'
  					}).then(res => {
  						console.error(res)
  						if (res.code == 200) {
  							edit({
  								contractNumber: row.contractNumber,
  								dataStatus: '5',
  							}).then(res1 => {
  								this.$message({
  									message: '处理成功',
  									type: 'success'
  								})
  								console.error(res1)
  								this.resetting()
  							})
  
  						} else {
  							this.$message({
  								message: res.msg,
  								type: 'error'
  							})
  						}
  
  					})
  				})
  			},
  			 getTokenAfterSpace(token) {
  			    const spaceIndex = token.indexOf(' ');
  			    if (spaceIndex!== -1) {
  			        return token.slice(spaceIndex + 1);
  			    }
  			    return token;
  			},
  			openOAitem(row) {
  				this.oainfo = row
  				// this.ruleForm.reviewers = ''
  				// this.openoa = true
  					let that = this
  					this.$confirm('确定是否提交OA?', '提示', {
  						confirmButtonText: '确定',
  						cancelButtonText: '取消',
  						type: 'warning'
  					}).then(() => {
  						let row = this.oainfo
  						 let obj = {
  							 businessKey:row.id,
  							 businessName:row.contractName,
  							 type:1,
  						 }
  						 console.log(obj,'obj')
  						 // return
  						startOa(obj).then(res => {
  							// let data = JSON.parse(res.data)
  							if (res.code == '200') {
  								this.$message({
  									type: 'success',
  									message: '发起成功'
  								})
  								this.resetting()
  							} else {
  								this.$message({
  									type: 'error',
  									message: res.message
  								})
  							}
  						})
  						
  					})
  				
  			},
  			downloadBase64File(base64String, fileName, mimeType) {
  				try {
  					// 将 Base64 字符串解码为二进制数据
  					const byteCharacters = atob(base64String);
  					const byteNumbers = new Array(byteCharacters.length);
  					for (let i = 0; i < byteCharacters.length; i++) {
  						byteNumbers[i] = byteCharacters.charCodeAt(i);
  					}
  					const byteArray = new Uint8Array(byteNumbers);
  
  					// 创建 Blob 对象
  					const blob = new Blob([byteArray], {
  						type: mimeType
  					});
  
  					// 生成下载链接并触发下载
  					const url = window.URL.createObjectURL(blob);
  					const link = document.createElement('a');
  					link.href = url;
  					link.setAttribute('download', fileName); // 设置下载文件名
  					document.body.appendChild(link);
  					link.click();
  
  					// 清理生成的 URL 对象
  					window.URL.revokeObjectURL(url);
  					document.body.removeChild(link);
  
  					console.log('文件下载成功:', fileName);
  				} catch (error) {
  					console.error('文件下载失败:', error);
  				}
  			},
  			async OA() {
  				await this.$refs.oaForm.validate((valid) => {
  
  				})
  
  				if (!this.ruleForm.reviewers) {
  					return
  				}
  				const loading = this.$loading({
  					fullscreen: true
  				})
  				this.openoa = false
  				console.log(this.$baseURL + row.appendicesContract)
  				const response = await axios({
  					method: 'get',
  					url: this.$baseURL + row.appendicesContract, // 文件 URL
  					responseType: 'arraybuffer' // 指定响应类型为二进制数据
  				});
  
  				const buffer = Buffer.from(response.data);
  				const base64Data = buffer.toString('base64');
  				console.log(base64Data);
  				const file = new File([response.data], 'filename.txt', {
  					type: 'text/plain'
  				});
  				let userData = JSON.parse(localStorage.getItem('user'));
  				let fd = new FormData();
  				fd.append('files', file); // 假设 formData 包含文件
  				fd.append('reviewers', this.ruleForm.reviewers);
  				fd.append('fileNames', '合同.docx');
  				fd.append('title', `${row.contractName}审批`);
  				fd.append('contractNumber', row.contractNumber);
  				fd.append('sponsor', userData.user.id);
  				general(fd).then(res => {
  					console.log(res);
  					let data = JSON.parse(res.data)
  					if (data.code == '0') {
  						this.$message({
  							type: 'success',
  							message: '发起成功'
  						})
  						loading.close();
  						this.resetting()
  					} else {
  						this.$message({
  							type: 'error',
  							message: data.message
  						})
  					}
  				})
  
  
  			},
  			gettime() {
  				// 获取当前时间
  				let currentTime = new Date();
  
  				// 获取年份
  				let year = currentTime.getFullYear();
  
  				// 获取月份(注意月份是从0开始计数的,所以需要加1)
  				let month = currentTime.getMonth() + 1;
  
  				// 获取日期
  				let day = currentTime.getDate();
  
  				// 获取小时
  				let hours = currentTime.getHours();
  
  				// 获取分钟
  				let minutes = currentTime.getMinutes();
  
  				// 获取秒数
  				let seconds = currentTime.getSeconds();
  
  				// 获取毫秒数
  				let milliseconds = currentTime.getMilliseconds();
  
  				// 格式化时间为 YYYY-MM-DD
  				let formattedDate = `${year}-${month.toString().padStart(2, '0')}-${day.toString().padStart(2, '0')}`;
  
  				// 格式化时间为 HH:MM:SS
  				let formattedTime =
  					`${hours.toString().padStart(2, '0')}:${minutes.toString().padStart(2, '0')}:${seconds.toString().padStart(2, '0')}`;
  
  				// 格式化时间为 YYYY-MM-DD HH:MM:SS
  				let formattedDateTime = `${formattedDate} ${formattedTime}`;
  				return formattedDateTime
  
  			},
  			removeinfozz(row, e) {
  				let that = this
  				this.$confirm('确定要终止合同吗?', '提示', {
  					confirmButtonText: '确定',
  					cancelButtonText: '取消',
  					type: 'warning'
  				}).then(() => {
  					cereContractInformation({
  						...row,
  						contractChangeReason: e,
  						dataStatus: '3',
  						originalContractCode: row.contractNumber,
  						updateDate: that.gettime(),
  						createDate: that.gettime(),
  						contractChangeTime: that.gettime(),
  						updateUser: localStorage.getItem('roleName')
  					}).then(res => {
  						console.error(res)
  						if (res.code == 200) {
  							this.$message({
  								message: '终止成功',
  								type: 'success'
  							})
  							let c1 = row.shopNumber
  							modifyResourceStatus({
  								resourcesId: c1,
  								status: "0"
  							}).then(res => {
  								console.error(res)
  							})
  							// this.$emit('removeonaction', '1')
  							this.getAll()
  						} else {
  							this.$message({
  								message: res.msg,
  								type: 'error'
  							})
  						}
  
  					})
  				})
  			},
  			details(row, e) {
  				this.issp = e
  				this.detailsinfo = row
  				this.onaction = '3'
  			},
  			removeinfo(row, e) {
  				this.contractChangeReason = e
  				// console.error(this.contractChangeReason)
  				this.detailsinfo = row
  				this.onaction = '4'
  			},
  			async getAll() {
  				const res = await contractGetAllnew(this.pagequery)
  				this.tableData = res.data.content
  				this.total = res.data.totalElements
  			},
  			removeonaction(e) {
  				console.error(e)
  				this.onaction = e
  				this.pagequery.pageNumber = 0
  				this.getAll()
  			},
  			handleCurrentChange(val) {
  				this.pagequery.pageNumber = val - 1
  				this.getAll()
  			},
  			handleSizeChange(val) {
  				this.pagequery.pageSize = val
  			},
  			// 查询按钮
  			async onSubmit() {
  				this.pagequery.pageNumber = 0
  				this.getAll()
  			},
  			//重置按钮
  			resetting() {
  				this.pagequery = {
  						pageNumber: 0,
  						pageSize: 10,
  						dataStatus: '',
  						contractName: '',
  						contractType: ''
  					},
  					this.getAll()
  			},
  		}
  
  	}
3f535f30   杨鑫   '初始'
567
568
569
  </script>
  
  <style scoped>
a6a3878d   杨鑫   最新绿道
570
571
572
  	.el-table {
  		/* height: calc(100vh - 330px); */
  	}
900ab311   李宇   1
573
  
a6a3878d   杨鑫   最新绿道
574
575
576
577
  	.zhuti {
  		padding: 0 20px 20px 20px;
  		min-height: calc(100vh - 50px - 20px);
  		background-color: #Fff;
3f535f30   杨鑫   '初始'
578
  
a6a3878d   杨鑫   最新绿道
579
  	}
3f535f30   杨鑫   '初始'
580
  
a6a3878d   杨鑫   最新绿道
581
582
583
584
585
  	.chengeXia {
  		border-bottom: 6px solid #3F9B6A;
  		padding-bottom: 4px;
  		color: #3F9B6A;
  	}
3f535f30   杨鑫   '初始'
586
  
a6a3878d   杨鑫   最新绿道
587
  	/* /deep/ .el-form-item__content {
3f535f30   杨鑫   '初始'
588
      line-height: 0;
93c8bac5   李宇   1
589
    } */
3f535f30   杨鑫   '初始'
590
  
a6a3878d   杨鑫   最新绿道
591
592
593
594
595
  	.tableBtn {
  		display: inline-block;
  		margin-right: 10px;
  		color: #ACACAC;
  	}
3f535f30   杨鑫   '初始'
596
  
a6a3878d   杨鑫   最新绿道
597
598
599
600
601
602
  	.formSearch {
  		display: flex;
  		width: 100%;
  		font-size: 14px;
  		justify-content: space-between;
  	}
3f535f30   杨鑫   '初始'
603
  
a6a3878d   杨鑫   最新绿道
604
605
606
  	.greens {
  		color: #3F9B6A;
  	}
3f535f30   杨鑫   '初始'
607
  
a6a3878d   杨鑫   最新绿道
608
609
610
611
612
  	/deep/ .el-table__row {
  		font-size: 14px;
  		color: #000000e6;
  		height: 42px;
  	}
3f535f30   杨鑫   '初始'
613
  
a6a3878d   杨鑫   最新绿道
614
615
616
617
618
  	.fenye {
  		margin-top: 20px;
  		display: flex;
  		justify-content: space-between;
  	}
3f535f30   杨鑫   '初始'
619
  
a6a3878d   杨鑫   最新绿道
620
621
622
  	/deep/ .el-pagination.is-background .el-pager li:not(.disabled).active {
  		background-color: #3F9B6A;
  	}
3f535f30   杨鑫   '初始'
623
  
3f535f30   杨鑫   '初始'
624
  
3f535f30   杨鑫   '初始'
625
  
a6a3878d   杨鑫   最新绿道
626
627
628
  	.el-col {
  		border-radius: 4px;
  	}
3f535f30   杨鑫   '初始'
629
  
a6a3878d   杨鑫   最新绿道
630
631
632
  	.bg-purple-dark {
  		background: #99a9bf;
  	}
3f535f30   杨鑫   '初始'
633
  
a6a3878d   杨鑫   最新绿道
634
635
636
  	.bg-purple {
  		background: #d3dce6;
  	}
3f535f30   杨鑫   '初始'
637
  
a6a3878d   杨鑫   最新绿道
638
639
640
  	.bg-purple-light {
  		background: #e5e9f2;
  	}
3f535f30   杨鑫   '初始'
641
  
a6a3878d   杨鑫   最新绿道
642
643
644
645
  	.grid-content {
  		border-radius: 4px;
  		min-height: 36px;
  	}
3f535f30   杨鑫   '初始'
646
  
a6a3878d   杨鑫   最新绿道
647
648
649
650
  	.row-bg {
  		padding: 10px 0;
  		background-color: #f9fafc;
  	}
3f535f30   杨鑫   '初始'
651
  
a6a3878d   杨鑫   最新绿道
652
653
654
655
  	/deep/ .bg-purple[data-v-0e3fe4ec] {
  		background: #fff;
  		height: 50px;
  	}
3f535f30   杨鑫   '初始'
656
  
a6a3878d   杨鑫   最新绿道
657
658
659
660
  	/deep/ .bg-purple[data-v-3bebae82] {
  		background: #fff;
  		height: 50px;
  	}
3f535f30   杨鑫   '初始'
661
  
a6a3878d   杨鑫   最新绿道
662
663
664
665
  	::v-deep .bg-purple {
  		background: #fff;
  		height: 50px;
  	}
3f535f30   杨鑫   '初始'
666
  
a6a3878d   杨鑫   最新绿道
667
668
669
  	/deep/ .el-form--label-top .el-form-item__label {
  		padding: 0;
  	}
3f535f30   杨鑫   '初始'
670
  
a6a3878d   杨鑫   最新绿道
671
672
673
674
675
  	::v-deep .el-dialog__wrapper {
  		.el-dialog__header {
  			background-color: #fff;
  		}
  	}
3f535f30   杨鑫   '初始'
676
  
8550d958   杨鑫   '最新'
677
  
3f535f30   杨鑫   '初始'
678
  
a6a3878d   杨鑫   最新绿道
679
680
681
682
683
684
  	.dialog-footer {
  		display: flex;
  		justify-content: flex-end;
  		border-top: solid rgba(209, 209, 209, 0.2) 2px;
  		padding-top: 20px;
  	}
3f535f30   杨鑫   '初始'
685
  
3f535f30   杨鑫   '初始'
686
  
3f535f30   杨鑫   '初始'
687
  
3f535f30   杨鑫   '初始'
688
  
a6a3878d   杨鑫   最新绿道
689
690
691
  	.el-select-dropdown__item.selected {
  		color: #3F9B6A;
  	}
3f535f30   杨鑫   '初始'
692
  
a6a3878d   杨鑫   最新绿道
693
694
695
  	::v-deep .el-dialog__title {
  		color: #000;
  	}
93c8bac5   李宇   1
696
  
a6a3878d   杨鑫   最新绿道
697
  	::v-deep .el-dialog__wrapper {
3f535f30   杨鑫   '初始'
698
  
a6a3878d   杨鑫   最新绿道
699
700
701
  		.dialog_css {
  			margin-right: 12px;
  			margin-top: 61px !important;
3f535f30   杨鑫   '初始'
702
  
a6a3878d   杨鑫   最新绿道
703
  		}
3f535f30   杨鑫   '初始'
704
  
a6a3878d   杨鑫   最新绿道
705
706
707
708
  		.diaslog_zhong {
  			margin-left: 222px;
  			margin-top: 61px !important;
  		}
3f535f30   杨鑫   '初始'
709
  
a6a3878d   杨鑫   最新绿道
710
  	}
3f535f30   杨鑫   '初始'
711
  
a6a3878d   杨鑫   最新绿道
712
713
714
715
  	/deep/ .el-table_1_column_8 .hetong {
  		color: #7DBB9A;
  		text-decoration: underline;
  	}
3f535f30   杨鑫   '初始'
716
  
a6a3878d   杨鑫   最新绿道
717
718
719
  	/deep/ .first-column-bg {
  		background-color: #FAFAFA !important;
  	}
3f535f30   杨鑫   '初始'
720
  
a6a3878d   杨鑫   最新绿道
721
722
723
  	.el-table tr {
  		height: 56px;
  	}
3f535f30   杨鑫   '初始'
724
  
a6a3878d   杨鑫   最新绿道
725
726
727
728
729
  	::v-deep .table3 {
  		.el-table__empty-block {
  			display: none;
  		}
  	}
3f535f30   杨鑫   '初始'
730
  
a6a3878d   杨鑫   最新绿道
731
732
  	::v-deep .textarea {
  		width: 85%;
3f535f30   杨鑫   '初始'
733
  
a6a3878d   杨鑫   最新绿道
734
735
736
737
  		.el-textarea__inner {
  			width: 100%;
  		}
  	}
3f535f30   杨鑫   '初始'
738
  
a6a3878d   杨鑫   最新绿道
739
740
741
  	::v-deep .el-button--mini {
  		padding: 7px 10px;
  	}
3f535f30   杨鑫   '初始'
742
  
a6a3878d   杨鑫   最新绿道
743
744
  	::v-deep .pass_input {
  		width: 100%;
3f535f30   杨鑫   '初始'
745
  
a6a3878d   杨鑫   最新绿道
746
747
748
749
750
  		.el-input__inner {
  			border: none;
  			padding: 0;
  		}
  	}
3f535f30   杨鑫   '初始'
751
  
a6a3878d   杨鑫   最新绿道
752
753
  	::v-deep .pass_select {
  		width: 100%;
3f535f30   杨鑫   '初始'
754
  
a6a3878d   杨鑫   最新绿道
755
756
757
758
  		.el-input__inner {
  			border: none;
  			padding: 0;
  		}
3f535f30   杨鑫   '初始'
759
  
a6a3878d   杨鑫   最新绿道
760
761
762
  		.el-icon-arrow-up:before {
  			content: ''
  		}
3f535f30   杨鑫   '初始'
763
  
a6a3878d   杨鑫   最新绿道
764
  	}
3f535f30   杨鑫   '初始'
765
  
a6a3878d   杨鑫   最新绿道
766
767
768
  	/deep/ .el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell {
  		background-color: #fff;
  	}
3f535f30   杨鑫   '初始'
769
770
  </style>
  <style lang="scss" scoped>
a6a3878d   杨鑫   最新绿道
771
772
773
774
  	::v-deep .el-dialog__body {
  		padding: 0 0 !important;
  	}
  </style>