|
@@ -2,7 +2,7 @@
|
|
|
<div class="card-check">
|
|
|
<div style="margin-bottom: 20px;">
|
|
|
<el-button
|
|
|
- v-for="(val, key) in AUDITING_STATUS"
|
|
|
+ v-for="(val, key) in auditingStatus"
|
|
|
:key="key"
|
|
|
:type="key == filter.auditingStatus ? 'primary' : 'default'"
|
|
|
@click="selectAuditStatus(key)"
|
|
@@ -139,6 +139,7 @@ export default {
|
|
|
size: this.GLOBAL.pageSize,
|
|
|
total: 0,
|
|
|
visible: false,
|
|
|
+ auditingStatus: {},
|
|
|
AUDITING_STATUS,
|
|
|
schools: [],
|
|
|
colleges: [],
|
|
@@ -147,6 +148,13 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
+ let auditingStatus = {};
|
|
|
+ Object.keys(AUDITING_STATUS)
|
|
|
+ .filter(key => key !== "9")
|
|
|
+ .map(key => {
|
|
|
+ auditingStatus[key] = AUDITING_STATUS[key];
|
|
|
+ });
|
|
|
+ this.auditingStatus = auditingStatus;
|
|
|
this.getList();
|
|
|
this.getSchoolList();
|
|
|
},
|