577 lines
28 KiB
Plaintext
577 lines
28 KiB
Plaintext
<%@page import="com.sipai.tools.CommString" %>
|
||
<%@ page language="java" pageEncoding="UTF-8" %>
|
||
<%@page import="com.sipai.entity.maintenance.MaintenanceCommString" %>
|
||
<%@page import="com.sipai.entity.maintenance.MaintainCommStr" %>
|
||
<%@page import="com.sipai.entity.maintenance.EquipmentPlanType" %>
|
||
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
|
||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
|
||
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
|
||
<%@ page import="com.sipai.entity.base.ServerObject" %>
|
||
<%@ taglib uri="http://www.springsecurity.org/jsp" prefix="security" %>
|
||
<%request.setAttribute("MAINTAIN", MaintenanceCommString.MAINTENANCE_TYPE_MAINTAIN); %>
|
||
|
||
<%request.setAttribute("START", MaintenanceCommString.PLAN_START); %>
|
||
<%request.setAttribute("SUBMIT", MaintenanceCommString.PLAN_SUBMIT); %>
|
||
<%request.setAttribute("FINISH", MaintenanceCommString.PLAN_FINISH); %>
|
||
|
||
<%@page import="com.sipai.entity.maintenance.EquipmentPlan" %>
|
||
<%request.setAttribute("Status_Finish", EquipmentPlan.Status_Finish); %>
|
||
<%request.setAttribute("Status_Issued", EquipmentPlan.Status_Issued); %>
|
||
|
||
<!DOCTYPE html>
|
||
<!-- <html lang="zh-CN"> -->
|
||
<!-- BEGIN HEAD -->
|
||
<head>
|
||
<title><%= ServerObject.atttable.get("TOPTITLE")%>
|
||
</title>
|
||
<!-- 引用页头及CSS页-->
|
||
<jsp:include page="/jsp/inc.jsp"></jsp:include>
|
||
<!-- bootstrap switch -->
|
||
<link rel="stylesheet"
|
||
href="<%=request.getContextPath()%>/node_modules/bootstrap-switch/dist/css/bootstrap3/bootstrap-switch.min.css"/>
|
||
<script type="text/javascript"
|
||
src="<%=request.getContextPath()%>/node_modules/bootstrap-switch/dist/js/bootstrap-switch.min.js"
|
||
charset="utf-8"></script>
|
||
<style type="text/css">
|
||
.select2-container .select2-selection--single {
|
||
height: 34px;
|
||
line-height: 34px;
|
||
}
|
||
|
||
.select2-selection__arrow {
|
||
margin-top: 3px;
|
||
}
|
||
|
||
.table-hover > tbody > tr:hover {
|
||
cursor: pointer;
|
||
}
|
||
</style>
|
||
<script type="text/javascript">
|
||
columns = [
|
||
{
|
||
checkbox: true,
|
||
width: '40px',
|
||
formatter: function (value, row, index) {
|
||
if (row.status == '${Status_Finish}') {
|
||
return {disabled: false}
|
||
} else {
|
||
return {disabled: true}
|
||
}
|
||
}
|
||
}, {
|
||
field: 'equipmentPlan.company.sname', // 返回json数据中的name
|
||
title: '所属厂区', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '10%',
|
||
}, {
|
||
field: '1', // 返回json数据中的name
|
||
title: '设备编号', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '15%',
|
||
formatter: function (value, row, index) {
|
||
if (row.equipmentCard != null && row.equipmentCard != '') {
|
||
return row.equipmentCard.equipmentcardid;
|
||
}
|
||
}
|
||
}, {
|
||
field: '2', // 返回json数据中的name
|
||
title: '设备名称', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '15%',
|
||
formatter: function (value, row, index) {
|
||
if (row.equipmentCard != null && row.equipmentCard != '') {
|
||
return row.equipmentCard.equipmentname;
|
||
}
|
||
}
|
||
}, {
|
||
field: '3', // 返回json数据中的name
|
||
title: '计划月份', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '15%',
|
||
formatter: function (value, row, index) {
|
||
return row.equipmentPlan.planDate.substring(0, 7);
|
||
}
|
||
}, {
|
||
field: 'planMoney', // 返回json数据中的name
|
||
title: '预算', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '10%',
|
||
}, {
|
||
field: 'contents', // 返回json数据中的name
|
||
title: '计划内容', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '30%',
|
||
}
|
||
/*,
|
||
{
|
||
title: "操作",
|
||
align: 'center',
|
||
valign: 'middle',
|
||
width: '10%', // 定义列的宽度,单位为像素px
|
||
formatter: function (value, row, index) {
|
||
var buts = '';
|
||
buts += '<button class="btn btn-default btn-sm" title="浏览" onclick="viewFun(\'' + row.id + '\')"><i class="fa fa-eye"></i><span class="hidden-md hidden-lg"> 浏览</span></button>';
|
||
buts = '<div class="btn-group" >' + buts + '</div>';
|
||
return buts;
|
||
}
|
||
}*/
|
||
]
|
||
var viewFun = function (id) {
|
||
stopBubbleDefaultEvent();
|
||
alert('浏览页面开发中');
|
||
}
|
||
function initDate1() {
|
||
var locale = {
|
||
"format": 'YYYY-MM-DD HH:mm',
|
||
"separator": " ~ ",
|
||
"applyLabel": "确定",
|
||
"cancelLabel": "取消",
|
||
"fromLabel": "起始时间",
|
||
"toLabel": "结束时间'",
|
||
"customRangeLabel": "自定义",
|
||
"weekLabel": "W",
|
||
"daysOfWeek": ["日", "一", "二", "三", "四", "五", "六"],
|
||
"monthNames": ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
|
||
"firstDay": 1
|
||
};
|
||
|
||
var oldreservationtime1 = "${param.oldreservationtime1}";
|
||
if (oldreservationtime1 != "" && oldreservationtime1.length > 0) {
|
||
beginTimeStore1 = oldreservationtime1.substring(0, 16);
|
||
endTimeStore1 = oldreservationtime1.substring(19, 36);
|
||
$('#reservationtimeD').val(oldreservationtime1);
|
||
} else {
|
||
beginTimeStore1 = moment().subtract(3, 'days').format('YYYY-MM-DD HH:mm');
|
||
endTimeStore1 = moment().subtract(0, 'days').format('YYYY-MM-DD HH:mm');
|
||
$('#reservationtimeD').val(beginTimeStore1 + locale.separator + endTimeStore1);
|
||
}
|
||
|
||
$('#reservationtimeD').daterangepicker({
|
||
"timePicker": true,
|
||
"timePicker24Hour": true,
|
||
"linkedCalendars": false,
|
||
"autoUpdateInput": false,
|
||
"timePickerIncrement": 10,
|
||
"locale": locale,
|
||
//汉化按钮部分
|
||
ranges: {
|
||
// '今日': [moment(), moment().subtract(-1, 'days')],
|
||
'昨日': [moment().subtract(1, 'days'), moment()],
|
||
'最近7日': [moment().subtract(6, 'days'), moment().subtract(-1, 'days')],
|
||
'本月': [moment().startOf('month'), moment().endOf('month').subtract(-1, 'days')],
|
||
'上月': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month').subtract(-1, 'days')]
|
||
},
|
||
startDate: beginTimeStore1,
|
||
endDate: endTimeStore1
|
||
}, function (start, end, label) {
|
||
beginTimeStore1 = start.format(this.locale.format);
|
||
endTimeStore1 = end.format(this.locale.format);
|
||
if (!this.startDate) {
|
||
this.element.val('');
|
||
} else {
|
||
this.element.val(this.startDate.format(this.locale.format) + this.locale.separator + this.endDate.format(this.locale.format));
|
||
}
|
||
});
|
||
|
||
};
|
||
$(function () {
|
||
initDate1();
|
||
$(".daterangepicker").css({'width': '680px'});
|
||
var flag = IsApp();
|
||
if (flag == true) {
|
||
|
||
} else {
|
||
$(".main-header").show();
|
||
$(".content-header").show();
|
||
$(".main-footer").show();
|
||
}
|
||
$('#reservationtimeD').val('');
|
||
//简易公司combotree
|
||
$.post(ext.contextPath + "/user/showCompanySelectTree.do", {}, function (data) {
|
||
$('#companySelectTree').html(data);
|
||
});
|
||
$("#status_val").select2({minimumResultsForSearch: 10});
|
||
|
||
if ('${type}' == 'by') {
|
||
$("#equipmentPlanType").show();
|
||
$("#equipmentPlanTypelabel").show();
|
||
initEquipmentPlanType();
|
||
} else {
|
||
$("#equipmentPlanType").hide();
|
||
$("#equipmentPlanTypelabel").hide();
|
||
}
|
||
});
|
||
var initEquipmentPlanType = function () {
|
||
$.post(ext.contextPath + "/maintenance/equipmentPlanType/getSelectList4Code.do", {code: 'by'}, function (data) {
|
||
$("#equipmentPlanType").empty();
|
||
var selelct_ = $("#equipmentPlanType").select2({
|
||
data: data,
|
||
cache: false,
|
||
placeholder: '请选择',//默认文字提示
|
||
allowClear: true,//允许清空
|
||
escapeMarkup: function (markup) {
|
||
return markup;
|
||
}, // 自定义格式化防止xss注入
|
||
language: "zh-CN",
|
||
minimumInputLength: 0,
|
||
minimumResultsForSearch: 10,//数据超过10个启用搜索框
|
||
formatResult: function formatRepo(repo) {
|
||
return repo.text;
|
||
}, // 函数用来渲染结果
|
||
formatSelection: function formatRepoSelection(repo) {
|
||
return repo.text;
|
||
} // 函数用于呈现当前的选择
|
||
});
|
||
selelct_.val('').trigger("change");
|
||
selelct_.on("change", function (e) {
|
||
dosearchTab();
|
||
});
|
||
}, 'json');
|
||
}
|
||
|
||
//表格查询参数
|
||
function queryParamsFun(params) { // 请求服务器数据时发送的参数,可以在这里添加额外的查询参数,返回false则终止请求
|
||
return {
|
||
rows: params.limit, // 每页要显示的数据条数
|
||
page: params.offset / params.limit + 1, // 每页显示数据的开始页码
|
||
sort: params.sort, // 要排序的字段
|
||
order: params.order,
|
||
companyId: unitId,
|
||
planTypeId: $('#equipmentPlanType').val(),
|
||
// planType: $('#searchType').val(),
|
||
search_name: $('#search_name').val(),
|
||
date: $('#reservationtimeD').val(),
|
||
search_equ: $('#search_equ').val(),
|
||
status_val: $('#status_val').val(), //状态筛选
|
||
type: '${type}',
|
||
}
|
||
};
|
||
|
||
//厂区选择后,初始化工艺段,加载表格
|
||
var initFun = function () {
|
||
$('#table').bootstrapTable('destroy');
|
||
$("#table").bootstrapTable({ // 对应table标签的id
|
||
url: ext.contextPath + '/maintenance/equipmentPlanEqu/getListIssue.do', // 获取表格数据的url
|
||
cache: false, // 设置为 false 禁用 AJAX 数据缓存, 默认为true
|
||
// singleSelect: true, // 不显示全选
|
||
striped: true, //表格显示条纹,默认为false
|
||
pagination: true, // 在表格底部显示分页组件,默认false
|
||
pageList: [10, 20, 50], // 设置页面可以显示的数据条数
|
||
pageSize: 50, // 页面数据条数
|
||
pageNumber: 1, // 首页页码
|
||
sidePagination: 'server', // 设置为服务器端分页
|
||
queryParams: queryParamsFun,
|
||
sortName: 'insdt', // 要排序的字段
|
||
sortOrder: 'desc', // 排序规则
|
||
onClickRow: function (row) {//单击行事件,执行查看功能
|
||
// viewFun(row.id);
|
||
},
|
||
columns: columns,
|
||
onLoadSuccess: function () { //加载成功时执行
|
||
adjustBootstrapTableView("table");
|
||
},
|
||
onLoadError: function () { //加载失败时执行
|
||
console.info("加载数据失败");
|
||
}
|
||
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 下发
|
||
*/
|
||
var issueFun = function () {
|
||
var checkedItems = $("#table").bootstrapTable('getSelections');
|
||
var datas = "";
|
||
$.each(checkedItems, function (index, item) {
|
||
datas += item.id + ",";
|
||
});
|
||
if (datas == "") {
|
||
showAlert('d', '请先选择记录', 'mainAlertdiv');
|
||
} else {
|
||
$.post(ext.contextPath + '/user/userForAllSelectWorkOrder.do', {
|
||
formId: "subForm",
|
||
hiddenId: "solver",
|
||
textId: "solvername",
|
||
userIds: '',
|
||
ids: datas
|
||
}, function (data) {
|
||
$("#user4SelectDiv").html(data);
|
||
openModal("user4SelectModal");
|
||
});
|
||
}
|
||
};
|
||
var dosearchTab = function () {
|
||
if ($('#status_val').val() == '${Status_Issued}') {
|
||
columns = [
|
||
{
|
||
checkbox: true,
|
||
width: '40px',
|
||
formatter: function (value, row, index) {
|
||
if (row.status == '${Status_Finish}') {
|
||
return {disabled: false}
|
||
} else {
|
||
return {disabled: true}
|
||
}
|
||
}
|
||
}, {
|
||
field: 'equipmentPlan.company.sname', // 返回json数据中的name
|
||
title: '所属厂区', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '10%',
|
||
}, {
|
||
field: '1', // 返回json数据中的name
|
||
title: '设备编号', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '15%',
|
||
formatter: function (value, row, index) {
|
||
if (row.equipmentCard != null && row.equipmentCard != '') {
|
||
return row.equipmentCard.equipmentcardid;
|
||
}
|
||
}
|
||
}, {
|
||
field: '2', // 返回json数据中的name
|
||
title: '设备名称', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '15%',
|
||
formatter: function (value, row, index) {
|
||
if (row.equipmentCard != null && row.equipmentCard != '') {
|
||
return row.equipmentCard.equipmentname;
|
||
}
|
||
}
|
||
}, {
|
||
field: '3', // 返回json数据中的name
|
||
title: '计划月份', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '15%',
|
||
formatter: function (value, row, index) {
|
||
return row.equipmentPlan.planDate.substring(0, 7);
|
||
}
|
||
}, {
|
||
field: 'planMoney', // 返回json数据中的name
|
||
title: '预算', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '10%',
|
||
}, {
|
||
field: 'contents', // 返回json数据中的name
|
||
title: '计划内容', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '30%',
|
||
}, {
|
||
field: 'user.caption', // 返回json数据中的name
|
||
title: '维保人员', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '20%',
|
||
}
|
||
/*,
|
||
{
|
||
title: "操作",
|
||
align: 'center',
|
||
valign: 'middle',
|
||
width: '10%', // 定义列的宽度,单位为像素px
|
||
formatter: function (value, row, index) {
|
||
var buts = '';
|
||
buts += '<button class="btn btn-default btn-sm" title="浏览" onclick="viewFun(\'' + row.id + '\')"><i class="fa fa-eye"></i><span class="hidden-md hidden-lg"> 浏览</span></button>';
|
||
buts = '<div class="btn-group" >' + buts + '</div>';
|
||
return buts;
|
||
}
|
||
}*/
|
||
]
|
||
} else {
|
||
columns = [
|
||
{
|
||
checkbox: true,
|
||
width: '40px',
|
||
formatter: function (value, row, index) {
|
||
if (row.status == '${Status_Finish}') {
|
||
return {disabled: false}
|
||
} else {
|
||
return {disabled: true}
|
||
}
|
||
}
|
||
}, {
|
||
field: 'equipmentPlan.company.sname', // 返回json数据中的name
|
||
title: '所属厂区', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '10%',
|
||
}, {
|
||
field: '1', // 返回json数据中的name
|
||
title: '设备编号', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '15%',
|
||
formatter: function (value, row, index) {
|
||
if (row.equipmentCard != null && row.equipmentCard != '') {
|
||
return row.equipmentCard.equipmentcardid;
|
||
}
|
||
}
|
||
}, {
|
||
field: '2', // 返回json数据中的name
|
||
title: '设备名称', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '15%',
|
||
formatter: function (value, row, index) {
|
||
if (row.equipmentCard != null && row.equipmentCard != '') {
|
||
return row.equipmentCard.equipmentname;
|
||
}
|
||
}
|
||
}, {
|
||
field: '3', // 返回json数据中的name
|
||
title: '计划月份', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '15%',
|
||
formatter: function (value, row, index) {
|
||
return row.equipmentPlan.planDate.substring(0, 7);
|
||
}
|
||
}, {
|
||
field: 'planMoney', // 返回json数据中的name
|
||
title: '预算', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '10%',
|
||
}, {
|
||
field: 'contents', // 返回json数据中的name
|
||
title: '计划内容', // 表格表头显示文字
|
||
align: 'center', // 左右居中
|
||
valign: 'middle',
|
||
width: '30%',
|
||
}
|
||
/*,
|
||
{
|
||
title: "操作",
|
||
align: 'center',
|
||
valign: 'middle',
|
||
width: '10%', // 定义列的宽度,单位为像素px
|
||
formatter: function (value, row, index) {
|
||
var buts = '';
|
||
buts += '<button class="btn btn-default btn-sm" title="浏览" onclick="viewFun(\'' + row.id + '\')"><i class="fa fa-eye"></i><span class="hidden-md hidden-lg"> 浏览</span></button>';
|
||
buts = '<div class="btn-group" >' + buts + '</div>';
|
||
return buts;
|
||
}
|
||
}*/
|
||
]
|
||
}
|
||
$("#table").bootstrapTable('destroy');
|
||
initFun();
|
||
}
|
||
|
||
</script>
|
||
|
||
</head>
|
||
<body onload="initMenu()" class="hold-transition ${cu.themeclass} sidebar-mini">
|
||
<div class="wrapper">
|
||
<div class="content-wrapper">
|
||
<%-- <section class="content-header">--%>
|
||
<%-- <h1 id="head_title"></h1>--%>
|
||
<%-- <ol class="breadcrumb">--%>
|
||
<%-- <li><a id='head_firstlevel' href="#"><i class="fa fa-dashboard"></i> </a></li>--%>
|
||
<%-- </ol>--%>
|
||
<%-- </section>--%>
|
||
<section class="content container-fluid">
|
||
<div id="mainAlertdiv"></div>
|
||
<div id="subDiv"></div>
|
||
<div id="subDivEqu"></div>
|
||
<div id="roleUserDiv"></div>
|
||
<div id="emSubDiv"></div>
|
||
<div id="traceDiv"></div>
|
||
<div id="subDiv_Equipment"></div>
|
||
<div id="subDetailDiv"></div>
|
||
<div id="user4SelectDiv"></div>
|
||
<div id="fileInputDiv"></div>
|
||
<form id="searchForm">
|
||
<div id="companySelectTree" style="display: none;"></div>
|
||
<div class="btn-group" style="width: 220px;padding-bottom:10px;">
|
||
<security:authorize buttonUrl="maintenance/equipmentPlan/add.do">
|
||
<button type="button" class="btn btn-default btn-sm" onclick="issueFun();"><i
|
||
class="fa fa-paper-plane"></i> 下发
|
||
</button>
|
||
</security:authorize>
|
||
</div>
|
||
<div class="form-group pull-right form-inline">
|
||
<label class="form-label" id="equipmentPlanTypelabel">维保类型</label>
|
||
<select class="form-control select2" id="equipmentPlanType" name="equipmentPlanType"
|
||
style="width: 160px;"></select>
|
||
<label class="form-label">状态</label>
|
||
<select class="form-control select2" id="status_val" name="status_val" style="width: 160px;"
|
||
onchange="dosearchTab();">
|
||
<%-- <option value="" selected="selected">全部</option>--%>
|
||
<option value="${Status_Finish}" selected="selected">未下发</option>
|
||
<option value="${Status_Issued}">已下发</option>
|
||
</select>
|
||
|
||
<label class="form-label">日期</label>
|
||
<%-- <div class="input-group input-group-sm pull-right">--%>
|
||
<div class="input-group input-group-sm" style="width: 200px;">
|
||
<input type="text" autocomplete="off" class="form-control pull-left"
|
||
style="height: 34px; width: 200px;" id="reservationtimeD" style="width:320px;"
|
||
placeholder="请选择日期">
|
||
</div>
|
||
|
||
<label class="form-label">计划内容</label>
|
||
<div class="input-group input-group-sm" style="width: 250px;">
|
||
<input type="text" id="search_name" autocomplete="off" name="search_name"
|
||
class="form-control pull-right" style="height:34px" placeholder="请输入">
|
||
</div>
|
||
|
||
<label class="form-label">设备搜索</label>
|
||
<div class="input-group input-group-sm" style="width: 250px;">
|
||
<input type="text" id="search_equ" autocomplete="off" name="search_equ"
|
||
class="form-control pull-right" style="height:34px" placeholder="请输入设备ID或设备名称">
|
||
<div class="input-group-btn">
|
||
<button class="btn btn-default" onclick="dosearchTab();" style="height:34px"><i
|
||
class="fa fa-search"></i></button>
|
||
</div>
|
||
</div>
|
||
<%-- <label class="form-label">计划内容</label>--%>
|
||
<%-- <div class="input-group input-group-sm" style="width: 250px;">--%>
|
||
<%-- <input type="text" id="search_name" autocomplete="off" name="search_name"--%>
|
||
<%-- class="form-control pull-right" style="height:34px" placeholder="请输入">--%>
|
||
<%-- <div class="input-group-btn">--%>
|
||
<%-- <button class="btn btn-default" onclick="dosearchTab();" style="height:34px"><i--%>
|
||
<%-- class="fa fa-search"></i></button>--%>
|
||
<%-- </div>--%>
|
||
<%-- </div>--%>
|
||
</div>
|
||
</form>
|
||
<table id="table"></table>
|
||
</section>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
<script src="<%=request.getContextPath()%>/JS/activiti/workflow.js" type="text/javascript"></script>
|
||
<script src="<%=request.getContextPath()%>/JS/qtip/jquery.qtip.min.js" type="text/javascript"></script>
|
||
<%-- 引入CSS --%>
|
||
<link rel="stylesheet" href="<%=request.getContextPath()%>/JS/qtip/jquery.qtip.min.css" type="text/css">
|
||
<link rel="stylesheet" href="<%=request.getContextPath()%>/CSS/style-activiti.css" type="text/css">
|
||
<!-- Ionicons -->
|
||
<link rel="stylesheet" href="<%=request.getContextPath()%>/node_modules/ionicons/css/ionicons.min.css"/>
|
||
<!-- 文件上传-->
|
||
<link rel="stylesheet" href="<%=request.getContextPath()%>/node_modules/bootstrap-fileinput/css/fileinput.min.css"/>
|
||
<script type="text/javascript" src="<%=request.getContextPath()%>/node_modules/bootstrap-fileinput/js/fileinput.min.js"
|
||
charset="utf-8"></script>
|
||
<script type="text/javascript" src="<%=request.getContextPath()%>/node_modules/bootstrap-fileinput/js/locales/zh.js"
|
||
charset="utf-8"></script>
|
||
<script type="text/javascript" src="<%=request.getContextPath()%>/JS/commonFileUpload.js" charset="utf-8"></script>
|
||
<!-- 引入daterangepicker-->
|
||
<link rel="stylesheet" href="<%=request.getContextPath()%>/plugins/bootstrap-daterangepicker/daterangepicker.css"/>
|
||
<script type="text/javascript" src="<%=request.getContextPath()%>/plugins/bootstrap-daterangepicker/moment.min.js"
|
||
charset="utf-8"></script>
|
||
<script type="text/javascript" src="<%=request.getContextPath()%>/plugins/bootstrap-daterangepicker/daterangepicker.js"
|
||
charset="utf-8"></script>
|
||
</html> |