bug
This commit is contained in:
@@ -1,6 +1,28 @@
|
|||||||
<template>
|
<template>
|
||||||
<ai-list class="list" isTabs>
|
<ai-list class="list" isTabs>
|
||||||
<template slot="content">
|
<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
|
<ai-table
|
||||||
:tableData="tableData"
|
:tableData="tableData"
|
||||||
:col-configs="colConfigs"
|
:col-configs="colConfigs"
|
||||||
@@ -47,7 +69,8 @@
|
|||||||
search: {
|
search: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 10,
|
size: 10,
|
||||||
name: ''
|
createUserName: '',
|
||||||
|
status: ''
|
||||||
},
|
},
|
||||||
name: '',
|
name: '',
|
||||||
info: {},
|
info: {},
|
||||||
|
|||||||
@@ -239,6 +239,14 @@
|
|||||||
height: 80px;
|
height: 80px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
flex: 1;
|
||||||
|
display: -webkit-box;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.userSelcet {
|
.userSelcet {
|
||||||
|
|||||||
Reference in New Issue
Block a user