This commit is contained in:
yanran200730
2022-11-30 17:14:02 +08:00
parent 4e9be55405
commit dc13def187
2 changed files with 32 additions and 1 deletions

View File

@@ -1,6 +1,28 @@
<template>
<ai-list class="list" isTabs>
<template slot="content">
<ai-search-bar bottomBorder>
<template #left>
<ai-select
v-model="search.status"
clearable
placeholder="请选择审核状态"
:selectList="dict.getDict('integralApplyStatus')"
@change="search.current = 1, getList()">
</ai-select>
</template>
<template #right>
<el-input
v-model="search.createUserName"
size="small"
placeholder="请输入申请人名称"
clearable
v-throttle="() => {search.current = 1, getList()}"
@clear="search.current = 1, search.createUserName = '', getList()"
suffix-icon="iconfont iconSearch">
</el-input>
</template>
</ai-search-bar>
<ai-table
:tableData="tableData"
:col-configs="colConfigs"
@@ -47,7 +69,8 @@
search: {
current: 1,
size: 10,
name: ''
createUserName: '',
status: ''
},
name: '',
info: {},

View File

@@ -239,6 +239,14 @@
height: 80px;
margin-right: 20px;
}
span {
flex: 1;
display: -webkit-box;
overflow: hidden;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
}
.userSelcet {