6ee6b0b7
杨鑫
'最新'
|
1
2
3
4
5
6
7
8
9
10
11
12
|
<template>
<div style="background-color:#f7f7f7;padding:10px 10px;">
<div class="zhuti">
<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="formSel">
|
048313b9
杨鑫
'最新'
|
13
14
|
<el-form-item label="承租人名称">
<el-input v-model="formSel.cereContractInformation.tenantName" placeholder="请输入" style="width:168px;" />
|
6ee6b0b7
杨鑫
'最新'
|
15
16
|
</el-form-item>
<el-form-item label="租赁类型">
|
8cb5c17e
杨鑫
'最新1'
|
17
|
<el-select v-model="formSel.leaseType" placeholder="请选择"
|
6ee6b0b7
杨鑫
'最新'
|
18
|
style="width: 168px;margin-right: 15px">
|
048313b9
杨鑫
'最新'
|
19
20
21
|
<el-option label="商铺合同" value="商铺合同" />
<el-option label="场地合同" value="场地合同" />
<el-option label="广告位合同" value="广告位合同" />
|
6ee6b0b7
杨鑫
'最新'
|
22
23
|
</el-select>
</el-form-item>
|
8cb5c17e
杨鑫
'最新1'
|
24
|
<el-form-item label="起租日期">
|
048313b9
杨鑫
'最新'
|
25
|
<el-date-picker style="width:160px;margin-right:5px" v-model="formSel.cereContractInformation.leaseStartDate"
|
8cb5c17e
杨鑫
'最新1'
|
26
27
28
|
value-format="yyyy-M-d" type="daterange" range-separator="-" start-placeholder=""
end-placeholder="" prefix-icon="none" >
</el-date-picker>
|
6ee6b0b7
杨鑫
'最新'
|
29
30
31
32
33
34
35
36
37
38
39
|
</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;">
|
048313b9
杨鑫
'最新'
|
40
41
|
<el-button @click="addList" style="background-color: #3F9B6A;color: #fff">新增
</el-button>
|
a6a3878d
杨鑫
最新绿道
|
42
|
<el-button @click="tuizuSetWit" style="background-color: #3F9B6A;color: #fff">退租设置
|
6ee6b0b7
杨鑫
'最新'
|
43
|
</el-button>
|
8cb5c17e
杨鑫
'最新1'
|
44
45
|
<el-button @click="daochu" style="background-color: #3F9B6A;color: #fff">导出
</el-button>
|
a6a3878d
杨鑫
最新绿道
|
46
|
<el-button @click="dayin" style="background-color: #3F9B6A;color: #fff">打印</el-button>
|
341f183e
杨鑫
'最新'
|
47
|
|
6ee6b0b7
杨鑫
'最新'
|
48
49
50
51
52
|
</div>
<!-- 表格 -->
<el-table :data="tableData.slice((currentPage - 1) * pageSize, currentPage * pageSize)" align="left"
:header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}">
|
8cb5c17e
杨鑫
'最新1'
|
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
|
<el-table-column label="合同编号" min-width="150" >
<template slot-scope="scope">
{{scope.row.cereContractInformation.contractNumber}}
</template>
</el-table-column>
<el-table-column label="合同名称" min-width="200">
<template slot-scope="scope">
{{scope.row.cereContractInformation.contractName}}
</template>
</el-table-column>
<el-table-column label="合同金额" min-width="100">
<template slot-scope="scope">
{{scope.row.cereContractInformation.contractAmount}}
</template>
</el-table-column>
<el-table-column label="签订日期" min-width="150">
<template slot-scope="scope">
{{scope.row.cereContractInformation.contractSigningDate}}
</template>
</el-table-column>
<el-table-column label="起租日期" min-width="300">
<template slot-scope="scope">
{{scope.row.cereContractInformation.leaseStartDate}}
</template>
</el-table-column>
<el-table-column label="出租人名称" min-width="100">
<template slot-scope="scope">
{{scope.row.cereContractInformation.lessorName}}
</template>
</el-table-column>
<el-table-column label="承租人名称" min-width="150">
<template slot-scope="scope">
{{scope.row.cereContractInformation.tenantName}}
</template>
</el-table-column>
<el-table-column label="商铺编号" min-width="150">
<template slot-scope="scope">
{{scope.row.cereContractInformation.shopNumber}}
</template>
</el-table-column>
<el-table-column label="合同类型" min-width="150">
<template slot-scope="scope">
{{scope.row.cereContractInformation.contractType}}
</template>
</el-table-column>
|
048313b9
杨鑫
'最新'
|
106
|
<!-- <el-table-column prop="contractStatus" label="合同状态" min-width="150">
|
8cb5c17e
杨鑫
'最新1'
|
107
108
109
110
111
|
<template slot-scope="scope">
<span v-if='scope.row.cereContractInformation.contractStatus == 1'>使用中</span>
<span v-else-if='scope.row.cereContractInformation.contractStatus == 2'>往期合同</span>
<span v-else-if='scope.row.cereContractInformation.contractStatus == 3'>已终止</span>
</template>
|
048313b9
杨鑫
'最新'
|
112
|
</el-table-column> -->
|
6ee6b0b7
杨鑫
'最新'
|
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
<el-table-column label="操作" min-width="200">
<template slot-scope="scope">
<div @click="details(0,scope.row)" class="tableBtn greens">查看</div>
<div @click="addbuss(scope.row)" class="tableBtn greens">退租</div>
<div @click="tuizhuDan(scope.row)" class="tableBtn greens">生成退租单</div>
</template>
</el-table-column>
</el-table>
<div class="fenye">
<el-pagination :hide-on-single-page='flag' background small :current-page="currentPage"
:page-sizes="[10, 20, 50, 100]" layout="prev, pager, next,total" :total="total "
@size-change="handleSizeChange" @current-change="handleCurrentChange" />
</div>
<!-- 退租申请 -->
<el-dialog title="退租申请" :visible.sync="ggXin" custom-class="diaslog_zhong" style="padding: 0;" width="80%"
class="dialog_css_Xq" center :close-on-click-modal="false" :show-close="false">
<div>
<div style="margin-bottom: 20px;">
<el-form ref="form" :model="zhong" label-width="80px">
<el-form-item label="甲方">
|
8cb5c17e
杨鑫
'最新1'
|
135
|
<el-input v-model="zhong.name" placeholder="请输入" ></el-input>
|
6ee6b0b7
杨鑫
'最新'
|
136
137
|
</el-form-item>
<el-form-item label="乙方">
|
8cb5c17e
杨鑫
'最新1'
|
138
|
<el-input v-model="zhong.yi" placeholder="请输入"></el-input>
|
6ee6b0b7
杨鑫
'最新'
|
139
140
|
</el-form-item>
<el-form-item label="合同编号">
|
8cb5c17e
杨鑫
'最新1'
|
141
|
<el-input v-model="zhong.bqwe" placeholder="请输入" ></el-input>
|
6ee6b0b7
杨鑫
'最新'
|
142
143
|
</el-form-item>
<el-form-item label="起止时间">
|
8cb5c17e
杨鑫
'最新1'
|
144
|
<el-input v-model="zhong.dding" placeholder="请输入"></el-input>
|
6ee6b0b7
杨鑫
'最新'
|
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
205
206
207
208
209
|
</el-form-item>
<el-form-item label="申请人">
<el-input v-model="zhong.shenr" placeholder="请输入" ></el-input>
</el-form-item>
<el-form-item label="联系电话">
<el-input v-model="zhong.tel" placeholder="请输入" ></el-input>
</el-form-item>
<el-form-item label="退租原因">
<el-input type="textarea" v-model="zhong.textarea" :rows="4" placeholder="请输入" ></el-input>
</el-form-item>
</el-form>
</div>
<div style="display: flex;justify-content: flex-end;">
<el-button @click="closeFn(1)" class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">返回</el-button>
<el-button @click="addCheck()" style="background-color: #3F9B6A;color: #fff">确定</el-button>
</div>
</div>
</el-dialog>
</div>
</div>
<!-- 退租设置 -->
<el-dialog title="退租规则设置" :visible.sync="tuizuSet" custom-class="diaslog_zhong" style="padding: 0;" width="80%"
class="dialog_css_Xq" center :close-on-click-modal="false" :show-close="false">
<div style="color: #000;">
<div style="margin-bottom: 20px;">
<div style="margin-bottom: 20px;">当未入驻时退租,收取保证金
<el-select v-model="tuiZuSet.weitui" placeholder="比例" style="width: 70px;margin: 0 10px">
<el-option label="10%" value="10%" />
</el-select>
作为退租押金
</div>
<div style="margin-bottom: 20px;">当已入驻目入驻时间不超过30天时,收取保证金
<el-select v-model="tuiZuSet.yixiao" placeholder="比例" style="width: 70px;margin: 0 10px">
<el-option label="10%" value="10%" />
</el-select>
作为退租押金
</div>
<div style="margin-bottom: 20px;">当入驻时间超过30天日距到期时间大于整体租期的50%时,收取保证金
<el-select v-model="tuiZuSet.yichao1" placeholder="比例" style="width: 70px;margin: 0 10px">
<el-option label="10%" value="10%" />
</el-select>
作为退租押金
</div>
<div style="margin-bottom: 20px;">当入驻时间超过30天日距到期时间小于整体租期的50%时,收取保证金
<el-select v-model="tuiZuSet.yichao2" placeholder="比例" style="width: 70px;margin: 0 10px">
<el-option label="10%" value="10%" />
</el-select>
作为退租押金
</div>
<div style="margin-bottom: 20px;">当距到期时间小于30天时,收取保证金
<el-select v-model="tuiZuSet.daoxiao" placeholder="比例" style="width: 70px;margin: 0 10px">
<el-option label="10%" value="10%" />
</el-select>
作为退租押金
</div>
</div>
<div style="display: flex;justify-content: flex-end;">
|
8cb5c17e
杨鑫
'最新1'
|
210
|
<el-button @click="closeFn(3)" style="background-color: #3F9B6A;color: #fff">提交</el-button>
|
6ee6b0b7
杨鑫
'最新'
|
211
212
213
214
215
216
217
218
219
220
221
222
223
|
<el-button @click="closeFn(3)" class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">取消</el-button>
</div>
</div>
</el-dialog>
<!-- 详情框 -->
<el-dialog :visible.sync="detbox" custom-class='bian_css' style="padding: 0;" width="75%"
:close-on-press-escape="false" center :close-on-click-modal="false" class="dialog_css_Xq" :show-close="false">
<div style="padding:20px;">
<div style="font-size: 14px;padding-bottom: 20px;color: #000;">租赁信息</div>
<div style="margin-bottom: 10px;">
|
8cb5c17e
杨鑫
'最新1'
|
224
225
|
<el-descriptions class="margin-top" :column="3" border :labelStyle="labelStyle"
:contentStyle="contentStyle">
|
6ee6b0b7
杨鑫
'最新'
|
226
227
228
229
|
<el-descriptions-item>
<template slot="label">
租赁人
</template>
|
8cb5c17e
杨鑫
'最新1'
|
230
|
{{xiangData.tenant}}
|
6ee6b0b7
杨鑫
'最新'
|
231
232
233
234
235
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
意向租期
</template>
|
8cb5c17e
杨鑫
'最新1'
|
236
|
{{xiangData.intendedLeaseTerm}}
|
6ee6b0b7
杨鑫
'最新'
|
237
238
239
240
241
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
意向租金
</template>
|
8cb5c17e
杨鑫
'最新1'
|
242
|
{{xiangData.intentionalRent}}
|
6ee6b0b7
杨鑫
'最新'
|
243
244
245
246
247
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
租赁主体
</template>
|
8cb5c17e
杨鑫
'最新1'
|
248
|
{{xiangData.leasingEntity}}
|
6ee6b0b7
杨鑫
'最新'
|
249
250
251
252
253
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
经营者
</template>
|
8cb5c17e
杨鑫
'最新1'
|
254
|
{{xiangData.operator}}
|
6ee6b0b7
杨鑫
'最新'
|
255
256
257
258
259
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
状态
</template>
|
8cb5c17e
杨鑫
'最新1'
|
260
|
{{xiangData.state}}
|
6ee6b0b7
杨鑫
'最新'
|
261
262
263
|
</el-descriptions-item>
</el-descriptions>
</div>
|
8cb5c17e
杨鑫
'最新1'
|
264
|
|
6ee6b0b7
杨鑫
'最新'
|
265
266
|
<div style="font-size: 14px;padding: 20px 0;color: #000;">合同信息</div>
<div>
|
8cb5c17e
杨鑫
'最新1'
|
267
268
|
<el-descriptions class="margin-top" :column="3" border :labelStyle="labelStyle"
:contentStyle="contentStyle">
|
6ee6b0b7
杨鑫
'最新'
|
269
270
271
272
|
<el-descriptions-item>
<template slot="label">
合同编号
</template>
|
8cb5c17e
杨鑫
'最新1'
|
273
|
{{heData.contractNumber}}
|
6ee6b0b7
杨鑫
'最新'
|
274
275
276
277
278
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
标段号
</template>
|
8cb5c17e
杨鑫
'最新1'
|
279
|
{{heData.sectionNumber}}
|
6ee6b0b7
杨鑫
'最新'
|
280
281
282
283
284
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
合同名称
</template>
|
8cb5c17e
杨鑫
'最新1'
|
285
286
|
{{heData.contractName}}
|
6ee6b0b7
杨鑫
'最新'
|
287
288
289
290
291
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
合同金额
</template>
|
8cb5c17e
杨鑫
'最新1'
|
292
293
|
{{heData.contractAmount}}
|
6ee6b0b7
杨鑫
'最新'
|
294
295
296
297
298
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
保证金
</template>
|
8cb5c17e
杨鑫
'最新1'
|
299
300
|
{{heData.earnestMoney}}
|
6ee6b0b7
杨鑫
'最新'
|
301
302
303
304
305
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
合同签订日期
</template>
|
8cb5c17e
杨鑫
'最新1'
|
306
307
|
{{heData.contractSigningDate}}
|
6ee6b0b7
杨鑫
'最新'
|
308
309
310
311
312
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
合同终止日期
</template>
|
8cb5c17e
杨鑫
'最新1'
|
313
314
|
{{heData.contractTerminationDate}}
|
6ee6b0b7
杨鑫
'最新'
|
315
316
317
318
319
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
起租日期
</template>
|
8cb5c17e
杨鑫
'最新1'
|
320
321
|
{{heData.leaseStartDate}}
|
6ee6b0b7
杨鑫
'最新'
|
322
323
324
325
326
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
出租人名称
</template>
|
8cb5c17e
杨鑫
'最新1'
|
327
328
|
{{heData.lessorName}}
|
6ee6b0b7
杨鑫
'最新'
|
329
330
331
332
333
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
联系电话
</template>
|
8cb5c17e
杨鑫
'最新1'
|
334
335
|
{{heData.telephone}}
|
6ee6b0b7
杨鑫
'最新'
|
336
337
338
339
340
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
银行账号
</template>
|
8cb5c17e
杨鑫
'最新1'
|
341
342
|
{{heData.bankAccount}}
|
6ee6b0b7
杨鑫
'最新'
|
343
344
345
346
347
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
承租人名称
</template>
|
8cb5c17e
杨鑫
'最新1'
|
348
349
|
{{heData.tenantName}}
|
6ee6b0b7
杨鑫
'最新'
|
350
|
</el-descriptions-item>
|
8cb5c17e
杨鑫
'最新1'
|
351
|
<el-descriptions-item>
|
6ee6b0b7
杨鑫
'最新'
|
352
353
354
|
<template slot="label">
承租人联系电话
</template>
|
8cb5c17e
杨鑫
'最新1'
|
355
356
|
{{heData.tenantTelephone}}
|
6ee6b0b7
杨鑫
'最新'
|
357
358
359
360
361
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
承租人银行账号
</template>
|
8cb5c17e
杨鑫
'最新1'
|
362
363
|
{{heData.tenantBankAccount}}
|
6ee6b0b7
杨鑫
'最新'
|
364
365
366
367
368
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
商铺编号
</template>
|
8cb5c17e
杨鑫
'最新1'
|
369
370
|
{{heData.shopNumber}}
|
6ee6b0b7
杨鑫
'最新'
|
371
372
373
374
375
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
商铺名称
</template>
|
8cb5c17e
杨鑫
'最新1'
|
376
377
|
{{heData.shopName}}
|
6ee6b0b7
杨鑫
'最新'
|
378
379
380
381
382
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
商铺地址
</template>
|
8cb5c17e
杨鑫
'最新1'
|
383
384
|
{{heData.shopAddress}}
|
6ee6b0b7
杨鑫
'最新'
|
385
386
387
388
389
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
商铺面积
</template>
|
8cb5c17e
杨鑫
'最新1'
|
390
391
|
{{heData.shopArea}}
|
6ee6b0b7
杨鑫
'最新'
|
392
393
394
395
396
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
商品业态
</template>
|
8cb5c17e
杨鑫
'最新1'
|
397
398
|
{{heData.storeFormats}}
|
6ee6b0b7
杨鑫
'最新'
|
399
400
401
402
403
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
经营项目
</template>
|
8cb5c17e
杨鑫
'最新1'
|
404
405
|
{{heData.businessProjects}}
|
6ee6b0b7
杨鑫
'最新'
|
406
407
408
409
410
|
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
合同附件
</template>
|
8cb5c17e
杨鑫
'最新1'
|
411
412
|
{{heData.appendicesContract}}
|
6ee6b0b7
杨鑫
'最新'
|
413
414
415
|
</el-descriptions-item>
</el-descriptions>
</div>
|
6ee6b0b7
杨鑫
'最新'
|
416
|
|
6ee6b0b7
杨鑫
'最新'
|
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
|
<div style="padding-top:20px;display:flex;justify-content: flex-end;">
<el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
@click="closeFn(2)">取消</el-button>
<!-- <el-button @click="addbuss()" style="background-color: #3F9B6A;color: #fff">审批节点</el-button> -->
</div>
</div>
</el-dialog>
<el-dialog :visible.sync="tuizhuDanShow" custom-class='bian_css' style="padding: 0;" width="75%"
:close-on-press-escape="false" center :close-on-click-modal="false" :show-close="false">
<div style="padding:20px;">
<div style="font-size: 14px;padding-bottom: 20px;color: #000;">退租单</div>
|
8cb5c17e
杨鑫
'最新1'
|
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
|
<el-form ref="form" :model="xudan" label-width="120px">
<el-form-item label="退租日期">
<el-input v-model="xudan.tuizhu" disabled ></el-input>
</el-form-item>
<el-form-item label="退租原因">
<el-select v-model="xudan.yuan" placeholder="请选择" style="margin-top:5px;width: 100%;">
<el-option label="正常退租" value="正常退租"></el-option>
</el-select>
</el-form-item>
<el-form-item label="待缴租金">
<el-input v-model="xudan.daijiao" placeholder="请输入"></el-input>
</el-form-item>
<el-form-item label="支付类型">
<el-select v-model="xudan.zhifu" placeholder="请选择" style="margin-top:5px;width: 100%;">
<el-option label="线上支付" value="线上支付"></el-option>
<el-option label="线下支付" value="线下支付"></el-option>
</el-select>
</el-form-item>
<el-form-item label="支付方式说明">
<wang-editor v-model="xudan.zhifushuo" ref="editor" :height="200"></wang-editor>
</el-form-item>
<el-form-item label="退租注意事项">
<wang-editor v-model="xudan.zhuangxiu" ref="editor" :height="200"></wang-editor>
</el-form-item>
<el-form-item label="其他备注信息">
<wang-editor v-model="xudan.noto" ref="editor" :height="200"></wang-editor>
</el-form-item>
</el-form>
|
6ee6b0b7
杨鑫
'最新'
|
461
462
463
464
465
466
467
|
<div style="padding-top:20px;display:flex;justify-content: flex-end;">
<el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
@click="tuizhuDanShow = false">取消</el-button>
|
8cb5c17e
杨鑫
'最新1'
|
468
|
<!-- <el-button @click="addbuss()" style="background-color: #3F9B6A;color: #fff" >保存</el-button> -->
|
6ee6b0b7
杨鑫
'最新'
|
469
470
471
472
473
474
475
476
|
<el-button @click="yulan =true" style="background-color: #3F9B6A;color: #fff" >预览</el-button>
</div>
</div>
<el-dialog :visible.sync="yulan" custom-class="actSpye_dialog" style="padding: 0;" width="50%" center :close-on-click-modal="false" append-to-body>
<div style="padding:20px 0">
<div class="form-container" ref="contentToConvert" style="background-color:#fff;">
|
8cb5c17e
杨鑫
'最新1'
|
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
|
<div class="form-header">退租单</div>
<div class="form-group">
<label for="partyA">退租日期:</label>
<input type="text" id="partyA" disabled v-model="xudan.tuizhu">
</div>
<div class="form-group">
<label for="partyB">退租原因:</label>
<input type="text" id="partyB" v-model="xudan.yuan" disabled>
</div>
<div class="form-group">
<label for="partyB">待缴租金:</label>
<input type="text" id="partyB" v-model="xudan.daijiao" disabled>
</div>
<div class="form-group">
<label for="partyB">支付类型:</label>
<input type="text" id="partyB" v-model="xudan.zhifu" disabled>
</div>
<div class="form-group">
<label for="renovationRules">支付方式说明:</label>
<div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="xudan.zhifushuo"></div>
</div>
<div class="form-group">
<label for="renovationRules">退租注意事项:</label>
<div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="xudan.zhuangxiu"></div>
</div>
<div class="form-group">
<label for="remarks">其他备注信息:</label>
<div style="padding:20px;width:100%;border: 1px solid #ccc;" v-html="xudan.noto"></div>
</div>
|
6ee6b0b7
杨鑫
'最新'
|
506
|
|
6ee6b0b7
杨鑫
'最新'
|
507
|
</div>
|
6ee6b0b7
杨鑫
'最新'
|
508
509
|
<div style="justify-content:flex-end;margin:20px 20px 0 0;display:flex;">
<el-button @click="downloadPdf" style="background-color: #3F9B6A;color: #fff">下载</el-button>
|
341f183e
杨鑫
'最新'
|
510
|
|
6ee6b0b7
杨鑫
'最新'
|
511
512
513
514
515
|
</div>
</div>
</el-dialog>
</el-dialog>
|
048313b9
杨鑫
'最新'
|
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
|
<el-dialog :visible.sync="addListShow" custom-class='bian_css' style="padding: 0;" width="50%"
:close-on-press-escape="false" center :close-on-click-modal="false" class="dialog_css_Xq" :show-close="false">
<div style="padding:20px;">
<div style="font-size: 14px;padding-bottom: 20px;color: #000;">选择退租合同</div>
<div>
<el-select v-model="heIds" filterable placeholder="请选择">
<el-option
v-for="item in heList"
:key="item.id"
:label="item.cereContractInformation.contractName"
:value="item.id">
</el-option>
</el-select>
</div>
<div style="padding-top:20px;display:flex;justify-content: flex-end;">
<el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
@click="addListShow =false">取消</el-button>
<el-button @click="addListCheck" style="background-color: #3F9B6A;color: #fff">确定</el-button>
</div>
</div>
</el-dialog>
|
6ee6b0b7
杨鑫
'最新'
|
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
|
</div>
</template>
<script>
import {
async
} from 'q'
import axios from 'axios'
import {
contractGetAll,
contractDel,
updateList,
queryById,
|
341f183e
杨鑫
'最新'
|
556
|
pdfManagementOfFinalAccountsForRentals,
|
6ee6b0b7
杨鑫
'最新'
|
557
558
559
560
561
|
cereLeasingEdit
} from '../../../api/manage.js'
import {
rentalGetAll,
rentalDel,
|
8cb5c17e
杨鑫
'最新1'
|
562
563
|
rentalAdd,
excelManagementOfFinalAccountsForRentals
|
6ee6b0b7
杨鑫
'最新'
|
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
|
} from '../../../api/rentalMan.js'
import {
businessListGetAll,
businessListSave,
businessListGetById,
businessListUpdate,
businessListStart,
delBusinessById
} from '@/api/business'
import html2canvas from 'html2canvas'
import jsPDF from 'jspdf'
import wangEditor from "@/components/editor/index"
export default {
components: { wangEditor},
data() {
return {
hetongBox: false, //合同
detbox: false, //详情
leixing: true, //切换
tuizuSet: false, //退租设置
index: 0,
currentPage: 1,
total: 100,
flag: false,
pageSize: 10,
ggXin: false,
formInline: {
contractNumber: '',
sectionNumber: '',
contractName: '',
contractAmount: '',
earnestMoney: '',
contractSigningDate: '',
contractTerminationDate: '',
leaseStartDate: '',
lessorName: '',
telephone: '',
bankAccount: '',
tenantName: '',
tenantTelephone: '',
tenantBankAccount: '',
shopNumber: '',
shopName: '',
shopAddress: '',
shopArea: '',
storeFormats: '',
businessProjects: '',
appendicesContract: '',
},
tableData: [],
|
8cb5c17e
杨鑫
'最新1'
|
614
|
leaseStartDate:[],
|
6ee6b0b7
杨鑫
'最新'
|
615
|
formSel: {
|
8cb5c17e
杨鑫
'最新1'
|
616
617
|
leaseType:'',
cereContractInformation:{
|
048313b9
杨鑫
'最新'
|
618
619
|
leaseStartDate:[],
tenantName:''
|
8cb5c17e
杨鑫
'最新1'
|
620
621
622
|
},
pageNumber: 1,
pageSize: 10,
|
cc312afb
杨鑫
'最新'
|
623
|
rentalCondition:2
|
6ee6b0b7
杨鑫
'最新'
|
624
625
626
627
|
},
pageindex: {
pageNumber: 1,
pageSize: 10,
|
cc312afb
杨鑫
'最新'
|
628
|
rentalCondition:2
|
6ee6b0b7
杨鑫
'最新'
|
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
|
},
bianjiBox: 1,
chengeTatle: 1,
zhong: {
Num: '',
Name: '',
Time: '',
Data: '',
textarea: ''
},
|
8cb5c17e
杨鑫
'最新1'
|
645
646
647
648
649
650
651
652
653
|
xudan:{
tuizhu:'',
yuan:'',
daijiao:'',
zhifu:'',
zhifushuo:'',
zhuangxiu:'',
noto:'',
},
|
6ee6b0b7
杨鑫
'最新'
|
654
655
656
657
658
659
660
661
662
663
|
detaiList: {},
tuiZuSet: {
weitui: '10%',
yixiao: '10%',
yichao1: '10%',
yichao2: '10%',
daoxiao: '10%'
},
tuizhuDanShow: false,
yulan:false,
|
8cb5c17e
杨鑫
'最新1'
|
664
665
666
667
668
669
670
671
672
673
674
|
xiangData:{},
heData:{},
contentStyle:{
width:'20%',
height:'42px',
},
labelStyle:{
width:'150px',
height:'42px',
color:'#000',
},
|
048313b9
杨鑫
'最新'
|
675
676
677
|
addListShow:false,
heIds:'',
heList:[]
|
6ee6b0b7
杨鑫
'最新'
|
678
679
680
681
682
683
684
685
686
687
|
}
},
created() {
this.getAll()
},
computed: {
},
methods: {
async getAll(val) {
|
048313b9
杨鑫
'最新'
|
688
|
|
8cb5c17e
杨鑫
'最新1'
|
689
690
691
|
const res = await rentalGetAll(this.pageindex)
this.total = res.data.numberOfElements
this.tableData = res.data.content
|
b7023175
杨鑫
'最新'
|
692
|
|
048313b9
杨鑫
'最新'
|
693
694
695
696
697
698
699
|
let page={
pageNumber: 1,
pageSize: 10,
rentalCondition:1
}
const list = await rentalGetAll(page)
this.heList = list.data.content
|
b7023175
杨鑫
'最新'
|
700
701
|
|
048313b9
杨鑫
'最新'
|
702
703
704
705
706
707
708
709
710
|
},
addList(){
this.heIds =''
this.addListShow = true
},
async addListCheck(){
await cereLeasingEdit({id:this.heIds,rentalCondition:2})
this.getAll()
this.addListShow = false
|
6ee6b0b7
杨鑫
'最新'
|
711
|
},
|
341f183e
杨鑫
'最新'
|
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
|
async dayin(){
let res = await pdfManagementOfFinalAccountsForRentals(this.pageindex)
if(!res){
return
}
const blob = new Blob([res], { type: 'application/pdf' })
const fileName = '退租决算管理.pdf'
if ('download' in document.createElement('a')) {
// 非IE下载
const elink = document.createElement('a')
elink.download = fileName
elink.style.display = 'none'
elink.href = URL.createObjectURL(blob)
document.body.appendChild(elink)
elink.click()
URL.revokeObjectURL(elink.href) // 释放URL 对象
document.body.removeChild(elink)
} else {
// IE10+下载
navigator.msSaveBlob(blob, fileName)
}
|
6ee6b0b7
杨鑫
'最新'
|
733
|
|
341f183e
杨鑫
'最新'
|
734
735
|
},
|
6ee6b0b7
杨鑫
'最新'
|
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
|
// 退租确定按钮
addCheck(val) {
this.ggXin = false
this.getAll()
},
// 获取时间
currentTime() {
let date = new Date();
let year = date.getFullYear(); //月份从0~11,所以加一
let month = date.getMonth();
let dateArr = [date.getMonth() + 1, date.getDate(), date.getHours()]
for (let i = 0; i < dateArr.length; i++) {
if (dateArr[i] >= 1 && dateArr[i] <= 9) {
dateArr[i] = '0' + dateArr[i]
}
}
let strDate = year + '-' + dateArr[0] + '-' + dateArr[1]
return strDate
},
//详情
async details(index, val) {
this.index = index
|
8cb5c17e
杨鑫
'最新1'
|
759
760
|
this.xiangData = val
this.heData = val.cereContractInformation
|
6ee6b0b7
杨鑫
'最新'
|
761
|
this.detbox = true
|
6ee6b0b7
杨鑫
'最新'
|
762
763
764
765
766
767
768
|
},
addbuss(item) {
this.detbox = false
this.ggXin = true
|
8cb5c17e
杨鑫
'最新1'
|
769
770
771
772
773
774
775
|
this.zhong.lessorName = item.cereContractInformation.lessorName
this.zhong.tenantName = item.cereContractInformation.tenantName
this.zhong.leaseAddress = item.leaseAddress
this.zhong.leaseName = item.leaseName
this.zhong.completionTime = item.completionTime
this.zhong.intendedLeaseTerm = item.intendedLeaseTerm
this.zhong.intentionalRent = item.intentionalRent
|
6ee6b0b7
杨鑫
'最新'
|
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
|
},
handleSizeChange(val) {
this.pageSize = val
},
handleCurrentChange(val) {
this.currentPage = val
},
closeFn(val) {
this.bianjiBox = 1
if (val == 1) {
this.ggXin = false
} else if (val == 2) {
this.detbox = false
} else {
this.tuizuSet = false
}
},
// 详情编辑
async bianji() {
if (this.bianjiBox == 1) {
this.bianjiBox = 2
} else {
this.bianjiBox = 1
let formList = {
// 租赁人
contractNumber: this.detaiList.contractNumber,
id: this.detaiList.id,
tenant: this.ggwName,
intendedLeaseTerm: this.shunNum,
intentionalRent: this.duanK,
leasingEntity: this.tableData1[0].names,
operator: this.tableData1[0].shuns,
state: this.tableData1[0].duans,
// 租赁类型
leaseType: this.zuLei,
leaseCode: this.bianHao,
leaseName: this.oneName,
administrativeRegion: this.tableData1_one[0].names,
leaseAddress: this.tableData1_one[0].shuns,
owner: this.tableData1_one[0].duans,
commander: this.tableData1_one[1].names,
telephone: this.tableData1_one[1].shuns,
range: this.tableData1_one[1].duans,
area: this.tableData1_one[2].names,
completionTime: this.tableData1_one[2].shuns,
houseType: this.tableData1_one[2].duans,
mainFacilities: this.tableData1_one[3].names,
planeFigure: this.tableData1_one[3].shuns,
feeStandards: this.tableData1_one[3].duans,
label: this.tableData1_one[4].names,
promotionVideo: this.tableData1_one[4].shuns,
promotionImage: this.tableData1_one[4].duans,
notes: this.tableData1_one[5].names
}
let res = await cereLeasingEdit(formList)
console.log(res)
this.detbox = false
}
},
//查看合同
lookHetong(val) {
this.hetongBox = true
},
// 查询按钮
async onSubmit() {
|
048313b9
杨鑫
'最新'
|
848
849
850
851
|
let page ={
leaseType:this.formSel.leaseType,
cereContractInformation:{
|
b7023175
杨鑫
'最新'
|
852
|
tenantName:this.formSel.cereContractInformation.tenantName,
|
048313b9
杨鑫
'最新'
|
853
854
855
856
857
858
859
|
leaseStartDate:[],
},
pageNumber: 1,
pageSize: 10,
}
page.cereContractInformation.leaseStartDate = this.formSel.cereContractInformation.leaseStartDate.join(',')
const res = await rentalGetAll(page)
|
8cb5c17e
杨鑫
'最新1'
|
860
861
|
this.total = res.data.numberOfElements
this.tableData = res.data.content
|
b7023175
杨鑫
'最新'
|
862
|
|
6ee6b0b7
杨鑫
'最新'
|
863
864
865
866
|
},
//重置按钮
resetting() {
this.formSel={
|
8cb5c17e
杨鑫
'最新1'
|
867
868
|
leaseType:'',
cereContractInformation:{
|
048313b9
杨鑫
'最新'
|
869
870
|
leaseStartDate:[],
tenantName:''
|
8cb5c17e
杨鑫
'最新1'
|
871
872
873
|
},
pageNumber: 1,
pageSize: 10,
|
cc312afb
杨鑫
'最新'
|
874
|
rentalCondition:2
|
8cb5c17e
杨鑫
'最新1'
|
875
876
877
|
}
this.leaseStartDate = []
this.getAll()
|
6ee6b0b7
杨鑫
'最新'
|
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
|
},
tuizuSetWit() {
this.tuizuSet = true
},
tuizhuDan(item) {
this.tuizhuDanShow = true
},
// 下载
async downloadPdf() {
const content = this.$refs.contentToConvert;
// 使用 html2canvas 将 div 渲染为画布
const canvas = await html2canvas(content);
// 获取画布的图像数据
const imgData = canvas.toDataURL('image/png');
// 创建一个新的 PDF 文档
const pdf = new jsPDF('p', 'mm', 'a4');
// 添加图像到 PDF,第二个参数是图像格式,第三个参数是缩放比例
const imgWidth = 190; // 图像的宽度(mm)
const imgHeight = (canvas.height * imgWidth) / canvas.width; // 保持图像的宽高比
pdf.addImage(imgData, 'PNG', 10, 10, imgWidth, imgHeight); // 10, 10 是图像在 PDF 中的位置(mm)
// 保存 PDF 文件
pdf.save('downloaded.pdf');
},
|
8cb5c17e
杨鑫
'最新1'
|
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
|
async daochu(){
let res = await excelManagementOfFinalAccountsForRentals(this.pageindex)
if(!res){
return
}
const blob = new Blob([res], { type: 'application/vnd.ms-excel' })
const fileName = '退租决算管理列表.xls'
if ('download' in document.createElement('a')) {
// 非IE下载
const elink = document.createElement('a')
elink.download = fileName
elink.style.display = 'none'
elink.href = URL.createObjectURL(blob)
document.body.appendChild(elink)
elink.click()
URL.revokeObjectURL(elink.href) // 释放URL 对象
document.body.removeChild(elink)
} else {
// IE10+下载
navigator.msSaveBlob(blob, fileName)
}
this.$message({
message: '导出成功',
type: 'success'
})
},
|
6ee6b0b7
杨鑫
'最新'
|
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
|
}
}
</script>
<style scoped>
.zhuti {
padding: 0 20px 20px 20px;
min-height: calc(100vh - 50px - 20px);
background-color: #Fff;
}
.chengeXia {
border-bottom: 6px solid #3F9B6A;
padding-bottom: 4px;
color: #3F9B6A;
}
/deep/ .el-form-item__content {
line-height: 0;
}
.tableBtn {
display: inline-block;
margin-right: 10px;
color: #ACACAC;
}
.formSearch {
display: flex;
width: 100%;
font-size: 14px;
justify-content: space-between;
align-items: center;
}
.greens {
color: #3F9B6A;
}
/deep/ .el-table__row {
font-size: 14px;
color: #000000e6;
height: 42px;
}
.fenye {
margin-top: 20px;
display: flex;
justify-content: flex-end;
}
/deep/ .el-pagination.is-background .el-pager li:not(.disabled).active {
background-color: #3F9B6A;
}
.el-row {
margin-bottom: 20px;
&:last-child {
margin-bottom: 0;
}
}
.el-col {
border-radius: 4px;
}
.bg-purple-dark {
background: #99a9bf;
}
.bg-purple {
background: #d3dce6;
}
.bg-purple-light {
background: #e5e9f2;
}
.grid-content {
border-radius: 4px;
min-height: 36px;
}
.row-bg {
padding: 10px 0;
background-color: #f9fafc;
}
/deep/ .bg-purple[data-v-0e3fe4ec] {
background: #fff;
height: 50px;
}
/deep/ .bg-purple[data-v-3bebae82] {
background: #fff;
height: 50px;
}
::v-deep .bg-purple {
background: #fff;
height: 50px;
}
/deep/ .el-form--label-top .el-form-item__label {
padding: 0;
}
.device-form .el-form-item__label::after {
content: "*";
color: #1A1A1A;
margin-left: 5px;
font-size: 14px;
}
::v-deep .el-dialog__wrapper {
.el-dialog__header {
background-color: #FAFAFA;
}
}
::v-deep .el-input__inner:focus {
border: #3F9B6A 1px solid;
}
.dialog-footer {
display: flex;
justify-content: flex-end;
border-top: solid rgba(209, 209, 209, 0.2) 2px;
padding-top: 20px;
}
::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
}
.el-select-dropdown__item.selected {
color: #3F9B6A;
}
.el-pagination__sizes .el-input .el-input__inner:hover {
border-color: #3F9B6A;
}
::v-deep .el-dialog__wrapper {
.dialog_css {
margin-right: 12px;
margin-top: 61px !important;
.el-dialog__title {
font-size: 14px !important;
/* font-weight: 600; */
color: #000;
}
}
.diaslog_zhong {
margin-left: 222px;
margin-top: 61px !important;
}
}
::v-deep .diaslog_zhong {
margin-left: 222px;
margin-top: 61px !important;
.el-dialog__header {
background-color: #FAFAFA;
.el-dialog__title {
color: #000;
font-size: 14px;
}
}
.el-dialog__body {
padding: 10px 20px 30px 20px
}
}
::v-deep .table3 {
.el-table__empty-block {
display: none;
}
}
::v-deep .textarea {
width: 85%;
.el-textarea__inner {
width: 100%;
}
}
::v-deep .pass_input {
width: 100%;
.el-input__inner {
border: none;
padding: 0;
}
}
::v-deep .pass_select {
width: 100%;
.el-input__inner {
border: none;
padding: 0;
}
.el-icon-arrow-up:before {
content: ''
}
}
/deep/ .el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell {
background-color: #fff;
}
.form-container {
max-width: 600px;
margin: 0px auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color:#fff;
}
.form-group {
margin-bottom: 15px;
display:flex;
align-items: center
}
.form-group label {
display: block;
font-weight: bold;
margin-bottom: 5px;
width: 152px;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 8px;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
}
.form-group textarea {
resize: vertical;
}
.form-header {
text-align: center;
margin-bottom: 20px;
font-size: 1.5em;
font-weight: bold;
}
.jianju{
margin-bottom:10px;
}
.titles{
position: relative;
padding-left: 10px;
}
.titles::before{
content: '';
width: 2px;
height: 10px;
background-color: #3F9B6A;
position: absolute;
top: 2px;
left: 0;
}
</style>
<style lang="scss" scoped>
::v-deep .bian_css {
.el-dialog__header {
padding: 0px;
}
}
::v-deep .buttonHover:hover {
color: #3f9b6a !important;
border-color: #c5e1d2 !important;
background-color: #ecf5f0 !important;
outline: none;
}
::v-deep .el-pagination__total {
position: absolute;
left: 33px;
}
</style>
|