900ab311
李宇
1
|
1
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
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
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
|
<template>
<div style="background-color:#f7f7f7;padding:10px 10px;">
<div class="zhuti" v-if="detbox ==false">
<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">
<el-form-item label="合同名称">
<el-input v-model="formSel.cereContractInformation.contractName" placeholder="请输入" style="width:168px;"/>
</el-form-item>
<el-form-item label="乙方名称">
<el-input v-model="formSel.cereContractInformation.tenantName" placeholder="请输入" style="width:168px;"/>
</el-form-item>
<el-form-item label="联系方式">
<el-input v-model="formSel.telephone" placeholder="请输入" style="width:168px;"/>
</el-form-item>
</el-form>
<div>
<el-button plain @click="onSubmit" style="background-color: #3F9B6A;color: #fff">查询
</el-button>
<el-button plain @click="resetting" class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">重置
</el-button>
</div>
</div>
<div>
<el-button @click="yuBtn" style="background-color: #3F9B6A;color: #fff">预警设置
</el-button>
</div>
<!-- 表格 -->
<el-table :data="tableData.slice((currentPage - 1) * pageSize, currentPage * pageSize)"
:header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}">
<el-table-column label="序号" min-width="50">
<template slot-scope="scope">
{{scope.$index + 1}}
</template>
</el-table-column>
<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="150">
<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.leaseType}}
</template>
</el-table-column>
<el-table-column prop="contractStatus" label="合同状态" min-width="150">
<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>
</el-table-column>
<el-table-column prop="maturityDays" label="到期天数" min-width="150">
<template slot-scope="scope">
{{scope.row.cereContractInformation.maturityDays}}
</template>
</el-table-column>
<el-table-column label="操作" min-width="250">
<template slot-scope="scope">
<div @click="details(scope.row)" class="tableBtn greens">查看</div>
<div @click="addbuss(3,scope.row)" class="tableBtn greens">续约</div>
<div @click="addbuss(2,scope.row)" class="tableBtn greens">发送提醒</div>
<div @click="addbuss(4,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-size="pageSize" layout="prev, pager, next,total"
:total="total " @size-change="handleSizeChange" @current-change="handleCurrentChange" />
</div>
</div>
</div>
<!-- 终止续约 -->
<el-dialog title="合同终止" :visible.sync="ggXin" custom-class="diaslog_zhong" style="padding: 0;" width="60%" 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="index == 4?'终止原因':index == 3?'申请原因':'提醒内容'">
<el-input type="textarea" v-model="zhong.reasonApplication" :rows="4"></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(4)" style="background-color: #3F9B6A;color: #fff">确定</el-button>
</div>
</div>
</el-dialog>
<el-dialog title="预警设置" :visible.sync="yujingSet" custom-class="diaslog_zhong" style="padding: 0;" width="60%" 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="合同剩余天数">
<el-input v-model="zhong.lessorName" disabled></el-input>
</el-form-item>
<el-form-item label="提醒内容">
<wang-editor v-model="zhong.zhuangxiu" ref="editor" :height="200"></wang-editor>
</el-form-item>
</el-form>
</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>
<buscha :detbox="detbox" :list="xiangData" @change="change" v-if="detbox"></buscha>
</div>
</template>
<script>
import {
async
} from 'q'
import axios from 'axios'
import {
contractGetAll,
contractDel,
addList,
updateList,
queryById,
cereLeasingById,
cereLeasingEdit,
cereLeasingByPage,
daoqi
} from '../../../api/manage.js'
import wangEditor from "@/components/editor/index"
import buscha from './busCha.vue'
export default {
components: { wangEditor,buscha},
data() {
return {
yujingSet:false,
hetongBox:false,//合同
detbox:false,//详情
leixing:true,//切换
index:1,
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: [],
tableData4: [],
tableData5: [],
formSel: {
cereContractInformation:{
contractName:'',
tenantName:'',
},
telephone:'',
pageNumber: 1,
pageSize: 10,
},
pageindex: {
pageNumber: 1,
pageSize: 10,
},
bianjiBox:1,
chengeTatle:1,
zhong:{
},
detaiList:{},
xiangData:{},
heData:{},
contentStyle:{
width:'20%',
height:'42px',
},
labelStyle:{
width:'150px',
height:'42px',
color:'#000',
},
}
},
created() {
this.getAll()
},
computed: {
},
methods: {
chenge(val){
this.formSel={
cereContractInformation:{
contractName:'',
tenantName:'',
},
telephone:'',
pageNumber: 1,
pageSize: 10,
}
this.leixing = !this.leixing
this.chengeTatle = val
},
yuBtn(){
this.yujingSet = true
this.zhong ={
}
},
yuclose(){
this.yujingSet = false
},
yuChenk(){
this.yujingSet = false
},
async getAll(){
const res = await cereLeasingByPage(this.pageindex)
this.tableData = res.data.content
this.total = res.data.content.length
},
// 新增确定按钮
async addCheck(val) {
this.ggXin = false
},
// 获取时间
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
},
//详情
details(val){
this.xiangData = val
this.detbox = true
},
change(msg){
this.detbox = msg
},
addbuss(val,item) {
this.index = val
this.zhong=item
this.zhong.lessorName = item.cereContractInformation.lessorName
this.zhong.tenantName = item.cereContractInformation.tenantName
this.zhong.contractNumber = item.cereContractInformation.contractNumber
this.zhong.leaseStartDate = item.cereContractInformation.leaseStartDate
this.zhong.tenantTelephone = item.cereContractInformation.tenantTelephone
this.detbox = false
this.ggXin = true
},
handleSizeChange(val) {
this.pageSize = val
},
handleCurrentChange(val) {
this.currentPage = val
},
closeFn(val) {
this.bianjiBox = 1
if(val == 1){
this.ggXin = false
}else{
this.detbox = false
}
},
// 详情编辑
async bianji(){
if( this.bianjiBox == 1){
this.bianjiBox = 2
}else{
this.bianjiBox = 1
let res = await cereLeasingEdit(formList)
this.detbox = false
}
},
//查看合同
lookHetong(val){
this.hetongBox = true
},
// 查询按钮
async onSubmit() {
const res = await cereLeasingByPage(this.formSel)
this.tableData = res.data.content
this.total = res.data.content.length
},
//重置按钮
resetting(){
this.formSel={
cereContractInformation:{
contractName:'',
tenantName:'',
},
telephone:'',
pageNumber: 1,
pageSize: 10,
}
this.getAll()
}
}
}
</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;
}
|