seimin преди 1 година
родител
ревизия
1f0517d455
променени са 2 файла, в които са добавени 6 реда и са изтрити 6 реда
  1. 1 1
      proxy.conf.json
  2. 5 5
      src/app/views/task-type-management/task-type-management.component.html

+ 1 - 1
proxy.conf.json

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "/service": {
3
-    "target": "http://192.168.4.241",
3
+    "target": "http://192.168.3.108",
4 4
     "logLevel": "debug",
5 5
     "changeOrigin": true,
6 6
     "pathRewrite": {

+ 5 - 5
src/app/views/task-type-management/task-type-management.component.html

@@ -1324,21 +1324,21 @@
1324 1324
     <div class="content">
1325 1325
       <form nz-form [formGroup]="validateActionForm" class="addForm">
1326 1326
         <nz-form-item>
1327
-          <nz-form-label style="line-height: normal;" [nzSm]="6" [nzXs]="24" nzFor="actions">备注快捷输入</nz-form-label>
1328
-          <nz-form-control nzErrorTip="请输入备注快捷输入!">
1327
+          <nz-form-label style="line-height: normal;" [nzSm]="6" [nzXs]="24" nzFor="actions">动作</nz-form-label>
1328
+          <nz-form-control nzErrorTip="请输入动作!">
1329 1329
             <nz-input-group>
1330 1330
               <input (ngModelChange)="actionsChange()" nz-input formControlName="actions"
1331
-                placeholder="请填写备注快捷输入" />
1331
+                placeholder="请填写动作" />
1332 1332
             </nz-input-group>
1333 1333
             <nz-input-group *ngFor="let action of actionses;let index = index" class="dynamic">
1334 1334
               <input nz-input [ngModel]="action.content" [ngModelOptions]="{standalone: true}"
1335
-                placeholder="请填写备注快捷输入" (ngModelChange)="actionsChange($event,action)" />
1335
+                placeholder="请填写动作" (ngModelChange)="actionsChange($event,action)" />
1336 1336
               <i nz-icon nzType="minus-circle-o" (click)="removeActions(index, $event)"></i>
1337 1337
             </nz-input-group>
1338 1338
             <button nz-button nzType="dashed" [disabled]="isAddActions" *ngIf="actionses.length < 9"
1339 1339
               class="add-button" (click)="addAction($event)">
1340 1340
               <i nz-icon nzType="plus"></i>
1341
-              添加备注快捷输入
1341
+              添加动作
1342 1342
             </button>
1343 1343
           </nz-form-control>
1344 1344
         </nz-form-item>