|
@@ -0,0 +1,171 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="format-detection" content="telephone=no">
|
|
|
+ <th:block th:include="include :: header('医院信息')" />
|
|
|
+ <th:block th:include="include :: layout-latest-css" />
|
|
|
+ <th:block th:include="include :: ztree-css" />
|
|
|
+</head>
|
|
|
+
|
|
|
+<body class="gray-bg">
|
|
|
+<div class="ui-layout-center">
|
|
|
+ <div class="container-div">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-sm-12 search-collapse" >
|
|
|
+ <div class="query-condition-container">
|
|
|
+ <h4 class="query-condition-title">查询条件</h4>
|
|
|
+ <div class="query-buttons">
|
|
|
+ <a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
|
|
+ <a class="btn btn-warning btn-rounded btn-sm" onclick="resetPre()"><i class="fa fa-refresh"></i> 重置</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <form id="SSpglJfspProductinfo-form" class="customize-search-form">
|
|
|
+ <div class="customize-form-group-container">
|
|
|
+
|
|
|
+ <div class="customize-form-group">
|
|
|
+ <label>药师姓名:</label>
|
|
|
+ <input type="text" class="styled-input" placeholder="请输入药师姓名" name="pharmacistName"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="btn-group-sm" id="toolbar" role="group">
|
|
|
+ <a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="system:user:add">
|
|
|
+ <i class="fa fa-plus"></i> 新增
|
|
|
+ </a>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="col-sm-12 select-table table-striped" style="width: 100%; overflow-x: hidden;">
|
|
|
+ <table id="bootstrap-table" class="fixed-layout-table"></table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<th:block th:include="include :: footer" />
|
|
|
+<th:block th:include="include :: layout-latest-js" />
|
|
|
+<th:block th:include="include :: bootstrap-table-fixed-columns-js" />
|
|
|
+<th:block th:include="include :: ztree-js" />
|
|
|
+<script th:inline="javascript">
|
|
|
+ var editFlag = [[${@permission.hasPermi('gxhpz:hospital:edit')}]];
|
|
|
+ var removeFlag = [[${@permission.hasPermi('gxhpz:hospital:remove')}]];
|
|
|
+ var prefix = ctx + "gxhpz/pharmacists";
|
|
|
+ $(function() {
|
|
|
+ var panehHidden = false;
|
|
|
+ if ($(this).width() < 1590) {
|
|
|
+ panehHidden = true;
|
|
|
+ }
|
|
|
+ $('body').layout({ initClosed: panehHidden, west__size: 185, resizeWithWindow: false });
|
|
|
+ // 回到顶部绑定
|
|
|
+ if ($.fn.toTop !== undefined) {
|
|
|
+ var opt = {
|
|
|
+ win:$('.ui-layout-center'),
|
|
|
+ doc:$('.ui-layout-center')
|
|
|
+ };
|
|
|
+ $('#scroll-up').toTop(opt);
|
|
|
+ }
|
|
|
+ queryArchivesList();
|
|
|
+ });
|
|
|
+
|
|
|
+ function queryArchivesList() {
|
|
|
+ var options = {
|
|
|
+ url: prefix + "/pharmacistsList",
|
|
|
+ viewUrl: prefix + "/pharmacistsDetail/{id}",
|
|
|
+ createUrl: prefix + "/add",
|
|
|
+ updateUrl: prefix + "/edit/{id}",
|
|
|
+ removeUrl: prefix + "/remove",
|
|
|
+ /*exportUrl: prefix + "/export",
|
|
|
+ importUrl: prefix + "/importData",
|
|
|
+ importTemplateUrl: prefix + "/importTemplate",*/
|
|
|
+ sortName: "id",
|
|
|
+ sortOrder: "asc",
|
|
|
+ modalName: "药品",
|
|
|
+ fitColumns: true,
|
|
|
+ striped: true,
|
|
|
+ autoRowHeight: true,
|
|
|
+ rowNumbers: true,
|
|
|
+ showFooter:true, //是否显示表格底部区域。
|
|
|
+ clickToSelect: true, //是否启用点击行时选中整行的功能。
|
|
|
+ singleSelect: false, //是否仅允许选择一行
|
|
|
+ fixedColumns: true,
|
|
|
+ //fixedNumber: 3,
|
|
|
+ fixedRightNumber: 1,
|
|
|
+ columns: [
|
|
|
+ { field: 'id', title: '主键', align: 'center', visible: false },
|
|
|
+ { field: 'pharmacistName', title: '药师姓名', align: 'center' },
|
|
|
+ { field: 'position', title: '职位', align: 'center' },
|
|
|
+ { field: 'reviewPassword', title: '审核密码', align: 'center' },
|
|
|
+ { field: 'storeName', title: '所属门店', align: 'center' },
|
|
|
+ { field: 'createBy', title: '创建人', align: 'center' },
|
|
|
+ { field: 'createTime', title: '创建时间', align: 'center' },
|
|
|
+ { field: 'updateBy', title: '更新人', align: 'center' },
|
|
|
+ { field: 'updateTime', title: '更新时间', align: 'center' },
|
|
|
+ {
|
|
|
+ title: '操作',
|
|
|
+ align: 'center',
|
|
|
+ formatter: function(value, row, index) {
|
|
|
+ if (row.id) {
|
|
|
+ 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('');
|
|
|
+ } else {
|
|
|
+ return "";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }]
|
|
|
+ };
|
|
|
+ $.table.init(options);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 自定义重置-表单重置/隐藏框/树节点选择色/搜索 */
|
|
|
+ function resetPre() {
|
|
|
+ resetDate();
|
|
|
+ $("#SSpglJfspProductinfo-form")[0].reset();
|
|
|
+ $.table.search();
|
|
|
+ _refresh();
|
|
|
+ }
|
|
|
+ function edit_page(id){
|
|
|
+ table.set();
|
|
|
+ var url = "/404.html";
|
|
|
+ if ($.common.isNotEmpty(id)) {
|
|
|
+ url = table.options.updateUrl.replace("{id}", id);
|
|
|
+ } else {
|
|
|
+ var id = $.common.isEmpty(table.options.uniqueId) ? $.table.selectFirstColumns() : $.table.selectColumns(table.options.uniqueId);
|
|
|
+ if (id.length == 0) {
|
|
|
+ $.modal.alertWarning("请至少选择一条记录");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ url = table.options.updateUrl.replace("{id}", id);
|
|
|
+ }
|
|
|
+ $.modal.openTab("修改" + table.options.modalName, url + "?editTage=1" );
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 用户状态显示 */
|
|
|
+ function statusTools(row) {
|
|
|
+ if (row.status == 0) {
|
|
|
+ return '<i class=\"fa fa-toggle-off text-info fa-2x\" onclick="enable(\'' + row.id +'\')" style="color: red;"></i> ';
|
|
|
+ } else {
|
|
|
+ return '<i class=\"fa fa-toggle-on text-info fa-2x\" onclick="disable(\'' + row.id+'\')" style="color: green;"></i> ';
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 用户管理-停用 */
|
|
|
+ function disable(id) {
|
|
|
+ $.modal.confirm("确认要停用配置吗?", function() {
|
|
|
+ $.operate.post(prefix + "/changeStatus", { "id": id,"status": 0 });
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 用户管理启用 */
|
|
|
+ function enable(id) {
|
|
|
+ $.modal.confirm("确认要启用配置吗?", function() {
|
|
|
+ $.operate.post(prefix + "/changeStatus", { "id": id, "status": 1 });
|
|
|
+ })
|
|
|
+ }
|
|
|
+</script>
|
|
|
+</body>
|
|
|
+
|
|
|
+</html>
|