|
|
|
|
@ -48,6 +48,14 @@
|
|
|
|
|
<div>
|
|
|
|
|
<el-input v-model="select.company_name" placeholder="请输入企业名称" style="width: 200px;"></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<el-select filterable v-model="select.has_credit_code" placeholder="是否有统一信用代码" clearable style="width: 180px;">
|
|
|
|
|
<el-option label="是" :value="1">
|
|
|
|
|
</el-option>
|
|
|
|
|
<el-option label="否" :value="0">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<el-input v-model="select.address" placeholder="请输入企业地址" style="width: 200px;"></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
@ -377,6 +385,7 @@
|
|
|
|
|
return {
|
|
|
|
|
select: {
|
|
|
|
|
company_name: '',
|
|
|
|
|
has_credit_code: '',
|
|
|
|
|
address: '',
|
|
|
|
|
is_yh_invested: '',
|
|
|
|
|
company_tag: '',
|
|
|
|
|
@ -437,6 +446,11 @@
|
|
|
|
|
align: 'left',
|
|
|
|
|
width: 240,
|
|
|
|
|
fixed: 'left'
|
|
|
|
|
}, {
|
|
|
|
|
prop: 'credit_code',
|
|
|
|
|
label: '统一社会信用代码',
|
|
|
|
|
align: 'center',
|
|
|
|
|
width: 200
|
|
|
|
|
}, {
|
|
|
|
|
prop: 'company_tag',
|
|
|
|
|
label: '企业资质',
|
|
|
|
|
@ -547,6 +561,7 @@
|
|
|
|
|
start_year: this.select.start_year || '',
|
|
|
|
|
end_year: this.select.end_year || '',
|
|
|
|
|
address: this.select.address || '',
|
|
|
|
|
has_credit_code: this.select.has_credit_code !== '' && this.select.has_credit_code !== null ? this.select.has_credit_code : '',
|
|
|
|
|
filter: (() => {
|
|
|
|
|
const filter = [{
|
|
|
|
|
key: 'company_name',
|
|
|
|
|
@ -648,6 +663,7 @@
|
|
|
|
|
resetSelect() {
|
|
|
|
|
|
|
|
|
|
this.select.company_name = ''
|
|
|
|
|
this.select.has_credit_code = ''
|
|
|
|
|
this.select.address = ''
|
|
|
|
|
this.select.is_yh_invested = ''
|
|
|
|
|
this.select.company_tag = ''
|
|
|
|
|
@ -727,6 +743,7 @@
|
|
|
|
|
start_year: this.select.start_year || '',
|
|
|
|
|
end_year: this.select.end_year || '',
|
|
|
|
|
address: this.select.address || '',
|
|
|
|
|
has_credit_code: this.select.has_credit_code !== '' && this.select.has_credit_code !== null ? this.select.has_credit_code : '',
|
|
|
|
|
filter: filter
|
|
|
|
|
})
|
|
|
|
|
this.loading = false
|
|
|
|
|
|