...
|
...
|
@@ -14,17 +14,19 @@ |
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-select v-model="filters.userStatus"
|
|
|
default-first-option
|
|
|
clearable placeholder="请选择" style="width: 225px">
|
|
|
<el-option
|
|
|
v-for="item in userStatusOption"
|
|
|
:key="item.code"
|
|
|
:label="item.label"
|
|
|
:value="item.code"
|
|
|
>
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
<div class="my-text-area">
|
|
|
<div class="el-input-group__prepend prepand">状态</div>
|
|
|
<el-select v-model="filters.userStatus"
|
|
|
clearable placeholder="请选择" style="width: 225px">
|
|
|
<el-option
|
|
|
v-for="item in userStatusOption"
|
|
|
:key="item.code"
|
|
|
:label="item.label"
|
|
|
:value="item.code"
|
|
|
>
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" v-on:click="getUsers" icon="el-icon-search">查询</el-button>
|
...
|
...
|
@@ -265,7 +267,7 @@ |
|
|
filters: {
|
|
|
userName: '',
|
|
|
realName: '',
|
|
|
userStatus: 1
|
|
|
userStatus: undefined
|
|
|
},
|
|
|
treeDefaultProps: {
|
|
|
children: 'children',
|
...
|
...
|
@@ -670,3 +672,29 @@ |
|
|
}
|
|
|
|
|
|
</style>
|
|
|
<style scoped>
|
|
|
.toolbar{
|
|
|
height: 60px;
|
|
|
background-color: white;
|
|
|
/*line-height: 60px;*/
|
|
|
vertical-align: middle;
|
|
|
border-radius: 5px 5px 5px 5px;
|
|
|
padding: 15px 0 0 20px;
|
|
|
box-shadow: 0px 5px 5px #e5e8eb;
|
|
|
}
|
|
|
.my-text-area .prepand{
|
|
|
float: left;
|
|
|
width:89px;
|
|
|
height: 28px;
|
|
|
font-size: 12px;
|
|
|
line-height: 28px;
|
|
|
}
|
|
|
</style>
|
|
|
<style>
|
|
|
.my-text-area .el-textarea__inner{
|
|
|
min-height: 28px;
|
|
|
height: 28px;
|
|
|
border-bottom-left-radius: 0;
|
|
|
border-top-left-radius: 0;
|
|
|
}
|
|
|
</style> |
...
|
...
|
|