12345678910111213141516171819202122232425262728293031 |
- <!-- <div>
- <textarea class="form-control autosize msd-elastic: \n;" data-ng-model="model[options.key]" ng-change="to['onChange'](model[options.key], options, this, $event ,model);"></textarea>
- </div> -->
- <div class="jry_tit">故障描述<span class="important_red">*</span>:<span ng-if="!options.templateOptions.isHidden" class="knowledge" tooltip="点击查看可以引用的知识库" tooltip-placement="right" ng-click="openSolution(model[options.key], options, this, $event ,model)">引用知识库</span></div>
- <div>
- <textarea class="form-control autosize msd-elastic: \n;" maxlength="{{to.maxlength}}" data-ng-model="model[options.key]" ng-change="to['onChange'](model[options.key], options, this, $event ,model);" ng-disabled="{{to.readOnly}}" rows="{{options.templateOptions.rows||0}}"></textarea>
- </div>
- <!-- <div ng-if="dlideboxslide" data-ng-include=" 'assets/views/customform/tpl/searchknowledge.html' " toggleable default=active class="seachknowledge panel panel-default hidden-xs hidden-sm " id="seachknowledge"></div> -->
- <!-- <div class="col-md-12" style="z-indx:1px;" >
- <div ckeditor="options" ng-model="model[options.key]" ready="onReady()"></div>
- </div> -->
- <style>
- .jry_tit{
- height: 28px;
- font-size: 14px;
- color: black
- }
- .jry_tit .knowledge{
- color: rgb(74,218,255);
- display: inline-block;
- cursor: pointer;
- font-size: 12px;
- margin-left: 10px
- }
- .jry_tit .knowledge:hover{
- text-decoration: underline
- }
- .important_red{
- color:red
- }
- </style>
|