list.html 33 KB

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