@@ -426,6 +439,7 @@
show_txl: '',
show_mobile: '',
auto_schoolmate: '',
+ free_enter_schoolmate: 0,
is_chart:'',
qun_image_id: '',
image_id: '',
@@ -774,6 +788,7 @@
this.form.show_txl = res.show_txl === 0 ? 0 : 1
this.form.show_mobile = res.show_mobile ? res.show_mobile : 0
this.form.auto_schoolmate = res.auto_schoolmate ? res.auto_schoolmate : 0
+ this.form.free_enter_schoolmate = res.free_enter_schoolmate ? res.free_enter_schoolmate : 0
this.form.is_chart = res.is_chart ? res.is_chart : 0
this.showTinymce = true
})
@@ -871,6 +886,7 @@
show_txl: '',
show_mobile: '',
auto_schoolmate: '',
+ free_enter_schoolmate: 0,
is_chart:'',
qun_image_id: '',
image_id: '',
@@ -900,6 +916,7 @@
::v-deep .is_fee,
::v-deep .show_txl,
::v-deep .show_mobile,
+ ::v-deep .free_enter_schoolmate
{
flex-basis: 25%;
}
diff --git a/src/views/student/index.vue b/src/views/student/index.vue
index 20b1319..096516e 100644
--- a/src/views/student/index.vue
+++ b/src/views/student/index.vue
@@ -741,6 +741,10 @@
} else {
_export[item.field] = item.name
+ if (item.field === 'company_name') {
+ _export['company.company_name'] = '企查查名称'
+ _export['company.credit_code'] = '统一社会信用代码'
+ }
}
})
diff --git a/src/views/student/schoolmateCompany.vue b/src/views/student/schoolmateCompany.vue
index c5d5b3d..8e2a29d 100644
--- a/src/views/student/schoolmateCompany.vue
+++ b/src/views/student/schoolmateCompany.vue
@@ -48,6 +48,14 @@
+
+
+
+
+
+
+
+
@@ -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