|
|
|
@ -704,7 +704,7 @@ export default {
|
|
|
|
|
{ |
|
|
|
|
prop: 'contractStartTime', |
|
|
|
|
label: '合同开始时间', |
|
|
|
|
type: 5, |
|
|
|
|
type: 1, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
@ -714,7 +714,7 @@ export default {
|
|
|
|
|
{ |
|
|
|
|
prop: 'contractEntTime', |
|
|
|
|
label: '合同结束时间', |
|
|
|
|
type: 5, |
|
|
|
|
type: 1, |
|
|
|
|
values: '', |
|
|
|
|
width: '150', |
|
|
|
|
checkarr: [], |
|
|
|
@ -1368,7 +1368,7 @@ export default {
|
|
|
|
|
}) |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
this.$refs.form.resetFields(); |
|
|
|
|
this.form.defaultPaymentMethods = '1'; |
|
|
|
|
this.form.defaultPaymentMethods = '3'; |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
handleAddSon(row) { |
|
|
|
@ -1598,10 +1598,10 @@ export default {
|
|
|
|
|
onLoad(page, params = {}) { |
|
|
|
|
this.loading = true; |
|
|
|
|
// console.log('-=-=', this.query); |
|
|
|
|
if (this.dataShi.length > 0) { |
|
|
|
|
if (this.dataShi?.length) { |
|
|
|
|
// console.log('-=-=', this.dataShi); |
|
|
|
|
this.query.contractStartTime = this.dataShi[0]; |
|
|
|
|
this.query.contractEntTime = this.dataShi[1]; |
|
|
|
|
this.query.startDate = this.dataShi[0]; |
|
|
|
|
this.query.endDate = this.dataShi[1]; |
|
|
|
|
} |
|
|
|
|
if (!!this.query.bladeRegionProvinceId) { |
|
|
|
|
this.query.bladeRegionCityId = this.query.bladeRegionProvinceId[1]; |
|
|
|
@ -1785,4 +1785,16 @@ export default {
|
|
|
|
|
font-weight: bold; |
|
|
|
|
color: var(--el-color-primary); |
|
|
|
|
} |
|
|
|
|
:deep(.header_search){ |
|
|
|
|
display: flex; |
|
|
|
|
flex-wrap: nowrap; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
.el-btn{ |
|
|
|
|
.el-form-item__content{ |
|
|
|
|
|
|
|
|
|
justify-content: flex-end; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|