'123'
This commit is contained in:
parent
3d8e2edc86
commit
1a10f18a5d
|
@ -66,6 +66,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="userName != null and userName != ''">
|
||||
AND u.user_name like concat('%', #{userName}, '%')
|
||||
</if>
|
||||
<if test="nickName != null and nickName != ''">
|
||||
AND u.nick_name like concat('%', #{nickName}, '%')
|
||||
</if>
|
||||
<if test="status != null and status != ''">
|
||||
AND u.status = #{status}
|
||||
</if>
|
||||
|
|
|
@ -6,8 +6,7 @@
|
|||
:width="width || '900px'"
|
||||
:height="height || '650px'"
|
||||
:before-close="handleClose"
|
||||
append-to-body
|
||||
>
|
||||
append-to-body>
|
||||
|
||||
<div class="selectBox">
|
||||
<div class="bottomBox" v-show="showSearch">
|
||||
|
@ -44,9 +43,6 @@
|
|||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
|
||||
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="topBox">
|
||||
|
@ -313,7 +309,7 @@
|
|||
getList() {
|
||||
listUser(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
||||
this.userList = response.rows;
|
||||
// console.log(this.userList);
|
||||
console.log(this.userList);
|
||||
}
|
||||
);
|
||||
},
|
||||
|
@ -398,7 +394,6 @@
|
|||
.topBox {
|
||||
width:100%;
|
||||
display: flex;
|
||||
margin-top:10px;
|
||||
.leftBox {
|
||||
width:280px;
|
||||
height: 400px;
|
||||
|
@ -435,7 +430,7 @@
|
|||
.bottomBox {
|
||||
margin-top:15px;
|
||||
width:100%;
|
||||
height:75px;
|
||||
// height:75px;
|
||||
// border: 1px solid #DCDFE6;
|
||||
// -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04);
|
||||
// box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 0 6px 0 rgba(0, 0, 0, 0.04);
|
||||
|
|
Loading…
Reference in New Issue