BUG 31152
This commit is contained in:
@@ -5,8 +5,7 @@
|
||||
<el-button type="primary" icon="iconfont iconEdit" @click="$router.push({hash:'#makeup',query:{oid}})">补录</el-button>
|
||||
</template>
|
||||
<template #right>
|
||||
<el-input size="small" placeholder="请输入届次" v-model="search.name" clearable
|
||||
v-throttle="() => {page.current = 1, getList()}"/>
|
||||
<el-input size="small" placeholder="请输入届次" v-model="search.sessionTime" clearable @change="getList"/>
|
||||
</template>
|
||||
</ai-search-bar>
|
||||
<ai-table :tableData="tableData" :col-configs="colConfigs" :isShowPagination="false" @getList="getList">
|
||||
@@ -30,9 +29,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
search: {
|
||||
name: '',
|
||||
},
|
||||
search: {sessionTime: null},
|
||||
tableData: []
|
||||
}
|
||||
},
|
||||
@@ -75,6 +72,7 @@ export default {
|
||||
getList() {
|
||||
const {oid: organizationId} = this
|
||||
organizationId && this.instance.post("/app/apporganizationgeneralelection/list", null, {
|
||||
throttle: 500,
|
||||
params: {...this.search, organizationId}
|
||||
}).then(res => {
|
||||
if (res?.data) {
|
||||
|
||||
Reference in New Issue
Block a user