knowledgelishi.html 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <style>
  2. .tree-control .tree-input {
  3. min-height: 34px!important;
  4. padding-top: 5px;
  5. }
  6. .tree-control .tree-view .item-container:hover,
  7. .tree-control .tree-view .selected,
  8. .tree-control .tree-view .active {
  9. background-color: #428bca;
  10. background-image: linear-gradient(#428bca, #428bca)!important;
  11. background: #428bca;
  12. color: #fff;
  13. }
  14. .tree-control .tree-view .item-container:hover .expand,
  15. .tree-control .tree-view .selected .expand,
  16. .tree-control .tree-view .active .expand {
  17. border-left: 10px solid #fff;
  18. }
  19. .tree-control .tree-view .item-container:hover .expand-opened,
  20. .tree-control .tree-view .selected .expand-opened,
  21. .tree-control .tree-view .active .expand-opened {
  22. border-bottom: 0px solid transparent;
  23. border-left: 6px solid transparent;
  24. border-right: 6px solid transparent;
  25. border-top: 10px solid #fff;
  26. }
  27. .jry_history{
  28. width: 100%;
  29. height: 40px;
  30. line-height: 40px;
  31. background-color: rgb(234,234,234);
  32. border-radius: 4px
  33. }
  34. .jry_history .tit{
  35. float: left;
  36. margin-left: 8px;
  37. font-weight: bold;
  38. font-size: 16px
  39. }
  40. .jry_history .more{
  41. float: right;
  42. margin-right: 8px;
  43. color: rgb(30, 108, 172);
  44. cursor: pointer;
  45. }
  46. .jry_lists_box{
  47. width: 100%;
  48. height: 200px;
  49. background-color: rgb(249,249,249);
  50. overflow: hidden;
  51. overflow-y: scroll
  52. }
  53. .jry_lists_box .jry_lists{
  54. width: 100%;
  55. height: 30px;
  56. line-height: 30px;
  57. }
  58. .jry_lists_box .jry_lists span{
  59. float: left;
  60. margin-left: 20px;
  61. color: rgb(160,160,160)
  62. }
  63. .jry_lists_box .jry_lists .yuan{
  64. width: 10px;
  65. height: 10px;
  66. border-radius: 50%;
  67. background-color: rgb(121,163,196);
  68. margin-top: 10px
  69. }
  70. .jry_lists_box .jry_lists .see{
  71. color: rgb(24,29,159);
  72. text-decoration: underline;
  73. cursor: pointer;
  74. }
  75. .jry_lists_box .jry_lists:nth-child(1) span{
  76. color: black
  77. }
  78. .jry_lists_box .jry_lists:nth-child(1) .yuan{
  79. background-color: rgb(0,67,122);
  80. }
  81. .zuo{
  82. float: left;
  83. width: 26%;
  84. margin-left: 1%;
  85. margin-right: 3%
  86. }
  87. .zuo .jilu{
  88. width: 100%;
  89. height: 560px;
  90. border:1px rgb(230,230,230) solid;
  91. overflow: hidden;
  92. overflow-y: scroll;
  93. border-radius: 4px;
  94. padding: 10px;
  95. background-color: white
  96. }
  97. .zuo .jilu .liLuList{
  98. height: 30px;
  99. line-height: 30px;
  100. cursor: pointer;
  101. }
  102. .zuo .jilu .liLuList:hover{
  103. background-color: rgb(230,238,244)
  104. }
  105. .jiLuBH{
  106. background-color: rgb(230,238,244)
  107. }
  108. .you{
  109. width: 70%;
  110. float: left;
  111. }
  112. .history_big{
  113. background-color: rgb(249,249,249);
  114. float: left;
  115. }
  116. </style>
  117. <div ng-controller="knowledgeformCtrl">
  118. <section id="page-title">
  119. <div class="row">
  120. <div class="col-sm-8">
  121. <h1 class="mainTitle">知识库历史记录
  122. <i tooltip='业务系统列表,点击操作处理任务' tooltip-placement="right" class="fa ti-help-alt margin-left-10 fontcolor-five pointfont"></i>
  123. </h1>
  124. </div>
  125. </div>
  126. </section>
  127. <div class="history_big">
  128. <div class="zuo">
  129. <div>历史记录:</div>
  130. <div class="jilu">
  131. <div ng-repeat="v in jry_history_data" class="liLuList" ng-class="{true:'jiLuBH'}[v.id==xianshiBG]" ng-click="get_lishi($index)">{{v.visionNumber}}</div>
  132. </div>
  133. </div>
  134. <!--{{title}}-->
  135. <div class="you">
  136. <form ng-submit="vm.submit(vm.model,'sm')">
  137. <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form" ng-if="vm.fields.length">
  138. <div></div>
  139. <div class="col-xs-12 margin-top-30 margin-bottom-30 text-center">
  140. <button type="close" class="btn btn-removebutton removebutton" ng-click="closeModel(vm.model)" translate="form.button.CLOSE">CLOSE </button>
  141. <!-- <button type="button" ladda="ldloading.sm" class="margin-left-5 btn btn-default ladda-button" ng-click="vm.options.resetModel()" translate="form.button.RESET">Reset</button> -->
  142. </div>
  143. </formly-form>
  144. </form>
  145. </div>
  146. </div>
  147. </div>