list.html 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059
  1. <div ng-controller="fileListCtrl">
  2. <section id="page-title">
  3. <div class="row">
  4. <!-- <i class="iconfont icon-bianji pull-left"></i> -->
  5. <div class="col-sm-8">
  6. <h1 class="mainTitle">文档管理<i tooltip='文档管理,点击操作处理任务' tooltip-placement="right" class="fa ti-help-alt margin-left-10 fontcolor-five pointfont"></i></h1>
  7. </div>
  8. </div>
  9. </section>
  10. <div class="jry_box">
  11. <div class="col-sm-3">
  12. <div class="jry_table">
  13. <div ng-click="public_file()" ng-class="{true:'tab_select'}[isPersonal==1]">公共文档</div>
  14. <div ng-click="personal_file()" ng-class="{true:'tab_select'}[isPersonal==0]">个人文档</div>
  15. </div>
  16. <div class="folder">
  17. <div class="operation">
  18. <div ng-click="open_add_box()">新增</div>
  19. <div ng-click="open_modify_box()">修改</div>
  20. <div ng-click="rmvData_tree()">删除</div>
  21. </div>
  22. <div class="search">
  23. <input type="text" placeholder="请输入关键字" ng-model="search_tree_ipt" ng-change="search_tree_fn()">
  24. <i class="iconfont icon-search"></i>
  25. </div>
  26. <div class="tree" ng-show="search_tree_ipt==''">
  27. <span ng-if="doing_async">...加载中...</span>
  28. <abn-tree tree-data="my_data" tree-control="my_tree" on-select="my_tree_handler(branch)" expand-level="2" icon-leaf="iconfont icon-liebiao1" icon-expand="ti-plus" icon-collapse="ti-minus"></abn-tree>
  29. </div>
  30. <div class="tree" ng-show="search_tree_ipt!=''">
  31. <div ng-repeat="v in search_tree_data" class="left_search_datas" tooltip="{{v.name}}" tooltip-placement="top" ng-click="left_search_tree_cli($index,v)" ng-class="{true:'cli_bg'}[$index==left_search_index]">{{v.name}}</div>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="col-sm-9">
  36. <div class="title">文件:</div>
  37. <div class="file">
  38. <div class="head">
  39. <div class="left">
  40. <div class="children">
  41. <span class="spa">文档名称:</span>
  42. <input type="text" class="ipt" ng-model="jry_filterdata.fileName">
  43. </div>
  44. <div class="children">
  45. <span class="spa">文档格式:</span>
  46. <ui-select class="tab-mainDiv-body-content" ng-model="fileTypeObj.fileType1" theme="bootstrap">
  47. <ui-select-match placeholder="">
  48. {{$select.selected.name}}
  49. </ui-select-match>
  50. <ui-select-choices repeat="item in file_format">
  51. <div ng-bind-html="item.name"></div>
  52. </ui-select-choices>
  53. </ui-select>
  54. </div>
  55. <!-- <div class="children">
  56. <span class="spa">关键字搜索:</span>
  57. <input type="text" class="ipt" ng-model="jry_filterdata.content">
  58. </div> -->
  59. </div>
  60. <div class="right">
  61. <button class="search" ng-click="list_search()">搜索</button>
  62. <button class="clean" ng-click="clean()">清空</button>
  63. </div>
  64. <!-- <input type="text"> -->
  65. </div>
  66. <div class="body">
  67. <div class="title">
  68. <span>文件列表</span>
  69. <span ng-show="selected.items.length!=0">已选中文件{{selected.items.length}}个</span>
  70. <button ng-click="open_import()">导入文件</button>
  71. <button ng-click="open_files_change()">更换目录</button>
  72. </div>
  73. <div ui-i18n="{{lang}}">
  74. <div class="grid_height">
  75. <div id="grid1 " ui-grid="gridOptions " ui-grid-pagination external-scopes="$scope " ui-grid-resize-columns ui-grid-selection ui-grid-auto-resize class="grid "></div>
  76. </div>
  77. </div>
  78. </div>
  79. </div>
  80. </div>
  81. </div>
  82. <!-- 大蒙版 -->
  83. <div class="fix_back" ng-show="big_back">
  84. <!-- 新增弹框 -->
  85. <div class="add_new_box">
  86. <!-- 头部 -->
  87. <div class="head">新增文件夹<span ng-click="close_add_box()">×</span></div>
  88. <div class="body">
  89. <div class="tit">
  90. <span class="left">*</span><span>文件夹名称:</span>
  91. </div>
  92. <div>
  93. <span class="left"></span><input type="text" class="file_name" placeholder="请输入文件夹名称" maxlength="20" ng-model="add_file_name">
  94. </div>
  95. <div class="tit">
  96. <span class="left"></span><span>是否有父类:</span>
  97. </div>
  98. <div class="green">
  99. </span><switch ng-model="addparent"></switch>
  100. </div>
  101. <div class="tit" ng-show="addparent==true">
  102. <span class="left">*</span><span>父类名称:</span>
  103. </div>
  104. <div ng-show="addparent==true">
  105. <span class="left"></span>
  106. <multi-select-tree ng-model="add_file_parent" data-input-model="tree_data" data-output-model="adddata.parent" theme="bootstrap" multi-select="false" data-default-label="父类名称" data-callback="onAddFilterCallback(item)" data-select-only-leafs="false" data-trans-label="label"
  107. data-switch-view="false"></multi-select-tree>
  108. </div>
  109. </div>
  110. <div class="foot">
  111. <input type="button" value="保存" ng-click="add_save()" ng-disabled="add_duoci">
  112. <button ng-click="close_add_box()">取消</button>
  113. </div>
  114. <div class="parent_bring_box">
  115. <span class="parent_bring">
  116. {{modify_data.label}}
  117. <span ng-click="parent_bring_box_hide()">×</span>
  118. </span>
  119. </div>
  120. </div>
  121. <!-- 修改弹框 -->
  122. <div class="modify_box">
  123. <div class="head">修改文件夹<span ng-click="close_modify_box()">×</span></div>
  124. <div class="body">
  125. <div class="tit">
  126. <span class="left">*</span><span>文件夹名称:</span>
  127. </div>
  128. <div>
  129. <span class="left"></span><input type="text" class="file_name" placeholder="请输入文件夹名称" ng-model="modify_file_name" maxlength="20">
  130. </div>
  131. <div class="tit">
  132. <span class="left"></span><span>是否更换父类:</span>
  133. </div>
  134. <div class="green">
  135. </span><switch ng-model="editparent"></switch>
  136. </div>
  137. <div class="tit" ng-show="editparent==true">
  138. <span class="left">*</span><span>父类名称:</span>
  139. </div>
  140. <div ng-show="editparent==true">
  141. <span class="left"></span>
  142. <multi-select-tree ng-model="edit_file_parent" data-input-model="tree_data" data-output-model="adddata.parent" theme="bootstrap" multi-select="false" data-default-label="父类名称" data-callback="onEditFilterCallback(item)" data-select-only-leafs="false" data-trans-label="label"
  143. data-switch-view="false"></multi-select-tree>
  144. </div>
  145. </div>
  146. <div class="foot">
  147. <button ng-click="modify_save()">保存</button>
  148. <button ng-click="close_modify_box()">取消</button>
  149. </div>
  150. </div>
  151. <!-- 确定删除树弹框 -->
  152. <div class="deleteTree_box">
  153. <div class="head">提示</div>
  154. <div class="body">
  155. <div>请输入登录密码:</div>
  156. <div class="titsc"><i class="iconfont icon-gantan"></i>输入登录密码后,点击"确认",<span class="file_name">{{modify_data.label}}</span>文件夹以及<span class="file_name">{{modify_data.label}}</span>文件夹下的所有文件将被删除!</div>
  157. </div>
  158. <div class="foot">
  159. <button ng-click="delete_sure()">确定</button>
  160. <button ng-click="close_delete_box()">取消</button>
  161. </div>
  162. </div>
  163. <!-- 确定删除文件弹框 -->
  164. <div class="deleteDoc_box">
  165. <div class="head">提示</div>
  166. <div class="body">
  167. <div>请输入登录密码:</div>
  168. <div class="titsc"><i class="iconfont icon-gantan"></i>输入登录密码后,点击"确认",<span class="file_name">{{list_doc_name}}</span>文件以及文件下{{list_doc_version}}个版本将被删除!</div>
  169. </div>
  170. <div class="foot">
  171. <button ng-click="delete_doc_sure()">确定</button>
  172. <button ng-click="close_doc_delete_box()">取消</button>
  173. </div>
  174. </div>
  175. <!-- 确认删除历史版本弹框 -->
  176. <div class="deleteVersion_box">
  177. <div class="head">提示</div>
  178. <div class="body">
  179. <div>请输入登录密码:</div>
  180. <div class="titsc"><i class="iconfont icon-gantan"></i>输入登录密码后,点击"确认",该历史版本将被删除!</div>
  181. </div>
  182. <div class="foot">
  183. <button ng-click="delete_version_sure()">确定</button>
  184. <button ng-click="close_version_delete_box()">取消</button>
  185. </div>
  186. </div>
  187. <!-- 修改文件夹名称弹框 -->
  188. <div class="modify_file_box">
  189. <div class="head">修改文件夹<span ng-click="close_modify_file_box()">×</span></div>
  190. <div class="body">
  191. <div class="tit">
  192. <span class="left">*</span><span>文件夹名称:</span>
  193. </div>
  194. <div>
  195. <span class="left"></span><input type="text" class="file_name" placeholder="请输入文件夹名称" ng-model="modify_open_file_name" maxlength="20">
  196. </div>
  197. </div>
  198. <div class="foot">
  199. <button ng-click="modify_file_save()">保存</button>
  200. <button ng-click="close_modify_file_box()">取消</button>
  201. </div>
  202. </div>
  203. </div>
  204. <div id="doc_loading" ng-show="doc_loading">
  205. <span>导入中,请稍后</span><br>
  206. <img src="assets/images/loading.gif" alt="">
  207. </div>
  208. </div>
  209. <style>
  210. .new_file{
  211. display: inline-block;
  212. width: 50px;
  213. height: 20px;
  214. cursor: pointer;
  215. color: #6f9ad4;
  216. position: relative;
  217. }
  218. .new_file input{
  219. opacity: 0;
  220. width: 50px;
  221. height: 20px;
  222. position: absolute;
  223. left: 0;
  224. top: 0;
  225. cursor: pointer;
  226. }
  227. #doc_loading{
  228. width: 100%;
  229. height: 100%;
  230. position: fixed;
  231. left: 0;
  232. top: 0;
  233. background-color: rgba(255,255,255,0.7);
  234. display: flex;
  235. justify-content:center;
  236. align-items:center;
  237. z-index: 99998;
  238. /* display: none */
  239. }
  240. #doc_loading img{
  241. width: 50px;
  242. height: 50px;
  243. z-index: 99999;
  244. }
  245. #doc_loading span{
  246. font-size: 24px
  247. }
  248. /* 左侧树 */
  249. .jry_box{
  250. display: flex;
  251. }
  252. .jry_box .title{
  253. height: 25px;
  254. line-height: 25px;
  255. font-size: 16px;
  256. }
  257. .jry_box .folder{
  258. border:1px rgb(185, 184, 184) solid;
  259. height: 535px;
  260. border-radius: 2px;
  261. margin-top: 6px
  262. }
  263. /* table栏 */
  264. .jry_box .jry_table{
  265. display: flex;
  266. height: 25px;
  267. border:1px #dddddd solid
  268. }
  269. .jry_box .jry_table div{
  270. height: 25px;
  271. line-height: 25px;
  272. text-align: center;
  273. width: 50%;
  274. font-size: 12px;
  275. color: #666666;
  276. cursor: pointer;
  277. }
  278. .jry_box .jry_table .tab_select{
  279. background-color: rgb(0,83,149);
  280. color: white
  281. }
  282. /* 操作三个按钮 */
  283. .jry_box .folder .operation{
  284. height: 35px;
  285. background-color: rgb(245,245,245)
  286. }
  287. .jry_box .folder .operation div{
  288. float: left;
  289. width: 33%;
  290. height: 35px;
  291. text-align: center;
  292. line-height: 35px;
  293. cursor: pointer;
  294. }
  295. .jry_box .folder .operation div:nth-child(2){
  296. border-left:1px rgb(230,230,230) solid;
  297. border-right:1px rgb(230,230,230) solid
  298. }
  299. .jry_box .folder .operation div:hover{
  300. color: rgb(62,125,175)
  301. }
  302. /* 搜索 */
  303. .jry_box .folder .search{
  304. height: 25px;
  305. margin: 0 auto;
  306. display: flex;
  307. justify-content:center;
  308. margin-top: 8px
  309. }
  310. .jry_box .folder .search input{
  311. border-radius: 4px 0 0 4px;
  312. height: 25px;
  313. width: 85%
  314. }
  315. .jry_box .folder .search input:focus{
  316. outline: none
  317. }
  318. .jry_box .folder .search input::-webkit-input-placeholder{
  319. font-size: 13px;
  320. color: rgb(180, 179, 179)
  321. }
  322. .jry_box .folder .search i{
  323. display: inline-block;
  324. height: 24.5px;
  325. width: 25px;
  326. line-height: 26px;
  327. text-align: center;
  328. border-radius: 0px 4px 4px 0px;
  329. font-size: 14px;
  330. color: rgb(192, 191, 191);
  331. border: 1px rgb(222, 222, 222) solid;
  332. margin-left: -1px;
  333. cursor: pointer;
  334. }
  335. /* 树 */
  336. .jry_box .folder .tree{
  337. height: 422px;
  338. overflow: hidden;
  339. margin-top: 8px;
  340. overflow-y: scroll;
  341. }
  342. .jry_box .folder .tree a{
  343. display: inline-block;
  344. width: 100%;
  345. overflow: hidden;
  346. white-space: nowrap;
  347. text-overflow: ellipsis
  348. }
  349. .jry_box .folder .tree .left_search_datas{
  350. /* display: inline-block; */
  351. width: 100%;
  352. overflow: hidden;
  353. white-space: nowrap;
  354. text-overflow: ellipsis
  355. }
  356. .jry_box .folder .tree::-webkit-scrollbar{
  357. display: none
  358. }
  359. .jry_box .folder .tree i{
  360. font-size: 14px
  361. }
  362. /* 背景蒙版 */
  363. .fix_back{
  364. position: fixed;
  365. left: 0;
  366. top: 0;
  367. width: 100%;
  368. height: 100%;
  369. background-color: rgba(0,0,0,0.5);
  370. z-index: 99999;
  371. }
  372. /* 新增弹框 */
  373. .fix_back .add_new_box{
  374. width: 340px;
  375. height: 325px;
  376. background-color: white;
  377. margin-left: -170px;
  378. margin-top: -162px;
  379. position: absolute;
  380. left: 50%;
  381. top: 50%;
  382. border-radius: 2px;
  383. display: none
  384. }
  385. /* 父类带出弹框 */
  386. .parent_bring_box{
  387. width: 150px;
  388. height: 26px;
  389. position: absolute;
  390. left: 37px;
  391. top: 222px;
  392. background-color: white;
  393. line-height: 26px;
  394. display: none
  395. }
  396. .parent_bring_box .parent_bring{
  397. padding: 2px 6px;
  398. border-radius: 2px;
  399. border:1px rgb(27,136,255) solid;
  400. overflow: hidden;
  401. position: relative
  402. }
  403. .parent_bring_box .parent_bring span{
  404. color: white;
  405. position: absolute;
  406. right: -1px;
  407. top: -1px;
  408. /* width: 10px; */
  409. border-top: 8px #1b88ff solid;
  410. border-bottom: 8px transparent solid;
  411. border-left: 8px transparent solid;
  412. border-right: 8px #1b88ff solid;
  413. text-align: center;
  414. line-height: 0px;
  415. display: inline-block;
  416. width: 5px;
  417. height: 5px;
  418. font-size: 6px;
  419. cursor: pointer;
  420. }
  421. /* .fix_back .add_new_box .fix_back .add_new_box .tree-control .tree-input{
  422. overflow: hidden;
  423. } */
  424. .fix_back .add_new_box .tree-control .tree-view{
  425. height: 230px;
  426. overflow: hidden;
  427. overflow-y: scroll
  428. }
  429. .fix_back .add_new_box .tree-control .tree-view::-webkit-scrollbar{
  430. display: none
  431. }
  432. .fix_back .add_new_box .head{
  433. height: 45px;
  434. line-height:45px;
  435. text-align: center;
  436. font-size: 17px;
  437. border-bottom: 2px rgb(245,245,245) solid;
  438. position: relative;
  439. }
  440. .fix_back .add_new_box .head span{
  441. display: inline-block;
  442. width: 14px;
  443. height: 14px;
  444. border-radius: 50%;
  445. border: 1px black solid;
  446. position: absolute;
  447. right: 14px;
  448. top: 15px;
  449. line-height: 11px;
  450. cursor: pointer;
  451. }
  452. .fix_back .add_new_box .body{
  453. width: 90%;
  454. height: 230px;
  455. border:1px rgb(240,240,240) solid;
  456. border-radius: 2px;
  457. margin: 0 auto;
  458. margin-top: 5px;
  459. background-color: #f3f3f3;
  460. }
  461. .fix_back .add_new_box .body .tit{
  462. height: 30px;
  463. line-height: 30px;
  464. font-size: 13px;
  465. }
  466. .fix_back .add_new_box .body .left{
  467. display: inline-block;
  468. width: 15px;
  469. text-align: center;
  470. color: red;
  471. }
  472. .fix_back .add_new_box .body .green{
  473. padding-left: 15px
  474. }
  475. .fix_back .add_new_box .foot{
  476. display: flex;
  477. justify-content:center;
  478. align-items:center;
  479. height: 45px;
  480. }
  481. .fix_back .add_new_box .foot button{
  482. width: 80px;
  483. height: 34px;
  484. border-radius: 2px;
  485. cursor: pointer;
  486. }
  487. .fix_back .add_new_box .foot input{
  488. width: 80px;
  489. height: 34px;
  490. border-radius: 2px;
  491. cursor: pointer;
  492. border:1px rgb(0,83,149) solid;
  493. background-color: rgb(0,83,149);
  494. color: white
  495. }
  496. /* .fix_back .add_new_box .foot button:nth-child(1){
  497. } */
  498. .fix_back .add_new_box .foot button:nth-child(2){
  499. border:1px rgb(230,230,230) solid;
  500. background-color: white;
  501. color: rgb(128, 123, 123);
  502. margin-left: 10px
  503. }
  504. .fix_back .add_new_box .file_name{
  505. width: 260px;
  506. height: 31px;
  507. }
  508. .fix_back .add_new_box .file_name::-webkit-input-placeholder{
  509. font-size: 13px;
  510. color: rgb(180,180,180)
  511. }
  512. .fix_back .add_new_box .tree-control .tree-input{
  513. margin-left: 15px;
  514. width: 90%;
  515. }
  516. .fix_back .add_new_box .tree-control .tree-view{
  517. min-width: 293px!important;
  518. margin-left: 14px;
  519. width: 293px
  520. }
  521. /* 修改弹框 */
  522. .fix_back .modify_box{
  523. width: 340px;
  524. height: 325px;
  525. margin-left: -170px;
  526. margin-top: -96px;
  527. position: absolute;
  528. left: 50%;
  529. top: 50%;
  530. background-color: white;
  531. border-radius: 2px;
  532. display: none
  533. }
  534. .fix_back .modify_box .head{
  535. height: 45px;
  536. line-height:45px;
  537. text-align: center;
  538. font-size: 17px;
  539. border-bottom: 2px rgb(245,245,245) solid;
  540. position: relative;
  541. }
  542. .fix_back .modify_box .head span{
  543. display: inline-block;
  544. width: 14px;
  545. height: 14px;
  546. border-radius: 50%;
  547. border: 1px black solid;
  548. position: absolute;
  549. right: 14px;
  550. top: 15px;
  551. line-height: 11px;
  552. cursor: pointer;
  553. }
  554. .fix_back .modify_box .body{
  555. width: 90%;
  556. height: 230px;
  557. border:1px rgb(240,240,240) solid;
  558. border-radius: 2px;
  559. margin: 0 auto;
  560. margin-top: 5px;
  561. background-color: #f3f3f3
  562. }
  563. .fix_back .modify_box .body .green{
  564. padding-left: 15px
  565. }
  566. .fix_back .modify_box .body .tit{
  567. height: 30px;
  568. line-height: 30px;
  569. font-size: 13px;
  570. }
  571. .fix_back .modify_box .body .left{
  572. display: inline-block;
  573. width: 15px;
  574. text-align: center;
  575. color: red;
  576. }
  577. .fix_back .modify_box .file_name{
  578. width: 260px;
  579. height: 31px;
  580. }
  581. .fix_back .modify_box .file_name::-webkit-input-placeholder{
  582. font-size: 13px;
  583. color: rgb(180,180,180)
  584. }
  585. .fix_back .modify_box .tree-control .tree-input{
  586. margin-left: 15px;
  587. width: 90%;
  588. }
  589. .fix_back .modify_box .tree-control .tree-view{
  590. min-width: 293px!important;
  591. margin-left: 14px;
  592. width: 293px
  593. }
  594. .fix_back .modify_box .foot{
  595. display: flex;
  596. justify-content:center;
  597. align-items:center;
  598. height: 45px;
  599. }
  600. .fix_back .modify_box .foot button{
  601. width: 80px;
  602. height: 34px;
  603. border-radius: 2px;
  604. cursor: pointer;
  605. }
  606. .fix_back .modify_box .foot button:nth-child(1){
  607. border:1px rgb(0,83,149) solid;
  608. background-color: rgb(0,83,149);
  609. color: white
  610. }
  611. .fix_back .modify_box .foot button:nth-child(2){
  612. border:1px rgb(230,230,230) solid;
  613. background-color: white;
  614. color: rgb(128, 123, 123);
  615. margin-left: 10px
  616. }
  617. /* 修改文件夹名称弹框 */
  618. .fix_back .modify_file_box{
  619. width: 340px;
  620. height: 192px;
  621. margin-left: -170px;
  622. margin-top: -96px;
  623. position: absolute;
  624. left: 50%;
  625. top: 50%;
  626. background-color: white;
  627. border-radius: 2px;
  628. display: none
  629. }
  630. .fix_back .modify_file_box .head{
  631. height: 45px;
  632. line-height:45px;
  633. text-align: center;
  634. font-size: 17px;
  635. border-bottom: 2px rgb(245,245,245) solid;
  636. position: relative;
  637. }
  638. .fix_back .modify_file_box .head span{
  639. display: inline-block;
  640. width: 14px;
  641. height: 14px;
  642. border-radius: 50%;
  643. border: 1px black solid;
  644. position: absolute;
  645. right: 14px;
  646. top: 15px;
  647. line-height: 11px;
  648. cursor: pointer;
  649. }
  650. .fix_back .modify_file_box .body{
  651. width: 90%;
  652. height: 100px;
  653. border:1px rgb(240,240,240) solid;
  654. border-radius: 2px;
  655. margin: 0 auto;
  656. margin-top: 5px;
  657. background-color: #f3f3f3
  658. }
  659. .fix_back .modify_file_box .body .tit{
  660. height: 30px;
  661. line-height: 30px;
  662. font-size: 13px;
  663. }
  664. .fix_back .modify_box .body .left{
  665. display: inline-block;
  666. width: 15px;
  667. text-align: center;
  668. color: red;
  669. }
  670. .fix_back .modify_file_box .file_name{
  671. width: 260px;
  672. height: 31px;
  673. }
  674. .fix_back .modify_file_box .foot{
  675. display: flex;
  676. justify-content:center;
  677. align-items:center;
  678. height: 45px;
  679. }
  680. .fix_back .modify_file_box .foot button{
  681. width: 80px;
  682. height: 34px;
  683. border-radius: 2px;
  684. cursor: pointer;
  685. }
  686. .fix_back .modify_file_box .foot button:nth-child(1){
  687. border:1px rgb(0,83,149) solid;
  688. background-color: rgb(0,83,149);
  689. color: white
  690. }
  691. .fix_back .modify_file_box .foot button:nth-child(2){
  692. border:1px rgb(230,230,230) solid;
  693. background-color: white;
  694. color: rgb(128, 123, 123);
  695. margin-left: 10px
  696. }
  697. /* 删除树弹框 */
  698. .fix_back .deleteTree_box{
  699. width: 350px;
  700. height: 219px;
  701. margin-left: -180px;
  702. margin-top: -150px;
  703. position: absolute;
  704. left: 50%;
  705. top: 50%;
  706. background-color: white;
  707. border-radius: 2px;
  708. display: none
  709. }
  710. .fix_back .deleteTree_box .head{
  711. height: 35px;
  712. line-height: 35px;
  713. font-size: 14px;
  714. border-bottom: 2px rgb(245,245,245) solid;
  715. position: relative;
  716. padding-left: 12px;
  717. color: rgb(74,218,714)
  718. }
  719. .fix_back .deleteTree_box .body{
  720. width: 90%;
  721. height: 130px;
  722. border: 1px rgb(240,240,240) solid;
  723. border-radius: 2px;
  724. margin: 0 auto;
  725. margin-top: 5px;
  726. /* line-height: 115px; */
  727. background-color: #f3f3f3;
  728. padding: 5px;
  729. overflow: hidden;
  730. /* white-space: nowrap; */
  731. text-overflow: ellipsis
  732. /* text-align: center; */
  733. }
  734. .fix_back .deleteTree_box .body i{
  735. font-size: 14px;
  736. color: red
  737. }
  738. .fix_back .deleteTree_box .body .titsc{
  739. color: rgb(74,218,714);
  740. width: 100%
  741. }
  742. .fix_back .deleteTree_box .body .titsc .file_name{
  743. /* color: black */
  744. }
  745. .fix_back .deleteTree_box .password{
  746. width: 300px;
  747. height: 31px;
  748. /* z-index: 999999; */
  749. margin-top: 5px;
  750. }
  751. .fix_back .deleteTree_box .foot{
  752. display: flex;
  753. justify-content:center;
  754. align-items:center;
  755. height: 45px;
  756. }
  757. .fix_back .deleteTree_box .foot button{
  758. width: 80px;
  759. height: 34px;
  760. border-radius: 2px;
  761. cursor: pointer;
  762. }
  763. .fix_back .deleteTree_box .foot button:nth-child(1){
  764. border:1px rgb(0,83,149) solid;
  765. background-color: rgb(0,83,149);
  766. color: white
  767. }
  768. .fix_back .deleteTree_box .foot button:nth-child(2){
  769. border:1px rgb(230,230,230) solid;
  770. background-color: white;
  771. color: rgb(128, 123, 123);
  772. margin-left: 10px
  773. }
  774. /* 删除文件弹框 */
  775. .fix_back .deleteDoc_box{
  776. width: 350px;
  777. height: 219px;
  778. margin-left: -180px;
  779. margin-top: -150px;
  780. position: absolute;
  781. left: 50%;
  782. top: 50%;
  783. background-color: white;
  784. border-radius: 2px;
  785. display: none
  786. }
  787. .fix_back .deleteDoc_box .head{
  788. height: 35px;
  789. line-height: 35px;
  790. font-size: 14px;
  791. border-bottom: 2px rgb(245,245,245) solid;
  792. position: relative;
  793. padding-left: 12px;
  794. color: rgb(74,218,714)
  795. }
  796. .fix_back .deleteDoc_box .body{
  797. width: 90%;
  798. height: 130px;
  799. border: 1px rgb(240,240,240) solid;
  800. border-radius: 2px;
  801. margin: 0 auto;
  802. margin-top: 5px;
  803. /* line-height: 115px; */
  804. background-color: #f3f3f3;
  805. padding: 5px;
  806. overflow: hidden;
  807. /* white-space: nowrap; */
  808. text-overflow: ellipsis
  809. /* text-align: center; */
  810. }
  811. .fix_back .deleteDoc_box .body i{
  812. font-size: 14px;
  813. color: red
  814. }
  815. .fix_back .deleteDoc_box .body .titsc{
  816. color: rgb(74,218,714);
  817. width: 100%
  818. }
  819. .fix_back .deleteDoc_box .body .titsc .file_name{
  820. /* color: black */
  821. }
  822. .fix_back .deleteDoc_box .password{
  823. width: 300px;
  824. height: 31px;
  825. /* z-index: 999999; */
  826. margin-top: 5px;
  827. }
  828. .fix_back .deleteDoc_box .foot{
  829. display: flex;
  830. justify-content:center;
  831. align-items:center;
  832. height: 45px;
  833. }
  834. .fix_back .deleteDoc_box .foot button{
  835. width: 80px;
  836. height: 34px;
  837. border-radius: 2px;
  838. cursor: pointer;
  839. }
  840. .fix_back .deleteDoc_box .foot button:nth-child(1){
  841. border:1px rgb(0,83,149) solid;
  842. background-color: rgb(0,83,149);
  843. color: white
  844. }
  845. .fix_back .deleteDoc_box .foot button:nth-child(2){
  846. border:1px rgb(230,230,230) solid;
  847. background-color: white;
  848. color: rgb(128, 123, 123);
  849. margin-left: 10px
  850. }
  851. /* 删除历史弹框 */
  852. .fix_back .deleteVersion_box{
  853. width: 350px;
  854. height: 219px;
  855. margin-left: -180px;
  856. margin-top: -150px;
  857. position: absolute;
  858. left: 50%;
  859. top: 50%;
  860. background-color: white;
  861. border-radius: 2px;
  862. display: none
  863. }
  864. .fix_back .deleteVersion_box .head{
  865. height: 35px;
  866. line-height: 35px;
  867. font-size: 14px;
  868. border-bottom: 2px rgb(245,245,245) solid;
  869. position: relative;
  870. padding-left: 12px;
  871. color: rgb(74,218,714)
  872. }
  873. .fix_back .deleteVersion_box .body{
  874. width: 90%;
  875. height: 130px;
  876. border: 1px rgb(240,240,240) solid;
  877. border-radius: 2px;
  878. margin: 0 auto;
  879. margin-top: 5px;
  880. /* line-height: 115px; */
  881. background-color: #f3f3f3;
  882. padding: 5px;
  883. overflow: hidden;
  884. /* white-space: nowrap; */
  885. text-overflow: ellipsis
  886. /* text-align: center; */
  887. }
  888. .fix_back .deleteVersion_box .body i{
  889. font-size: 14px;
  890. color: red
  891. }
  892. .fix_back .deleteVersion_box .body .titsc{
  893. color: rgb(74,218,714);
  894. width: 100%
  895. }
  896. .fix_back .deleteVersion_box .body .titsc .file_name{
  897. /* color: black */
  898. }
  899. .fix_back .deleteVersion_box .password{
  900. width: 300px;
  901. height: 31px;
  902. /* z-index: 999999; */
  903. margin-top: 5px;
  904. }
  905. .fix_back .deleteVersion_box .foot{
  906. display: flex;
  907. justify-content:center;
  908. align-items:center;
  909. height: 45px;
  910. }
  911. .fix_back .deleteVersion_box .foot button{
  912. width: 80px;
  913. height: 34px;
  914. border-radius: 2px;
  915. cursor: pointer;
  916. }
  917. .fix_back .deleteVersion_box .foot button:nth-child(1){
  918. border:1px rgb(0,83,149) solid;
  919. background-color: rgb(0,83,149);
  920. color: white
  921. }
  922. .fix_back .deleteVersion_box .foot button:nth-child(2){
  923. border:1px rgb(230,230,230) solid;
  924. background-color: white;
  925. color: rgb(128, 123, 123);
  926. margin-left: 10px
  927. }
  928. .left_search_datas{
  929. padding-left: 10px;
  930. cursor: pointer;
  931. height: 30px;
  932. line-height: 30px
  933. }
  934. /* 下拉搜索点击背景 */
  935. .cli_bg{
  936. background-color: rgb(233,249,248)
  937. }
  938. .left_search_datas:hover{
  939. background-color: rgb(238,238,238)
  940. }
  941. /* 右侧文件列表 */
  942. .jry_box .file{
  943. border:1px rgb(185, 184, 184) solid;
  944. height: 535px;
  945. border-radius: 2px;
  946. padding-bottom: 10px;
  947. margin-top: 6px
  948. }
  949. .jry_box .file .head{
  950. background-color: rgb(243,243,243);
  951. /* height: 40px; */
  952. /* line-height: 40px; */
  953. display: flex;
  954. flex-wrap:wrap;
  955. justify-content:space-between;
  956. padding: 0px 0px 10px 0px
  957. }
  958. .jry_box .file .body{
  959. padding: 0 15px
  960. }
  961. .jry_box .file .body .title{
  962. height: 40px;
  963. line-height: 40px
  964. }
  965. .jry_box .file .body .title span:nth-child(1){
  966. font-size: 14px;
  967. color: #000000;
  968. float: left;
  969. }
  970. .jry_box .file .body .title span:nth-child(2){
  971. font-size: 12px;
  972. color:black;
  973. float: left;
  974. margin-left: 10px
  975. }
  976. .jry_box .file .body .title button{
  977. width: 80px;
  978. height: 28px;
  979. line-height: 26px;
  980. color:#005395;
  981. border: 1px #005395 solid;
  982. background-color: rgb(230,238,244);
  983. float: right;
  984. margin-top: 6px;
  985. cursor: pointer;
  986. border-radius: 2px;
  987. margin-right: 10px
  988. }
  989. .jry_box .file .body .grid_height>div{
  990. height: 400px;
  991. }
  992. .jry_box .file .head .left{
  993. width: 82%;
  994. display: flex;
  995. flex-wrap:wrap
  996. }
  997. .jry_box .file .head .left .children{
  998. width: 250px;
  999. margin-top: 10px
  1000. }
  1001. .jry_box .file .head .right{
  1002. width: 18%;
  1003. display: flex;
  1004. justify-content:flex-end
  1005. }
  1006. .jry_box .file .head .spa{
  1007. display: inline-block;
  1008. margin-left: 10px;
  1009. font-size: 14px;
  1010. color: #333333
  1011. }
  1012. .jry_box .file .head input:focus{
  1013. outline: none
  1014. }
  1015. .jry_box .file .head .tab-mainDiv-body-content{
  1016. width: 160px;
  1017. display: inline-block
  1018. }
  1019. .jry_box .file .head .ipt{
  1020. width: 150px;
  1021. height: 30px;
  1022. }
  1023. .jry_box .file .head button{
  1024. width: 60px;
  1025. height: 28px;
  1026. border-radius: 2px;
  1027. cursor: pointer;
  1028. margin-top: 10px
  1029. }
  1030. .jry_box .file .head .btn-default-focus{
  1031. box-shadow:inset 0 1px 1px rgba(0,0,0,0),0 0 8px rgba(102,175,233,0);
  1032. outline: none
  1033. }
  1034. .jry_box .file .head .ui-select-bootstrap>.ui-select-match>.btn{
  1035. margin-bottom: 5px
  1036. }
  1037. .jry_box .file .head .search{
  1038. border:1px rgb(0,83,149) solid;
  1039. background-color: rgb(0,83,149);
  1040. color: white;
  1041. /* float: right; */
  1042. }
  1043. .jry_box .file .head .clean{
  1044. border:1px rgb(230,230,230) solid;
  1045. background-color: white;
  1046. color: rgb(128, 123, 123);
  1047. margin-left: 10px;
  1048. margin-right: 10px;
  1049. /* float: right; */
  1050. }
  1051. .sweet-alert button{
  1052. margin-top: 16px
  1053. }
  1054. </style>