123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <%@ page language="java" contentType="text/html; charset=utf-8"
- pageEncoding="utf-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- %>
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <!-- <link rel="stylesheet" href="resources/css/ext-neptune.css" type="text/css"></link> -->
- <link rel="icon" href="<%=basePath %>resource/images/icon_title.png" type="image/x-icon"/>
- <link rel="stylesheet"
- href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css"
- type="text/css"></link>
- <link rel="stylesheet" href="resources/css/sink.css" type="text/css"></link>
- <link rel="stylesheet" href="resources/css/docmain.css" type="text/css"></link>
- <link rel="stylesheet" href="resources/css/button.css" type="text/csss"></link>
- <link rel="stylesheet" href="resources/css/data-view.css" type="text/csss"></link>
- <link rel="stylesheet" type="text/css" href="<%=basePath %>resource/ux/css/CheckHeader.css" />
- <style type="text/css">
- .x-btn-blue {
- background: #cecece
- url('../../../resource/ext/resources/themes/images/default/grid/grid-blue-hd.gif')
- repeat center center !important;
- text-align: center
- }
- .x-btn-blue:hover {
- background: #cecece url('../images/grid/header-bg.png') repeat center
- center !important;
- text-shadow: blue
- }
- .x-tree-arrows .x-tree-elbow-plus,.x-tree-arrows .x-tree-elbow-minus,.x-tree-arrows .x-tree-elbow-end-plus,.x-tree-arrows .x-tree-elbow-end-minus
- {
- background-image:
- url('../../../resource/ext/resources/themes/images/gray/tree/arrows.gif')
- !important;
- }
- .x-node-expanded .x-tree-icon-parent {
- background-position: 0 0 !important;
- background: no-repeat;
- background-image: url('resources/images/folder-open.gif') !important;
- }
- .x-grid-tree-node-expanded .x-tree-elbow-plus,.x-grid-tree-node-expanded .x-tree-elbow-end-plus
- {
- background-image:
- url('../../resources/themes/images/neptune/tree/icons-gray.png');
- background-position: -20px 0;
- }
- .tree-cls-parent {
- background-color: #f0f0f0 !important;
- /* font-size: 15; */
- /* margin-top: 5px; */
- /* height: 23 !important */
- }
- .folderCls{
- background-color: red !important;
- }
- #searchBox {
- position: absolute;
- right: 5px;
- top: 5px;
- background: transparent url(resources/images/bg-searchBox.jpg) no-repeat
- right center;
- width: 300px;
- height: 24px;
- padding: 2px 5px;
- }
- #searchBox #keywords {
- background: none repeat scroll 0 0 transparent;
- border-width: 0;
- height: 20px;
- margin-left: 53px;
- padding-bottom: 30px;
- line-height: 20px;
- width: 200px;
- }
- #searchBox #searchBtn {
- border-width: 0;
- margin-top: 5px;
- margin-left: 15px;
- }
- body,html {
- color: #000;
- background-color: #f7f7f7;
- margin: 0;
- padding: 0;
- font-family: verdana, arial, helvetica, sans-serif, 宋体;
- font-size: 13px;
- overflow: hidden;
- }
- </style>
- <script type="text/javascript"
- src="<%=basePath %>resource/ext/ext-all.js"></script>
- <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
- <script type="text/javascript" src="document.js"></script>
- <script type="text/javascript"
- src="<%=basePath %>resource/ux/grid/GridHeaderFilters.js"></script>
- <script type="text/javascript"
- src="<%=basePath %>resource/ux/data/PagingMemoryProxy.js"></script>
- <script type="text/javascript"
- src="<%=basePath %>resource/ux/grid/Export.js"></script>
- <script type="text/javascript"
- src="<%=basePath %>resource/ux/DataView/LabelEditor.js"></script>
- <script type="text/javascript"
- src="<%=basePath %>resource/ux/DataView/DragSelector.js"></script>
- <script type="text/javascript" src="<%=basePath%>resource/ux/layout/component/form/ItemSelector.js"></script>
- <script type="text/javascript" src="<%=basePath%>resource/ux/layout/component/form/MultiSelect.js"></script>
- <script type="text/javascript" src="<%=basePath%>resource/ux/form/MultiSelect.js"></script>
- <script type="text/javascript" src="<%=basePath %>resource/ux/CheckColumn.js"></script>
- <script type="text/javascript">
- Ext.Loader.setConfig({
- enabled: true
- });//开启动态加载
- Ext.application({
- name: 'erp',//为应用程序起一个名字,相当于命名空间
- appFolder: basePath+'app',
- controllers: [//声明所用到的控制层
- 'oa.doc.DOCManage'
- ],
- launch: function() {
- Ext.create('erp.view.oa.doc.DOCManage');//创建视图
- }
- });
- var page = 1;
- var height = window.innerHeight;
- if(Ext.isIE){//ie不支持window.innerHeight;document.documentElement.clientHeight == 0
- height = screen.height*0.75;
- }
- var msgCt;
- function showResult(title,format,btn){
- if(!msgCt){
- msgCt = Ext.DomHelper.insertFirst(document.body, {id:'msg-div'}, true);
- }
- var s = Ext.String.format.apply(String, Array.prototype.slice.call(arguments, 1));
- var m = Ext.DomHelper.append(msgCt, createBox(title, s), true);
- m.hide();
- m.slideIn('t').ghost("t", { delay: 1000, remove: true});
- };
- function createBox(t, s){
- return '<div class="msg"><h3>' + t + '</h3><p>' + s + '</p></div>';
- }
- var pageSize = parseInt(height*0.7/28);
- var pageSize = 13;
- var dataCount = 0;
- var url = '';
- var msg = '';
- var caller = 'DOCManage';
- var CurrentFolderId=0;
- var CurrentKind='folder';
- var CurrentShowStyle='list';
- var activeId=0;
- </script>
- </head>
- <body>
- </body>
- </html>
|