123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <style>
- .tree-control .tree-input {
- min-height: 30px!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);
- }
- </style>
- <div ng-controller="knowledgeformCtrl">
- <!--{{title}}-->
- <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">
- <div ng-if="lishi_show!='knowledge_create'">
- <div class="jry_history">
- <span class="tit">历史纪录</span>
- <span class="more" ng-click="to_history()">更多>></span>
- </div>
- <div class="jry_lists_box">
- <div class="jry_lists" ng-repeat="v in historyData" ng-click="other_to_lishi(v)">
- <span>{{v.solutionnumber}}</span>
- <span class="yuan"></span>
- <span>{{v.createtime}}</span>
- <span>{{v.createUser.name}}</span>
- <span><<{{v.title}}>></span>
- <span class="see">查看</span>
- </div>
- </div>
- </div>
- <button type="submit" ladda="ldloading.sm" class="btn btn-addbutton addbutton" translate="form.button.SUBMIT">Submit</button>
- <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>
|