123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- <style>
- .tree-control .tree-input {
- min-height: 34px!important;
- padding-top: 5px;
- }
-
- .tree-control .tree-view .item-container:hover,
- .tree-control .tree-view .selected,
- .tree-control .tree-view .active {
- background-color: #428bca;
- background-image: linear-gradient(#428bca, #428bca)!important;
- background: #428bca;
- color: #fff;
- }
-
- .tree-control .tree-view .item-container:hover .expand,
- .tree-control .tree-view .selected .expand,
- .tree-control .tree-view .active .expand {
- border-left: 10px solid #fff;
- }
-
- .tree-control .tree-view .item-container:hover .expand-opened,
- .tree-control .tree-view .selected .expand-opened,
- .tree-control .tree-view .active .expand-opened {
- border-bottom: 0px solid transparent;
- border-left: 6px solid transparent;
- border-right: 6px solid transparent;
- border-top: 10px solid #fff;
- }
- .jry_history{
- width: 100%;
- height: 40px;
- line-height: 40px;
- background-color: rgb(234,234,234);
- border-radius: 4px
- }
- .jry_history .tit{
- float: left;
- margin-left: 8px;
- font-weight: bold;
- font-size: 16px
- }
- .jry_history .more{
- float: right;
- margin-right: 8px;
- color: rgb(30, 108, 172);
- cursor: pointer;
- }
- .jry_lists_box{
- width: 100%;
- height: 200px;
- background-color: rgb(249,249,249);
- overflow: hidden;
- overflow-y: scroll
- }
- .jry_lists_box .jry_lists{
- width: 100%;
- height: 30px;
- line-height: 30px;
- }
- .jry_lists_box .jry_lists span{
- float: left;
- margin-left: 20px;
- color: rgb(160,160,160)
- }
- .jry_lists_box .jry_lists .yuan{
- width: 10px;
- height: 10px;
- border-radius: 50%;
- background-color: rgb(121,163,196);
- margin-top: 10px
- }
- .jry_lists_box .jry_lists .see{
- color: rgb(24,29,159);
- text-decoration: underline;
- cursor: pointer;
- }
- .jry_lists_box .jry_lists:nth-child(1) span{
- color: black
- }
- .jry_lists_box .jry_lists:nth-child(1) .yuan{
- background-color: rgb(0,67,122);
- }
- .zuo{
- float: left;
- width: 26%;
- margin-left: 1%;
- margin-right: 3%
- }
- .zuo .jilu{
- width: 100%;
- height: 560px;
- border:1px rgb(230,230,230) solid;
- overflow: hidden;
- overflow-y: scroll;
- border-radius: 4px;
- padding: 10px;
- background-color: white
- }
- .zuo .jilu .liLuList{
- height: 30px;
- line-height: 30px;
- cursor: pointer;
- }
- .zuo .jilu .liLuList:hover{
- background-color: rgb(230,238,244)
- }
- .jiLuBH{
- background-color: rgb(230,238,244)
- }
- .you{
- width: 70%;
- float: left;
- }
- .history_big{
- background-color: rgb(249,249,249);
- float: left;
- }
- </style>
- <div ng-controller="knowledgeformCtrl">
- <section id="page-title">
- <div class="row">
- <div class="col-sm-8">
- <h1 class="mainTitle">知识库历史记录
- <i tooltip='业务系统列表,点击操作处理任务' tooltip-placement="right" class="fa ti-help-alt margin-left-10 fontcolor-five pointfont"></i>
- </h1>
- </div>
- </div>
- </section>
- <div class="history_big">
- <div class="zuo">
- <div>历史记录:</div>
- <div class="jilu">
- <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>
- </div>
- </div>
- <!--{{title}}-->
- <div class="you">
- <form ng-submit="vm.submit(vm.model,'sm')">
- <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form" ng-if="vm.fields.length">
- <div></div>
- <div class="col-xs-12 margin-top-30 margin-bottom-30 text-center">
- <button type="close" class="btn btn-removebutton removebutton" ng-click="closeModel(vm.model)" translate="form.button.CLOSE">CLOSE </button>
- <!-- <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> -->
- </div>
- </formly-form>
- </form>
- </div>
- </div>
- </div>
|