瀏覽代碼

优化页面

seimin 5 月之前
父節點
當前提交
a1ba7b25c1
共有 2 個文件被更改,包括 6 次插入1 次删除
  1. 1 1
      src/app/views/fuwutai/fuwutai.component.html
  2. 5 0
      src/app/views/fuwutai/fuwutai.component.less

+ 1 - 1
src/app/views/fuwutai/fuwutai.component.html

@@ -1567,7 +1567,7 @@
1567 1567
                           <nz-form-item>
1568 1568
                             <nz-form-label class="label" [nzSm]="2" [nzXs]="2" nzRequired nzFor="taskTypeQt">类型</nz-form-label>
1569 1569
                             <div class="ellipsis-oneline">
1570
-                              <span class="customRemarks mr8" [ngClass]="{ active: countRemarkIndex == i }" (click)="addCountRemark(item, index, i)" *ngFor="let item of countRemarkList;let i = index;">{{ item }}</span>
1570
+                              <span class="customRemarks mr8 countRemark" [ngClass]="{ active: countRemarkIndex == i }" (click)="addCountRemark(item, index, i)" *ngFor="let item of countRemarkList;let i = index;">{{ item }}</span>
1571 1571
                             </div>
1572 1572
                             <nz-form-control class="control" [nzSm]="24" [nzXs]="24" nzErrorTip="请选择类型!">
1573 1573
                               <div class="radios" style="height: 225px" *ngIf="!searchTaskLoading">

+ 5 - 0
src/app/views/fuwutai/fuwutai.component.less

@@ -148,8 +148,13 @@
148 148
     height: 24px;
149 149
     line-height: 24px;
150 150
     word-break: keep-all;
151
+    &.countRemark{
152
+      text-decoration: underline;
153
+      color: #000;
154
+    }
151 155
     &.active{
152 156
       font-weight: bold;
157
+      color: @primary-color;
153 158
     }
154 159
   }
155 160