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