Browse Source

去掉支助中心端是否能标记重点关注

seimin 3 years ago
parent
commit
4ff6023b54

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

@@ -124,14 +124,14 @@
124
             <label nz-radio nzValue='0'>否</label>
124
             <label nz-radio nzValue='0'>否</label>
125
           </nz-radio-group>
125
           </nz-radio-group>
126
         </div>
126
         </div>
127
-        <div class="mb8 w100"
127
+        <!-- <div class="mb8 w100"
128
           *ngIf="!(association['id'] == 255||association['id'] == 256||association['id'] == 257||association['id'] == 258||association['id'] == 259||association['id'] == 380)">
128
           *ngIf="!(association['id'] == 255||association['id'] == 256||association['id'] == 257||association['id'] == 258||association['id'] == 259||association['id'] == 380)">
129
           <nz-form-label class="label" nzRequired>支助中心是否能标记需要帮助</nz-form-label>
129
           <nz-form-label class="label" nzRequired>支助中心是否能标记需要帮助</nz-form-label>
130
           <nz-radio-group class="handlerType" [(ngModel)]="wechatFocusSwitch">
130
           <nz-radio-group class="handlerType" [(ngModel)]="wechatFocusSwitch">
131
             <label nz-radio nzValue='1'>是</label>
131
             <label nz-radio nzValue='1'>是</label>
132
             <label nz-radio nzValue='0'>否</label>
132
             <label nz-radio nzValue='0'>否</label>
133
           </nz-radio-group>
133
           </nz-radio-group>
134
-        </div>
134
+        </div> -->
135
         <div class="mb8 w100"
135
         <div class="mb8 w100"
136
           *ngIf="!(association['id'] == 255||association['id'] == 257||association['id'] == 258||association['id'] == 260||association['id'] == 380)">
136
           *ngIf="!(association['id'] == 255||association['id'] == 257||association['id'] == 258||association['id'] == 260||association['id'] == 380)">
137
           <nz-form-label class="label" nzRequired>是否需要备注信息</nz-form-label>
137
           <nz-form-label class="label" nzRequired>是否需要备注信息</nz-form-label>

+ 6 - 6
src/app/views/task-type-management/task-type-management.component.ts

@@ -101,7 +101,7 @@ export class TaskTypeManagementComponent implements OnInit {
101
   isHalfInspect = "0"; //是否半陪检
101
   isHalfInspect = "0"; //是否半陪检
102
   isMoreDept = "0"; //关联检查是否允许多个科室
102
   isMoreDept = "0"; //关联检查是否允许多个科室
103
   isRepeatCreateOder = "2"; //限制重复建单
103
   isRepeatCreateOder = "2"; //限制重复建单
104
-  wechatFocusSwitch = "0"; //支助中心端是否能标记重点关注
104
+  // wechatFocusSwitch = "0"; //支助中心端是否能标记重点关注
105
   isRemarks: any = "0"; //是否需要备注信息(其他类型)
105
   isRemarks: any = "0"; //是否需要备注信息(其他类型)
106
   remarks = ""; //备注信息提示用语(其他类型)
106
   remarks = ""; //备注信息提示用语(其他类型)
107
   quickRemarks = ""; //工单备注快捷选择输入所有(其他类型)
107
   quickRemarks = ""; //工单备注快捷选择输入所有(其他类型)
@@ -754,8 +754,8 @@ export class TaskTypeManagementComponent implements OnInit {
754
       data.isRepeatCreateOder === undefined
754
       data.isRepeatCreateOder === undefined
755
         ? "2"
755
         ? "2"
756
         : data.isRepeatCreateOder + ""; //限制重复建单
756
         : data.isRepeatCreateOder + ""; //限制重复建单
757
-    this.wechatFocusSwitch =
758
-      data.wechatFocusSwitch === undefined ? "0" : data.wechatFocusSwitch + ""; //支助中心端是否能标记重点关注
757
+    // this.wechatFocusSwitch =
758
+    //   data.wechatFocusSwitch === undefined ? "0" : data.wechatFocusSwitch + ""; //支助中心端是否能标记重点关注
759
     this.leadTime =
759
     this.leadTime =
760
       data.appointmentTime === undefined ? "0" : data.appointmentTime + ""; //提前生效时间,默认20分钟
760
       data.appointmentTime === undefined ? "0" : data.appointmentTime + ""; //提前生效时间,默认20分钟
761
     this.isRemarks =
761
     this.isRemarks =
@@ -1062,8 +1062,8 @@ export class TaskTypeManagementComponent implements OnInit {
1062
       this.taskData.taskType.isRepeatCreateOder =
1062
       this.taskData.taskType.isRepeatCreateOder =
1063
         this.isRepeatCreateOder === "1" ? 1 : 0; //限制重复建单
1063
         this.isRepeatCreateOder === "1" ? 1 : 0; //限制重复建单
1064
     }
1064
     }
1065
-    this.taskData.taskType.wechatFocusSwitch =
1066
-      this.wechatFocusSwitch === "1" ? 1 : 0; //支助中心端重点关注开关
1065
+    // this.taskData.taskType.wechatFocusSwitch =
1066
+    //   this.wechatFocusSwitch === "1" ? 1 : 0; //支助中心端重点关注开关
1067
     this.taskData.taskType.remarksSwitch = this.isRemarks === "1" ? 1 : 0; //是否需要备注信息
1067
     this.taskData.taskType.remarksSwitch = this.isRemarks === "1" ? 1 : 0; //是否需要备注信息
1068
     this.taskData.taskType.remarksPrompts = this.remarks; //备注信息提示用语
1068
     this.taskData.taskType.remarksPrompts = this.remarks; //备注信息提示用语
1069
     this.taskData.taskType.customRemarks = this.quickRemarks; //备注快速输入
1069
     this.taskData.taskType.customRemarks = this.quickRemarks; //备注快速输入
@@ -1169,7 +1169,7 @@ export class TaskTypeManagementComponent implements OnInit {
1169
     this.appointmentBuildFlag = "0"; //护士端是否允许预约建单,患者陪检
1169
     this.appointmentBuildFlag = "0"; //护士端是否允许预约建单,患者陪检
1170
     this.appointmentBuildFlagZy = "0"; //护士端是否允许预约建单,患者其他
1170
     this.appointmentBuildFlagZy = "0"; //护士端是否允许预约建单,患者其他
1171
     this.followFlag = "0"; //护士端是否能标记重点关注
1171
     this.followFlag = "0"; //护士端是否能标记重点关注
1172
-    this.wechatFocusSwitch = "0"; //支助中心端是否能标记重点关注
1172
+    // this.wechatFocusSwitch = "0"; //支助中心端是否能标记重点关注
1173
     this.leadTime = "20"; //提前生效时间,默认20分钟
1173
     this.leadTime = "20"; //提前生效时间,默认20分钟
1174
     this.isRemarks = "0"; //提前生效时间,默认20分钟
1174
     this.isRemarks = "0"; //提前生效时间,默认20分钟
1175
     this.addEndDeptIds = []; //自动(手动)建单追加终点科室
1175
     this.addEndDeptIds = []; //自动(手动)建单追加终点科室