<!DOCTYPE html>
|
<html>
|
<head>
|
<title>单位管理员-列表</title>
|
<meta charset="UTF-8">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
<script src="../../../js/paramconfig.js"></script>
|
<script type="text/javascript">
|
remoteToLoadCss('BootStrap4/assets/css/style.css');
|
remoteToLoadCss('BootStrap4/expand/css/bootstrap-extract.css');
|
remoteToLoadCss('BootStrap4/expand/plugins/jqgrid/ui.jqgrid-bootstrap.css');
|
remoteToLoadCss('BootStrap4/expand/css/jqGridCommon.css');
|
remoteToLoadJs('BootStrap4/assets/js/jquery.min.js');
|
remoteToLoadJs('BootStrap4/expand/plugins/layer/layer.js');
|
remoteToLoadJs('BootStrap4/assets/js/tether.min.js');
|
remoteToLoadJs('BootStrap4/assets/js/bootstrap.min.js');
|
loadLocalJs('../../../libs/vue.min.js');
|
remoteToLoadJs('BootStrap4/expand/plugins/jqgrid/grid.locale-cn.js');
|
remoteToLoadJs('BootStrap4/expand/plugins/jqgrid/jquery.jqGrid.min.js');
|
loadLocalJs('../../../js/common.js');
|
|
</script>
|
<style>
|
html { overflow-x:hidden; }
|
|
body {
|
background-color: white;
|
padding-bottom: 0;
|
}
|
|
.col-xs-12,
|
.col-sm-12,
|
.col-md-6,
|
.col-lg-4,
|
.col-xl-3{
|
padding-left: 0;
|
padding-right: 0;
|
}
|
|
#del .fa-trash-o:before {
|
content: "";
|
}
|
</style>
|
</head>
|
<body>
|
<div id="rapp" v-cloak>
|
<div v-show="showList">
|
<div class="panel panel-default">
|
<div class="panel-heading">
|
查询区
|
</div>
|
<div class="panel-body SearchBox">
|
<form id="searchForm">
|
<div class="row">
|
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-4 col-xl-3 DivHeight">
|
<label class="control-label">用户名</label>
|
<div class="controls">
|
<input type="text" class="form-control" id="chinesename">
|
</div>
|
</div>
|
</div>
|
<div class="row" style="display:block;">
|
<div style="float: right;padding-right: 0.75em;">
|
<a class="btn btn-primary-outline" @click="query"><i class="fa fa-search"></i> 查询</a>
|
<a class="btn btn-primary-outline" onclick="resetForm('searchForm')"><i class="fa fa-trash-o"></i> 清除</a>
|
</div>
|
</div>
|
</form>
|
</div>
|
</div>
|
<table id="jqGrid"></table>
|
<div id="jqGridPager"></div>
|
</div>
|
<div style="height: 50px;"></div>
|
<div class="form-actions navbar-fixed-bottom" style="z-index: 0;">
|
<div style="float: left;">
|
<button class="btn btn-primary" type="button" onclick="getSelecteds()"><i class="fa fa-check"></i> 确定</button>
|
<button class="btn btn-default" type="button" onclick="getClose()"> 关闭</button>
|
</div>
|
</div>
|
</div>
|
<script src="../../../js/modules/org/unitManager_edit.js"></script>
|
</body>
|
</html>
|