|
@@ -1,586 +0,0 @@
|
|
|
-$(function() {
|
|
|
- var defaultPage = 0;
|
|
|
- var defaultSize = 10;
|
|
|
- var currentPage = defaultPage;
|
|
|
- var currentSize = defaultSize;
|
|
|
- var tableFirstLoad = true;
|
|
|
-
|
|
|
- Date.prototype.Format = function(fmt) {
|
|
|
- var o = {
|
|
|
- "M+": this.getMonth() + 1, //月份
|
|
|
- "d+": this.getDate(), //日
|
|
|
- "h+": this.getHours(), //小时
|
|
|
- "m+": this.getMinutes(), //分
|
|
|
- "s+": this.getSeconds(), //秒
|
|
|
- "q+": Math.floor((this.getMonth() + 3) / 3), //季度
|
|
|
- "S": this.getMilliseconds() //毫秒
|
|
|
- };
|
|
|
- if (/(y+)/.test(fmt))
|
|
|
- fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
|
|
|
- for (var k in o)
|
|
|
- if (new RegExp("(" + k + ")").test(fmt))
|
|
|
- fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
|
|
|
- return fmt;
|
|
|
- };
|
|
|
-
|
|
|
- function formatDate(t) {
|
|
|
- var now = new Date(t),
|
|
|
- y = now.getFullYear(),
|
|
|
- m = now.getMonth() + 1,
|
|
|
- d = now.getDate();
|
|
|
- return y + "-" + (m < 10 ? "0" + m : m) + "-" + (d < 10 ? "0" + d : d) + " " + now.toTimeString().substr(0, 8);
|
|
|
- }
|
|
|
- layui.config({
|
|
|
- base: './lib/layui_exts/'
|
|
|
- }).use(["form", "table", 'excel', "laypage", "layer"], function() {
|
|
|
- var table = layui.table;
|
|
|
- var laypage = layui.laypage;
|
|
|
- var layer = layui.layer;
|
|
|
- excel = layui.excel;
|
|
|
- var title = $("#realName");
|
|
|
- var searchTitleKey = "";
|
|
|
-
|
|
|
- function loadAirList(page, size, searchTitle) {
|
|
|
- if (page === null || page === undefined) page = defaultPage;
|
|
|
- if (size === null || size === undefined) size = defaultSize;
|
|
|
-
|
|
|
- var tableOption = {
|
|
|
- elem: "#faultrecord",
|
|
|
- height: "full-81",
|
|
|
- limit: size,
|
|
|
- cols: [
|
|
|
- [{
|
|
|
- type: "checkbox"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "id",
|
|
|
- title: "编号",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "war_zone",
|
|
|
- title: "战区",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "army",
|
|
|
- title: "军",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "division",
|
|
|
- title: "师",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "brigade",
|
|
|
- title: "团",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "fault_time",
|
|
|
- title: "发现日期",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "is_history",
|
|
|
- title: "是否历史",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "aircraft_type",
|
|
|
- title: "机型",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "discover_opportunity",
|
|
|
- title: "发现时机",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "up_down",
|
|
|
- title: "起落",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "discoverer",
|
|
|
- title: "发现人",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "info_sources",
|
|
|
- title: "故障信息来源",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "fault_content",
|
|
|
- title: "故障描述",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "is_falsealarm",
|
|
|
- title: "是否虚警",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "fault_degree",
|
|
|
- title: "故障性质",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "fault_consequence",
|
|
|
- title: "故障后果",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "missflight_times",
|
|
|
- title: "误飞次数",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "impact_times",
|
|
|
- title: "影响次数",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "fault_liability",
|
|
|
- title: "故障责任",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "fault_location",
|
|
|
- title: "故障发生地点",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "major",
|
|
|
- title: "专业",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "fault_reason",
|
|
|
- title: "故障原因",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "reviewer",
|
|
|
- title: "审核人",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "review_time",
|
|
|
- title: "审核时间",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "repair_time",
|
|
|
- title: "排除时间",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "repair_hours",
|
|
|
- title: "排故工时",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "repair_personnum",
|
|
|
- title: "排故人数",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "repaired_time",
|
|
|
- title: "排故时间",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "classification",
|
|
|
- title: "分类",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "is_grounded",
|
|
|
- title: "是否停飞",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "reporting_department",
|
|
|
- title: "报告部门",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "device_name",
|
|
|
- title: "故障件名称",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "device_type",
|
|
|
- title: "故障件型别",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "replace_device",
|
|
|
- title: "故换件名称",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "replace_type",
|
|
|
- title: "故换件型别",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "diagnosis_method",
|
|
|
- title: "故障判断方法",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "diagnosis_people",
|
|
|
- title: "故障判明人",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "faultparts_date",
|
|
|
- title: "故障件装机日期",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "faultparts_hours",
|
|
|
- title: "故障件总工作时次",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "faultparts_worktimes",
|
|
|
- title: "故障件装本机工作次",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "faultparts_renovation_manu",
|
|
|
- title: "故障件翻修厂",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "faultparts_Renovation_hours",
|
|
|
- title: "故障件修后时次",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "faultparts_Renovation_times",
|
|
|
- title: "故障件翻修次数",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "repair_method",
|
|
|
- title: "排除方法",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "repair_person",
|
|
|
- title: "排故人",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "replace_device_hours",
|
|
|
- title: "故换件总工作时次",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "replace_device_repairhours",
|
|
|
- title: "故换件修后时次",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "replace_device_repairtimes",
|
|
|
- title: "故换件翻修次数",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "replace_device_applytimes",
|
|
|
- title: "排故领件次数",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "replace_device_manufacturer",
|
|
|
- title: "故换件翻修厂",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "faultparts_system",
|
|
|
- title: "故障件所属系统",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "inspector",
|
|
|
- title: "检查人",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "handling_opinions",
|
|
|
- title: "处理意见",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- field: "remark",
|
|
|
- title: "备注",
|
|
|
- align: "center"
|
|
|
- },
|
|
|
- {
|
|
|
- fixed: "right",
|
|
|
- title: "操作",
|
|
|
- toolbar: "#operationToolbar",
|
|
|
- width: 150,
|
|
|
- align: "center"
|
|
|
- }
|
|
|
- ]
|
|
|
- ]
|
|
|
- };
|
|
|
-
|
|
|
- if (searchTitle === null || searchTitle === undefined || searchTitle === "") {
|
|
|
- var url = "api/faultrecord/listpage?page=" + (page + 1) + "&size=" + size;
|
|
|
- fetchJSON(url, {}, "get", function(data) {
|
|
|
- if (data.status === 0) {
|
|
|
- if (tableFirstLoad) {
|
|
|
- tableFirstLoad = false;
|
|
|
- laypage.render({
|
|
|
- curr: page + 1,
|
|
|
- elem: "pagination",
|
|
|
- count: data.data.total,
|
|
|
- layout: ["count", "prev", "page", "next", "limit", "refresh", "skip"],
|
|
|
- jump: function(obj, first) {
|
|
|
- if (first) return;
|
|
|
- currentPage = obj.curr - 1;
|
|
|
- currentSize = obj.limit;
|
|
|
- loadAirList(currentPage, currentSize, searchTitleKey);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- // console.log(data.data)
|
|
|
- tableOption.data = data.data.list;
|
|
|
- table.render(tableOption);
|
|
|
- } else {
|
|
|
- showMsg(data.msg, 2, 2000);
|
|
|
- }
|
|
|
- });
|
|
|
- } else {
|
|
|
- var url = "api/faultrecord/getByName?name=" + searchTitle;
|
|
|
- fetchJSON(url, {}, "get", function(data) {
|
|
|
- if (data.status === 0) {
|
|
|
- if (tableFirstLoad) {
|
|
|
- tableFirstLoad = false;
|
|
|
- laypage.render({
|
|
|
- curr: page + 1,
|
|
|
- elem: "pagination",
|
|
|
- count: data.data.total,
|
|
|
- layout: ["count", "prev", "page", "next", "limit", "refresh", "skip"],
|
|
|
- jump: function(obj, first) {
|
|
|
- if (first) return;
|
|
|
- currentPage = obj.curr - 1;
|
|
|
- currentSize = obj.limit;
|
|
|
- loadAirList(currentPage, currentSize, searchTitleKey);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- // console.log(data.data)
|
|
|
- tableOption.data = data.data;
|
|
|
- table.render(tableOption);
|
|
|
- } else {
|
|
|
- showMsg(data.msg, 2, 2000);
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- loadAirList();
|
|
|
-
|
|
|
- $("#searchArticle").on("click", function(e) {
|
|
|
- e.preventDefault();
|
|
|
- tableFirstLoad = true;
|
|
|
- searchTitleKey = title.val().trim();
|
|
|
- if (searchTitleKey === "")
|
|
|
- loadAirList(0, currentSize);
|
|
|
- else
|
|
|
- loadAirList(0, currentSize, searchTitleKey);
|
|
|
- });
|
|
|
-
|
|
|
-
|
|
|
- $("#keyword").on("keyup", function(e) {
|
|
|
- e.preventDefault();
|
|
|
- if (e.keyCode === 13) {
|
|
|
- $("#searchArticle").click();
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- // 监听表内工具条
|
|
|
- table.on("tool(faultrecord)", function(obj) {
|
|
|
- var data = obj.data;
|
|
|
- // console.log(data)
|
|
|
- if (obj.event === "edit") {
|
|
|
- console.log(data)
|
|
|
- // 打开编辑框 进行详细编辑
|
|
|
- x_admin_show(
|
|
|
- "查看",
|
|
|
- encodeURI(
|
|
|
- "../admin/faultrecord-add.html?id=" + data.id + "&War_zone=" + data.war_zone + "&army=" + data.army +
|
|
|
- "&division=" + data.division + "&brigade=" + data.brigade + "&fault_time=" + data.fault_time +
|
|
|
- "&Is_history=" + data.is_history + "&Aircraft_type=" + data.aircraft_type + "&Discover_opportunity=" +
|
|
|
- data.discover_opportunity + "&Up_down=" + data.up_down + "&Discoverer=" + data.discoverer +
|
|
|
- "&Info_sources=" + data.info_sources + "&fault_content=" + data.fault_content + "&Is_falsealarm=" + data.is_falsealarm +
|
|
|
- "&Fault_degree=" + data.fault_degree + "&Fault_consequence=" + data.fault_consequence +
|
|
|
- "&Miss_flight_times=" + data.missflight_times + "&Impact_times=" + data.impact_times + "&Fault_liability=" +
|
|
|
- data.fault_liability + "&Fault_location=" + data.fault_location + "&major=" + data.major +
|
|
|
- "&fault_reason=" + data.fault_reason + "&Reviewer=" + data.reviewer + "&review_time=" + data.review_time +
|
|
|
- "&repair_time=" + data.repair_time + "&repair_hours=" + data.repair_hours + "&repair_personnum=" + data.repair_personnum +
|
|
|
- "&repaired_time=" + data.repaired_time + "&classification=" + data.classification + "&is_grounded=" + data
|
|
|
- .is_grounded + "&Reporting_department=" + data.reporting_department + "&device_name=" + data.device_name +
|
|
|
- "&device_type=" + data.device_type + "&replace_device=" + data.replace_device + "&replace_type=" + data.replace_type +
|
|
|
- "&Diagnosis_method=" + data.diagnosis_method + "&diagnosis_people=" + data.diagnosis_people +
|
|
|
- "&faultparts_date=" + data.faultparts_date + "&faultparts_hours=" + data.faultparts_hours +
|
|
|
- "&faultparts_worktimes=" + data.faultparts_worktimes + "&faultparts_renovation_manu=" + data.faultparts_renovation_manu +
|
|
|
- "&Faultparts_Renovation_hours=" + data.faultparts_Renovation_hours + "&Faultparts_Renovation_times=" +
|
|
|
- data.faultparts_Renovation_times + "&repair_method=" + data.repair_method + "&Repair_person=" + data.repair_person +
|
|
|
- "&replace_device_hours=" + data.replace_device_hours + "&replace_device_repairhours" + data.replace_device_repairhours +
|
|
|
- "&replace_device_repairtimes=" + data.replace_device_repairtimes + "&replace_device_applytimes=" + data.replace_device_applytimes +
|
|
|
- "&replace_device_manufacturer=" + data.replace_device_manufacturer + "&Faultparts_system=" + data.faultparts_system +
|
|
|
- "&Inspector=" + data.inspector + "&Handling_opinions=" + data.handling_opinions + "&remark=" + data.remark
|
|
|
-
|
|
|
- ),
|
|
|
- 1300,
|
|
|
- 600,
|
|
|
- function() {
|
|
|
- loadAirList(currentPage, currentSize);
|
|
|
- }
|
|
|
- );
|
|
|
- } else
|
|
|
- if (obj.event === "delete") {
|
|
|
- // console.log(data)
|
|
|
- // 删除
|
|
|
- var ids = [];
|
|
|
- ids.push(data.id);
|
|
|
- layer.confirm("确认要删除吗?", function() {
|
|
|
- fetchJSON("api/faultrecord/delete", {
|
|
|
- ids: ids
|
|
|
- }, "post", function(data) {
|
|
|
- if (data.status === 0) {
|
|
|
- showMsg("已删除!", 1, 2000);
|
|
|
- tableFirstLoad = true;
|
|
|
- loadAirList(currentPage, currentSize);
|
|
|
- } else {
|
|
|
- showMsg(data.msg, 2, 2000);
|
|
|
- }
|
|
|
- });
|
|
|
- });
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- //表格导入
|
|
|
- $("#tolead").on("click", function(e) {
|
|
|
- e.preventDefault();
|
|
|
- tableFirstLoad = true;
|
|
|
- x_admin_show("导入",
|
|
|
- "../admin/faul-add.html",
|
|
|
- 350,
|
|
|
- 200,
|
|
|
- function() {
|
|
|
- loadAirList(currentPage, currentSize);
|
|
|
- });
|
|
|
- });
|
|
|
-
|
|
|
- //表格导出
|
|
|
- function exportFile(id) {
|
|
|
-
|
|
|
- //根据传入tableID获取表头
|
|
|
- var headers = layui.$("div[lay-id='faultrecord'] .layui-table-box table").get(0);
|
|
|
- var htrs = Array.from(headers.querySelectorAll('tr'));
|
|
|
- var titles = {};
|
|
|
- for (var j = 0; j < htrs.length; j++) {
|
|
|
- var hths = Array.from(htrs[j].querySelectorAll("th"));
|
|
|
- for (var i = 1; i < hths.length - 1; i++) {
|
|
|
-
|
|
|
- //排除居左、具有、隐藏字段
|
|
|
- //修改:默认字段data-field+i,兼容部分数据表格中不存在data-field值的问题
|
|
|
- titles['data-field' + i] = hths[i].innerText;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- //根据传入tableID获取table内容
|
|
|
- var bodys = layui.$("div[lay-id='faultrecord'] .layui-table-box table").get(1);
|
|
|
- var btrs = Array.from(bodys.querySelectorAll("tr"))
|
|
|
- var bodysArr = new Array();
|
|
|
- for (var j = 0; j < btrs.length; j++) {
|
|
|
- var contents = {};
|
|
|
- var btds = Array.from(btrs[j].querySelectorAll("td"));
|
|
|
- for (var i = 1; i < btds.length - 1; i++) {
|
|
|
- for (var key in titles) {
|
|
|
- //修改:默认字段data-field+i,兼容部分数据表格中不存在data-field值的问题
|
|
|
- var field = 'data-field' + i;
|
|
|
- if (field === key) {
|
|
|
- //根据表头字段获取table内容字段
|
|
|
- contents[field] = btds[i].innerText;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- bodysArr.push(contents)
|
|
|
- }
|
|
|
- //将标题行置顶添加到数组
|
|
|
- bodysArr.unshift(titles);
|
|
|
- //导出excel
|
|
|
- excel.exportExcel({
|
|
|
- sheet1: bodysArr
|
|
|
- }, '故障记录' + new Date().toLocaleString() + '.xlsx', 'xlsx');
|
|
|
- }
|
|
|
-
|
|
|
- $("#exportLog").on("click", function(e) {
|
|
|
- exportFile("faultrecord");
|
|
|
- });
|
|
|
- // 批量删除
|
|
|
- $("#batchDelete").on("click", function(e) {
|
|
|
- e.preventDefault();
|
|
|
- var checkedData = table.checkStatus("faultrecord").data;
|
|
|
- if (checkedData.length === 0) {
|
|
|
- showMsg("未选择需要删除的日志", 2, 2000);
|
|
|
- return;
|
|
|
- }
|
|
|
- layer.confirm("确认要删除吗?", function() {
|
|
|
- var ids = [];
|
|
|
- for (var i = 0; i < checkedData.length; i++) {
|
|
|
- ids.push(checkedData[i].id);
|
|
|
- }
|
|
|
-
|
|
|
- fetchJSON("api/faultrecord/delete", {
|
|
|
- ids: ids
|
|
|
- }, "post", function(data) {
|
|
|
- if (data.status === 0) {
|
|
|
- showMsg("已删除!");
|
|
|
- tableFirstLoad = true;
|
|
|
- loadAirList(currentPage, currentSize);
|
|
|
- } else {
|
|
|
- showMsg(data.msg, 2, 2000);
|
|
|
- }
|
|
|
- });
|
|
|
- });
|
|
|
- });
|
|
|
- // 新建用户
|
|
|
- $("#addair").on("click", function(e) {
|
|
|
- e.preventDefault();
|
|
|
- tableFirstLoad = true;
|
|
|
- x_admin_show("添加",
|
|
|
- "../admin/faultrecord-edit.html?id=0&war_zone=&army=&division=&brigade=&fault_time=&is_history=&aircraft_type=&Ddiscover_opportunity=&up_down=&discoverer=&info_sources=&fault_content=&is_falsealarm=&fault_degree=&fault_consequence=&miss_flight_times=&impact_times=&fault_liability=&fault_location=&major=&fault_reason=&reviewer=&review_time=&repair_time=&repair_hours=&repair_personnum=&repaired_time&=classification&=is_grounded&=reporting_department&=device_name&=device_type&=replace_device&=replace_type&=diagnosis_method&=diagnosis_people&=faultparts_date&=faultparts_hours&=faultparts_ worktimes&=faultparts_renovation_manu&=faultparts_Renovation_hours&=faultparts_Renovation_times&=repair_method&=repair_person&=replace_device_hours&=replace_device_repairhours&=replace_device_repairtimes&=replace_device_applytimes&=replace_device_ manufacturer&=Faultparts_system&=Inspector&=handling_opinions&=remark",
|
|
|
- 1300,
|
|
|
- 500,
|
|
|
- function() {
|
|
|
- loadAirList(currentPage, currentSize);
|
|
|
- });
|
|
|
- });
|
|
|
- //配置
|
|
|
- $("#look").on("click", function(e) {
|
|
|
- e.preventDefault();
|
|
|
- tableFirstLoad = true;
|
|
|
- x_admin_show("配置",
|
|
|
- "../admin/faul.html",
|
|
|
- 1300,
|
|
|
- 600,
|
|
|
- function() {
|
|
|
- loadAirList(currentPage, currentSize);
|
|
|
- });
|
|
|
- });
|
|
|
- });
|
|
|
-});
|