|
@@ -18,10 +18,6 @@
|
|
|
type="text"
|
|
|
@keyup.enter.native="pageQueryOrgStudentUserList"
|
|
|
/>
|
|
|
- <span class="search-name">有效</span>
|
|
|
- <el-select v-model="is_valid" class="account-search">
|
|
|
- <el-option v-for="item in validList" :key="item.value" :label="item.label" :value="item.value" />
|
|
|
- </el-select>
|
|
|
<span class="search-name">状态</span>
|
|
|
<el-select v-model="is_audited" class="account-search">
|
|
|
<el-option v-for="item in auditList" :key="item.value" :label="item.label" :value="item.value" />
|
|
@@ -115,21 +111,6 @@ import ExecutiveReport from './ExecutiveReport.vue';
|
|
|
|
|
|
const { page_capacity, cur_page, total_count, list, changePage, changePageSize } = useList();
|
|
|
|
|
|
-const validList = [
|
|
|
- {
|
|
|
- value: '',
|
|
|
- label: '所有'
|
|
|
- },
|
|
|
- {
|
|
|
- value: 'true',
|
|
|
- label: '有效'
|
|
|
- },
|
|
|
- {
|
|
|
- value: 'false',
|
|
|
- label: '无效'
|
|
|
- }
|
|
|
-];
|
|
|
-
|
|
|
const auditList = [
|
|
|
{
|
|
|
value: '',
|
|
@@ -148,7 +129,6 @@ const auditList = [
|
|
|
// 搜索条件
|
|
|
let user_name = ref('');
|
|
|
let user_real_name = ref('');
|
|
|
-let is_valid = ref('');
|
|
|
let is_audited = ref('');
|
|
|
let dateSearch = ref();
|
|
|
|
|
@@ -156,7 +136,7 @@ function pageQueryOrgStudentUserList() {
|
|
|
PageQueryOrgStudentUserList({
|
|
|
user_name: user_name.value,
|
|
|
user_real_name: user_real_name.value,
|
|
|
- is_valid: is_valid.value,
|
|
|
+ is_valid: '',
|
|
|
is_audited: is_audited.value,
|
|
|
page_capacity: page_capacity.value,
|
|
|
cur_page: cur_page.value,
|