RuoYi/ruoyi-admin/src/main/resources/templates/busi/person/person.html

142 lines
6.0 KiB
HTML

<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
<head>
<th:block th:include="include :: header('客户公司人员列表')" />
</head>
<body class="gray-bg">
<div class="container-div">
<div class="row">
<div class="col-sm-12 search-collapse">
<form id="formId">
<div class="select-list">
<ul>
<li>
<label>所属公司:</label>
<input id="treeId" name="companyId" type="text" style="display: none;">
<input id="treeName" name="companyName" type="text" readonly="true" onclick="selectCompany()" >
</li>
<li>
<label>姓名:</label>
<input type="text" name="personName"/>
</li>
<li>
<label>手机号码:</label>
<input type="text" name="phonenumber"/>
</li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</a>
</li>
</ul>
</div>
</form>
</div>
<div class="btn-group-sm" id="toolbar" role="group">
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="busi:person:add">
<i class="fa fa-plus"></i> 添加
</a>
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="busi:person:edit">
<i class="fa fa-edit"></i> 修改
</a>
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="busi:person:remove">
<i class="fa fa-remove"></i> 删除
</a>
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="busi:person:export">
<i class="fa fa-download"></i> 导出
</a>
</div>
<div class="col-sm-12 select-table table-striped">
<table id="bootstrap-table"></table>
</div>
</div>
</div>
<th:block th:include="include :: footer" />
<script th:inline="javascript">
var editFlag = [[${@permission.hasPermi('busi:person:edit')}]];
var removeFlag = [[${@permission.hasPermi('busi:person:remove')}]];
var sexDatas = [[${@dict.getType('sys_user_sex')}]];
var roleDatas = [[${@dict.getType('busi_role')}]];
var prefix = ctx + "busi/person";
$(function() {
var options = {
url: prefix + "/list",
createUrl: prefix + "/add",
updateUrl: prefix + "/edit/{id}",
removeUrl: prefix + "/remove",
exportUrl: prefix + "/export",
modalName: "客户公司人员",
columns: [{
checkbox: true
},
{
field: 'id',
title: 'ID主键',
visible: false
},
{
field: 'companyName',
title: '所属公司'
},
{
field: 'personName',
title: '姓名'
},
{
field: 'sex',
title: '性别',
formatter: function(value, row, index) {
return $.table.selectDictLabel(sexDatas, value);
}
},
{
field: 'phonenumber',
title: '手机号码'
},
{
field: 'email',
title: '人员邮箱'
},
{
field: 'role',
title: '角色',
formatter: function(value, row, index) {
return $.table.selectDictLabel(roleDatas, value);
}
},
{
title: '操作',
align: 'center',
formatter: function(value, row, index) {
var actions = [];
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.id + '\')"><i class="fa fa-edit"></i>编辑</a> ');
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.id + '\')"><i class="fa fa-remove"></i>删除</a>');
return actions.join('');
}
}]
};
$.table.init(options);
});
/*选择客户公司*/
function selectCompany() {
var options = {
title: '选择客户公司',
width: "380",
height: "400",
url: ctx + "busi/company/selectCompany/",
callBack: doSubmit
};
$.modal.openOptions(options);
}
function doSubmit(index, layero){
var body = $.modal.getChildFrame(index);
$("#treeId").val(body.find('#treeId').val());
$("#treeName").val(body.find('#treeName').val());
$.modal.close(index);
$.table.search();
}
</script>
</body>
</html>