人房功能修改。
This commit is contained in:
parent
9a74242547
commit
ecd1969beb
@ -239,6 +239,10 @@
|
|||||||
t1.owner_card LIKE CONCAT('%', #{keywords}, '%')
|
t1.owner_card LIKE CONCAT('%', #{keywords}, '%')
|
||||||
OR
|
OR
|
||||||
t2.card_number LIKE CONCAT('%', #{keywords}, '%')
|
t2.card_number LIKE CONCAT('%', #{keywords}, '%')
|
||||||
|
OR
|
||||||
|
t2.name LIKE CONCAT('%', #{keywords}, '%')
|
||||||
|
OR
|
||||||
|
t2.phone LIKE CONCAT('%', #{keywords}, '%')
|
||||||
)
|
)
|
||||||
</if>
|
</if>
|
||||||
<if test="cityBuildingId != null and cityBuildingId != ''">
|
<if test="cityBuildingId != null and cityBuildingId != ''">
|
||||||
|
@ -57,7 +57,8 @@
|
|||||||
pageName: 'page',
|
pageName: 'page',
|
||||||
limitName: 'rows'
|
limitName: 'rows'
|
||||||
},
|
},
|
||||||
cols: [
|
text: {none: '此人员暂未与房屋进行关联'}
|
||||||
|
,cols: [
|
||||||
[
|
[
|
||||||
{type:'checkbox', fixed: 'left'},
|
{type:'checkbox', fixed: 'left'},
|
||||||
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
||||||
@ -140,9 +141,9 @@
|
|||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{field: 'houseStatus', fixed: 'right', width: 150, title: '租房记录', align:'center',
|
{field: 'houseStatus', fixed: 'right', width: 150, title: '入住人员', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = '<a class="layui-btn layui-btn-xs" lay-event="rentalHis">租住记录</a>';;
|
var rowData = '<a class="layui-btn layui-btn-xs" lay-event="rentalHis">入住人员</a>';;
|
||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -145,9 +145,9 @@
|
|||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{field: 'houseStatus', fixed: 'right', width: 150, title: '租房记录', align:'center',
|
{field: 'houseStatus', fixed: 'right', width: 150, title: '入住人员', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = '<a class="layui-btn layui-btn-xs" lay-event="rentalHis">租住记录</a>';;
|
var rowData = '<a class="layui-btn layui-btn-xs" lay-event="rentalHis">入住人员</a>';;
|
||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -327,9 +327,9 @@
|
|||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{field: 'houseStatus', fixed: 'right', width: 150, title: '租住记录', align:'center',
|
{field: 'houseStatus', fixed: 'right', width: 150, title: '入住人员', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData = '<a class="layui-btn layui-btn-xs" lay-event="rentalHis">租住记录</a>';;
|
var rowData = '<a class="layui-btn layui-btn-xs" lay-event="rentalHis">入住人员</a>';;
|
||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
<input type="text" id="kw"/>
|
<input type="text" id="kw"/>
|
||||||
<button @click="searchData">搜索</button>
|
<button @click="searchData">搜索</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="tip">请输入居民身份证号查询</div>
|
<div class="tip">请输入居民身份证号/姓名/手机号查询</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script type="text/javascript" src="assets/js/vue.min.js"></script>
|
<script type="text/javascript" src="assets/js/vue.min.js"></script>
|
||||||
|
Loading…
Reference in New Issue
Block a user