357 lines
12 KiB
HTML
357 lines
12 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="zh-cn">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>浏览页面</title>
|
|
<link rel="stylesheet" href="/app/admin/component/pear/css/pear.css" />
|
|
<link rel="stylesheet" href="/app/admin/admin/css/reset.css" />
|
|
</head>
|
|
<body class="pear-container">
|
|
|
|
<!-- 顶部查询表单 -->
|
|
|
|
|
|
<!-- 数据表格 -->
|
|
<div class="layui-card">
|
|
<div class="layui-card-body">
|
|
<table id="data-table" lay-filter="data-table"></table>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- 表格顶部工具栏 -->
|
|
<script type="text/html" id="table-toolbar">
|
|
<button class="pear-btn pear-btn-primary pear-btn-md" lay-event="add" permission="app.admin.opmmwinfodatum.insert">
|
|
<i class="layui-icon layui-icon-add-1"></i>新增
|
|
</button>
|
|
<button class="pear-btn pear-btn-danger pear-btn-md" lay-event="batchRemove" permission="app.admin.opmmwinfodatum.delete">
|
|
<i class="layui-icon layui-icon-delete"></i>删除
|
|
</button>
|
|
</script>
|
|
|
|
<!-- 表格行工具栏 -->
|
|
<script type="text/html" id="table-bar">
|
|
<button class="pear-btn pear-btn-xs tool-btn" lay-event="edit" permission="app.admin.opmmwinfodatum.update">编辑</button>
|
|
<button class="pear-btn pear-btn-xs tool-btn" lay-event="remove" permission="app.admin.opmmwinfodatum.delete">删除</button>
|
|
</script>
|
|
|
|
<script src="/app/admin/component/layui/layui.js?v=2.8.12"></script>
|
|
<script src="/app/admin/component/pear/pear.js"></script>
|
|
<script src="/app/admin/admin/js/permission.js"></script>
|
|
<script src="/app/admin/admin/js/common.js"></script>
|
|
|
|
<script>
|
|
|
|
// 相关常量
|
|
const PRIMARY_KEY = "id";
|
|
const SELECT_API = "/app/admin/opm-mw-info-datum/select";
|
|
const UPDATE_API = "/app/admin/opm-mw-info-datum/update";
|
|
const DELETE_API = "/app/admin/opm-mw-info-datum/delete";
|
|
const INSERT_URL = "/app/admin/opm-mw-info-datum/insert";
|
|
const UPDATE_URL = "/app/admin/opm-mw-info-datum/update";
|
|
|
|
// 表格渲染
|
|
layui.use(["table", "form", "common", "popup", "util"], function() {
|
|
let table = layui.table;
|
|
let form = layui.form;
|
|
let $ = layui.$;
|
|
let common = layui.common;
|
|
let util = layui.util;
|
|
|
|
// 表头参数
|
|
let cols = [
|
|
{
|
|
type: "checkbox",
|
|
align: "center"
|
|
},{
|
|
title: "id",align: "center",
|
|
field: "id",
|
|
},{
|
|
title: "医院",align: "center",
|
|
field: "organ_name",
|
|
},{
|
|
title: "分院",align: "center",
|
|
field: "sort_name",
|
|
},{
|
|
title: "科室",align: "center",
|
|
field: "dept_name",
|
|
},{
|
|
title: "收集点",align: "center",
|
|
field: "collection_name",
|
|
},{
|
|
title: "收集人",align: "center",
|
|
field: "recl_name",
|
|
},{
|
|
title: "收集idcard",align: "center",
|
|
field: "recl_idcard",
|
|
},{
|
|
title: "收集时间",align: "center",
|
|
field: "recl_time",
|
|
},{
|
|
title: "医废状态",align: "center",
|
|
field: "waste_status",
|
|
},{
|
|
title: "医废类型",align: "center",
|
|
field: "waste_type",
|
|
},{
|
|
title: "重量",align: "center",
|
|
field: "weight",
|
|
},{
|
|
title: "暂存点",align: "center",
|
|
field: "deposit_name",
|
|
},{
|
|
title: "入库人",align: "center",
|
|
field: "in_ware_name",
|
|
},{
|
|
title: "入库idcard",align: "center",
|
|
field: "in_ware_idcard",
|
|
},{
|
|
title: "入库时间",align: "center",
|
|
field: "in_ware_time",
|
|
},{
|
|
title: "出库人",align: "center",
|
|
field: "out_ware_name",
|
|
},{
|
|
title: "出库idcard",align: "center",
|
|
field: "out_ware_idcard",
|
|
},{
|
|
title: "出库时间",align: "center",
|
|
field: "out_ware_time",
|
|
},{
|
|
title: "交接人",align: "center",
|
|
field: "hand_name",
|
|
},{
|
|
title: "交接idcard",align: "center",
|
|
field: "hand_idcard",
|
|
},{
|
|
title: "交接时间",align: "center",
|
|
field: "hand_time",
|
|
},{
|
|
title: "转运人",align: "center",
|
|
field: "comp_recl_name",
|
|
},{
|
|
title: "转运idcard",align: "center",
|
|
field: "comp_recl_idcard",
|
|
},{
|
|
title: "转运时间",align: "center",
|
|
field: "comp_recl_time",
|
|
},{
|
|
title: "医废编码",align: "center",
|
|
field: "ribbon_code",
|
|
},{
|
|
title: "周转箱编码",align: "center",
|
|
field: "box_code",
|
|
},{
|
|
title: "科室收集完,收集人员和科室交接批次",align: "center",
|
|
field: "recl_batch",
|
|
},{
|
|
title: "出库、转运批次",align: "center",
|
|
field: "comp_batch",
|
|
},{
|
|
title: "入库批次",align: "center",
|
|
field: "in_ware_batch",
|
|
},{
|
|
title: "科室人员收集完,和护工的交接",align: "center",
|
|
field: "department_batch",
|
|
},{
|
|
title: "created_at",align: "center",
|
|
field: "created_at",
|
|
},{
|
|
title: "注释:0,推送过;1:未推送",align: "center",
|
|
field: "is_push",
|
|
},{
|
|
title: "注释:0,拉取过;1:未拉取",align: "center",
|
|
field: "is_pull",
|
|
},{
|
|
title: "scale",align: "center",
|
|
field: "scale",
|
|
},{
|
|
title: "0上报完成 1收集上报 2入库上报 3出库上报",align: "center",
|
|
field: "is_report",
|
|
},{
|
|
title: "轧带编码",align: "center",
|
|
field: "tie_code",
|
|
},{
|
|
title: "b_scale",align: "center",
|
|
field: "b_scale",
|
|
},{
|
|
title: "sign",align: "center",
|
|
field: "sign",
|
|
},{
|
|
title: "操作",
|
|
toolbar: "#table-bar",
|
|
align: "center",
|
|
fixed: "right",
|
|
width: 120,
|
|
}
|
|
];
|
|
|
|
// 渲染表格
|
|
table.render({
|
|
elem: "#data-table",
|
|
url: SELECT_API,
|
|
page: true,
|
|
cols: [cols],
|
|
skin: "line",
|
|
size: "lg",
|
|
toolbar: "#table-toolbar",
|
|
autoSort: false,
|
|
defaultToolbar: [{
|
|
title: "刷新",
|
|
layEvent: "refresh",
|
|
icon: "layui-icon-refresh",
|
|
}, "filter", "print", "exports"],
|
|
done: function () {
|
|
layer.photos({photos: 'div[lay-id="data-table"]', anim: 5});
|
|
}
|
|
});
|
|
|
|
|
|
// 编辑或删除行事件
|
|
table.on("tool(data-table)", function(obj) {
|
|
if (obj.event === "remove") {
|
|
remove(obj);
|
|
} else if (obj.event === "edit") {
|
|
edit(obj);
|
|
}
|
|
});
|
|
|
|
// 表格顶部工具栏事件
|
|
table.on("toolbar(data-table)", function(obj) {
|
|
if (obj.event === "add") {
|
|
add();
|
|
} else if (obj.event === "refresh") {
|
|
refreshTable();
|
|
} else if (obj.event === "batchRemove") {
|
|
batchRemove(obj);
|
|
}
|
|
});
|
|
|
|
// 表格顶部搜索事件
|
|
form.on("submit(table-query)", function(data) {
|
|
table.reload("data-table", {
|
|
page: {
|
|
curr: 1
|
|
},
|
|
where: data.field
|
|
})
|
|
return false;
|
|
});
|
|
|
|
// 表格顶部搜索重置事件
|
|
form.on("submit(table-reset)", function(data) {
|
|
table.reload("data-table", {
|
|
where: []
|
|
})
|
|
});
|
|
|
|
// 字段允许为空
|
|
form.verify({
|
|
phone: [/(^$)|^1\d{10}$/, "请输入正确的手机号"],
|
|
email: [/(^$)|^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/, "邮箱格式不正确"],
|
|
url: [/(^$)|(^#)|(^http(s*):\/\/[^\s]+\.[^\s]+)/, "链接格式不正确"],
|
|
number: [/(^$)|^\d+$/,'只能填写数字'],
|
|
date: [/(^$)|^(\d{4})[-\/](\d{1}|0\d{1}|1[0-2])([-\/](\d{1}|0\d{1}|[1-2][0-9]|3[0-1]))*$/, "日期格式不正确"],
|
|
identity: [/(^$)|(^\d{15}$)|(^\d{17}(x|X|\d)$)/, "请输入正确的身份证号"]
|
|
});
|
|
|
|
// 表格排序事件
|
|
table.on("sort(data-table)", function(obj){
|
|
table.reload("data-table", {
|
|
initSort: obj,
|
|
scrollPos: "fixed",
|
|
where: {
|
|
field: obj.field,
|
|
order: obj.type
|
|
}
|
|
});
|
|
});
|
|
|
|
// 表格新增数据
|
|
let add = function() {
|
|
layer.open({
|
|
type: 2,
|
|
title: "新增",
|
|
shade: 0.1,
|
|
maxmin: true,
|
|
area: [common.isModile()?"100%":"500px", common.isModile()?"100%":"450px"],
|
|
content: INSERT_URL
|
|
});
|
|
}
|
|
|
|
// 表格编辑数据
|
|
let edit = function(obj) {
|
|
let value = obj.data[PRIMARY_KEY];
|
|
layer.open({
|
|
type: 2,
|
|
title: "修改",
|
|
shade: 0.1,
|
|
maxmin: true,
|
|
area: [common.isModile()?"100%":"500px", common.isModile()?"100%":"450px"],
|
|
content: UPDATE_URL + "?" + PRIMARY_KEY + "=" + value
|
|
});
|
|
}
|
|
|
|
// 删除一行
|
|
let remove = function(obj) {
|
|
return doRemove(obj.data[PRIMARY_KEY]);
|
|
}
|
|
|
|
// 删除多行
|
|
let batchRemove = function(obj) {
|
|
let checkIds = common.checkField(obj, PRIMARY_KEY);
|
|
if (checkIds === "") {
|
|
layui.popup.warning("未选中数据");
|
|
return false;
|
|
}
|
|
doRemove(checkIds.split(","));
|
|
}
|
|
|
|
// 执行删除
|
|
let doRemove = function (ids) {
|
|
let data = {};
|
|
data[PRIMARY_KEY] = ids;
|
|
layer.confirm("确定删除?", {
|
|
icon: 3,
|
|
title: "提示"
|
|
}, function(index) {
|
|
layer.close(index);
|
|
let loading = layer.load();
|
|
$.ajax({
|
|
url: DELETE_API,
|
|
data: data,
|
|
dataType: "json",
|
|
type: "post",
|
|
success: function(res) {
|
|
layer.close(loading);
|
|
if (res.code) {
|
|
return layui.popup.failure(res.msg);
|
|
}
|
|
return layui.popup.success("操作成功", refreshTable);
|
|
}
|
|
})
|
|
});
|
|
}
|
|
|
|
// 刷新表格数据
|
|
window.refreshTable = function() {
|
|
table.reloadData("data-table", {
|
|
scrollPos: "fixed",
|
|
done: function (res, curr) {
|
|
if (curr > 1 && res.data && !res.data.length) {
|
|
curr = curr - 1;
|
|
table.reloadData("data-table", {
|
|
page: {
|
|
curr: curr
|
|
},
|
|
})
|
|
}
|
|
}
|
|
});
|
|
}
|
|
})
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|