72 lines
3.0 KiB
Plaintext
72 lines
3.0 KiB
Plaintext
|
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
||
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
||
|
|
<!DOCTYPE html >
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<%@include file="../baseset.jsp" %>
|
||
|
|
<%@include file="../systemset.jsp" %>
|
||
|
|
<link rel="stylesheet" href="${bonuspath}/static/plugins/zTree/3.5/zTreeStyle.css" />
|
||
|
|
<script src="${bonuspath}/static/plugins/zTree/3.5/jquery.ztree.core-3.5.min.js"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="page-content">
|
||
|
|
<div class="row-fluid">
|
||
|
|
<div class="col-xs-12">
|
||
|
|
<form id="baseForm" class="form-inline" method="POST" onsubmit="return false;">
|
||
|
|
<div class="row">
|
||
|
|
<div class="widget-main">
|
||
|
|
  <input type="text" name="keyWord" placeholder="请输入关键字" class="input-large">
|
||
|
|
<input type="text" style="display: none;" id="parentId" name="parentId" />
|
||
|
|
<button id='searchBtn' class="btn btn-warning btn-sm" title="过滤" type="button" onclick="getbaseList(1)">
|
||
|
|
<i class="icon-search bigger-110 icon-only"></i>
|
||
|
|
</button>
|
||
|
|
<button id="addBtn" class="btn btn-success btn-sm" title="新增" type="button">新增</button>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<input type='hidden' class='pageNum' name='pageNum' value='1'/>
|
||
|
|
<input type='hidden' class='pageSize' name='pageSize' value='5'/>
|
||
|
|
</form>
|
||
|
|
<table id="baseTable" class="table table-striped table-bordered table-hover" >
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th style="width:5%" class="center hidden-480">序号</th>
|
||
|
|
<th style="width:10%" class="center">分公司</th>
|
||
|
|
<th style="width:10%" class="center">机具类型</th>
|
||
|
|
<th style="width:10%" class="center">规格型号</th>
|
||
|
|
<th style="width:6%" class="center">规格编号</th>
|
||
|
|
<th style="width:6%" class="center">数量</th>
|
||
|
|
<th style="width:6%" class="center">单位</th>
|
||
|
|
<th style="width:10%" class="center">租赁价格(元)</th>
|
||
|
|
<th style="width:10%" class="center">丢失赔偿价格(元)</th>
|
||
|
|
<th style="width:10%" class="center">原值(元)</th>
|
||
|
|
<th style="width:10%" class="center">操作人</th>
|
||
|
|
<th style="width:10%" class="center">文件是否上传</th>
|
||
|
|
<th style="width:8%" class="center">备注</th>
|
||
|
|
<th style="width:8%" class="center">操作</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody></tbody>
|
||
|
|
</table>
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-sm-2">
|
||
|
|
<div class="dataTables_info customBtn" >
|
||
|
|
 <!-- <a href="#" title="增加" id="addBtn" class="lrspace3" ><i class='icon-plus-sign color bigger-220'></i></a> -->
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col-sm-10">
|
||
|
|
<!--设置分页位置-->
|
||
|
|
<div id="pageing" class="dataTables_paginate paging_bootstrap">
|
||
|
|
<ul class="pagination"></ul>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<!-- #addorUpdateFrom -->
|
||
|
|
<%@include file="typeDetailsform.jsp" %>
|
||
|
|
<!-- #dialog-confirm -->
|
||
|
|
<%@include file="../dialog.jsp" %>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<script src="${bonuspath}/static/js/ma/typeDetails.js?v=1"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|