切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
朱兆平
about a year ago
提交
d59eb5fca6c85d459f35761b737d8a3d0e58f84a
1 个父辈
c9663eaa
update:
1. 用户界面增加状态查询条件
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
40 行增加
和
12 行删除
src/views/nav1/user.vue
src/views/nav1/user.vue
查看文件 @
d59eb5f
...
...
@@ -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>
...
...
请
注册
或
登录
后发表评论