seimin 1 年之前
父节点
当前提交
e254ca64ee

+ 1 - 1
proxy.conf.json

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

+ 9 - 7
src/app/share/businessData-detail-modal/businessData-detail-modal.component.html

@@ -101,13 +101,14 @@
101 101
         <thead>
102 102
           <tr class="thead">
103 103
             <th nzWidth="4%">序号</th>
104
-            <th nzWidth="14%">患者姓名(床号)</th>
105
-            <th nzWidth="14%">检查项目</th>
106
-            <th nzWidth="14%">预约时间</th>
107
-            <th nzWidth="14%">叫号信息</th>
108
-            <th nzWidth="14%">检查科室</th>
109
-            <th nzWidth="13%">检查状态</th>
110
-            <th nzWidth="13%">陪检人</th>
104
+            <th nzWidth="12%">患者姓名(床号)</th>
105
+            <th nzWidth="12%">检查项目</th>
106
+            <th nzWidth="12%">预约时间</th>
107
+            <th nzWidth="12%">叫号信息</th>
108
+            <th nzWidth="12%">检查科室</th>
109
+            <th nzWidth="12%">检查状态</th>
110
+            <th nzWidth="12%">陪检人</th>
111
+            <th nzWidth="12%">是否临时急查</th>
111 112
           </tr>
112 113
         </thead>
113 114
         <tbody>
@@ -120,6 +121,7 @@
120 121
             <td>{{ data.execDept ? data.execDept.dept : '' }}</td>
121 122
             <td>{{ data.inspectState?data.inspectState.name:''}}</td>
122 123
             <td>{{ data.workerName}}</td>
124
+            <td>{{ data.priority == 1 ? '是' : '否'}}</td>
123 125
           </tr>
124 126
         </tbody>
125 127
       </nz-table>

+ 1 - 0
src/app/share/businessData-detail-modal/businessData-detail-modal.component.ts

@@ -191,6 +191,7 @@ export class BusinessDataDetailModalComponent implements OnInit {
191 191
       idx: this.pageIndex - 1,
192 192
       sum: this.pageSize,
193 193
       canceled: this.dataInfo.canceled ? true : undefined,
194
+      priority: this.dataInfo.priority ? 0 : 1,
194 195
     }
195 196
     switch(this.dataInfo.type){
196 197
       case 'total':

+ 3 - 0
src/app/views/building-inspection-rate-statistics/building-inspection-rate-statistics.component.ts

@@ -57,6 +57,7 @@ export class BuildingInspectionRateStatisticsComponent implements OnInit {
57 57
 
58 58
   checkOptionsOne: Array<any> = [
59 59
     { label: "不包含已取消已作废", value: "1", checked: true },
60
+    { label: "不包含临时急查医嘱", value: "2", checked: false },
60 61
   ];
61 62
 
62 63
   // 边输入边搜索节流阀
@@ -135,6 +136,7 @@ export class BuildingInspectionRateStatisticsComponent implements OnInit {
135 136
       startTime: this.searchDto.dateRange[0] ? format(startOfDay(this.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined,
136 137
       endTime: this.searchDto.dateRange[1] ? format(endOfDay(this.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined,
137 138
       canceled: this.checkOptionsOne[0].checked ? true : undefined,
139
+      priority: this.checkOptionsOne[1].checked ? 0 : 1,
138 140
       deptIds: this.searchDto.department.length ? this.searchDto.department.toString() : undefined,
139 141
       buildingId: this.searchDto.building|| undefined,
140 142
     };
@@ -160,6 +162,7 @@ export class BuildingInspectionRateStatisticsComponent implements OnInit {
160 162
       startTime: this.searchDto.dateRange[0] ? format(startOfDay(this.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined,
161 163
       endTime: this.searchDto.dateRange[1] ? format(endOfDay(this.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined,
162 164
       canceled: this.checkOptionsOne[0].checked ? true : undefined,
165
+      priority: this.checkOptionsOne[1].checked ? 0 : 1,
163 166
       deptIds: this.searchDto.department.length ? this.searchDto.department.toString() : undefined,
164 167
       buildingId: this.searchDto.building|| undefined,
165 168
     };

+ 3 - 0
src/app/views/dept-inspection-rate-statistics/dept-inspection-rate-statistics.component.ts

@@ -57,6 +57,7 @@ export class DeptInspectionRateStatisticsComponent implements OnInit {
57 57
 
58 58
   checkOptionsOne: Array<any> = [
59 59
     { label: "不包含已取消已作废", value: "1", checked: true },
60
+    { label: "不包含临时急查医嘱", value: "2", checked: false },
60 61
   ];
61 62
 
62 63
   // 边输入边搜索节流阀
@@ -135,6 +136,7 @@ export class DeptInspectionRateStatisticsComponent implements OnInit {
135 136
       startTime: this.searchDto.dateRange[0] ? format(startOfDay(this.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined,
136 137
       endTime: this.searchDto.dateRange[1] ? format(endOfDay(this.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined,
137 138
       canceled: this.checkOptionsOne[0].checked ? true : undefined,
139
+      priority: this.checkOptionsOne[1].checked ? 0 : 1,
138 140
       deptIds: this.searchDto.department.length ? this.searchDto.department.toString() : undefined,
139 141
       buildingId: this.searchDto.building|| undefined,
140 142
     };
@@ -174,6 +176,7 @@ export class DeptInspectionRateStatisticsComponent implements OnInit {
174 176
       startTime: this.searchDto.dateRange[0] ? format(startOfDay(this.searchDto.dateRange[0]), 'yyyy-MM-dd HH:mm:ss') : undefined,
175 177
       endTime: this.searchDto.dateRange[1] ? format(endOfDay(this.searchDto.dateRange[1]), 'yyyy-MM-dd HH:mm:ss') : undefined,
176 178
       canceled: this.checkOptionsOne[0].checked ? true : undefined,
179
+      priority: this.checkOptionsOne[1].checked ? 0 : 1,
177 180
       deptIds: this.searchDto.department.length ? this.searchDto.department.toString() : undefined,
178 181
       buildingId: this.searchDto.building|| undefined,
179 182
     };