maotao il y a 1 mois
Parent
commit
e4e4b9e8a7
20 fichiers modifiés avec 375 ajouts et 117 suppressions
  1. 9 6
      src/app/components/bind-extension-number/bind-extension-number.component.html
  2. 24 17
      src/app/components/bind-extension-number/bind-extension-number.component.less
  3. 22 6
      src/app/components/bind-extension-number/bind-extension-number.component.ts
  4. 8 5
      src/app/components/order-scope/order-scope.component.html
  5. 26 18
      src/app/components/order-scope/order-scope.component.less
  6. 32 17
      src/app/components/order-scope/order-scope.component.ts
  7. 12 0
      src/app/services/tool.service.ts
  8. 4 1
      src/app/share/order-detail/order-detail.component.html
  9. 8 1
      src/app/share/order-detail/order-detail.component.less
  10. 7 2
      src/app/share/order-detail/order-detail.component.ts
  11. 44 13
      src/app/views/fuwutai/fuwutai.component.html
  12. 69 5
      src/app/views/fuwutai/fuwutai.component.less
  13. 1 1
      src/app/views/fuwutai/fuwutai.component.ts
  14. 4 0
      src/app/views/new-statistics/maintenance-statistics/synthesize-statistics/synthesize-statistics.component.html
  15. 7 3
      src/app/views/new-statistics/maintenance-statistics/synthesize-statistics/synthesize-statistics.component.less
  16. 24 14
      src/app/views/new-statistics/maintenance-statistics/synthesize-statistics/synthesize-statistics.component.ts
  17. 0 1
      src/app/views/new-statistics/maintenance-statistics/tripartite-company-statistics/tripartite-company-statistics.component.ts
  18. 11 0
      src/app/views/tripartite-company/tripartite-company.component.html
  19. 62 6
      src/app/views/tripartite-company/tripartite-company.component.ts
  20. 1 1
      src/app/views/users-management/users-management.component.ts

+ 9 - 6
src/app/components/bind-extension-number/bind-extension-number.component.html

@@ -6,12 +6,15 @@
6 6
     </div>
7 7
     <div class="content">
8 8
       <div class="scopeTab">
9
-        <div class="scopeTabItem" [ngClass]="{ active: item.value == activeScopeTab.value }" *ngFor="let item of scopeTabs" (click)="activeScopeTab = item">
10
-          <label nz-checkbox [(ngModel)]="item.checked" (ngModelChange)="changeFlag($event, item)">{{item.name}}</label>
11
-        </div>
9
+				<div *ngIf="scopeTabs.length>0" class="scopeBox">
10
+					<div class="scopeTabItem" [ngClass]="{ active: item.value == activeScopeTab.value }" *ngFor="let item of scopeTabs" (click)="activeScopeTab = item">
11
+					  <label nz-checkbox [(ngModel)]="item.checked" (ngModelChange)="changeFlag($event, item)">{{item.name}}</label>
12
+					</div>
13
+				</div>
14
+				<div class="tips" *ngIf="scopeTabs.length == 0">您没有分机绑定或呼叫中心调度权限,请联系管理员!</div>
12 15
       </div>
13 16
       <!-- 分机绑定 -->
14
-      <div class="conditions" *ngIf="activeScopeTab.value == 1">
17
+      <div class="conditions" *ngIf="scopeTabs.length>0 && activeScopeTab.value == 1">
15 18
         <div nz-row class="row">
16 19
           <div nz-col nzSpan="3" class="name">院区:</div>
17 20
           <div nz-col nzSpan="21">
@@ -40,7 +43,7 @@
40 43
         </div>
41 44
       </div>
42 45
       <!-- 呼叫中心 -->
43
-      <div class="conditions" *ngIf="activeScopeTab.value == 2">
46
+      <div class="conditions" *ngIf="scopeTabs.length>0 && activeScopeTab.value == 2">
44 47
         <div nz-row class="row">
45 48
           <div nz-col nzSpan="3" class="name">分机号:</div>
46 49
           <div nz-col nzSpan="21">
@@ -57,7 +60,7 @@
57 60
       </div>
58 61
     </div>
59 62
     <div class="btns display_flex justify-content_flex-center">
60
-      <button class="btn" nz-button nzType="primary" [nzLoading]="websocketLoading" (click)="saveOrderScope()">
63
+      <button *ngIf="scopeTabs.length>0" class="btn" nz-button nzType="primary" [nzLoading]="websocketLoading" (click)="saveOrderScope()">
61 64
         {{activeScopeTab.value == 1 ? '绑定' : '签入'}}
62 65
       </button>
63 66
       <button class="btn cancel" nz-button nzType="default" (click)="cancelInit()">

+ 24 - 17
src/app/components/bind-extension-number/bind-extension-number.component.less

@@ -145,23 +145,30 @@
145 145
         height: auto;
146 146
 
147 147
         .scopeTab{
148
-          display: flex;
149
-          height: 60px;
150
-          border-bottom: 1px solid #D9D9D9;
151
-          .scopeTabItem{
152
-            flex: 1;
153
-            display: flex;
154
-            justify-content: center;
155
-            align-items: center;
156
-            border-right: 1px solid #D9D9D9;
157
-            background-color: #fff;
158
-            cursor: pointer;
159
-            &:last-of-type{
160
-              border-right: none;
161
-            }
162
-            &.active{
163
-              background-color: #F0F6ED;
164
-            }
148
+          .tips{
149
+          	width: 100%;
150
+          	margin: 20px 0;
151
+          	font-weight: 500;
152
+          }
153
+          .scopeBox{
154
+          	display: flex;
155
+          	height: 60px;
156
+          	border-bottom: 1px solid #D9D9D9;
157
+          	.scopeTabItem{
158
+          	  flex: 1;
159
+          	  display: flex;
160
+          	  justify-content: center;
161
+          	  align-items: center;
162
+          	  border-right: 1px solid #D9D9D9;
163
+          	  background-color: #fff;
164
+          	  cursor: pointer;
165
+          	  &:last-of-type{
166
+          	    border-right: none;
167
+          	  }
168
+          	  &.active{
169
+          	    background-color: #F0F6ED;
170
+          	  }
171
+          	}
165 172
           }
166 173
         }
167 174
 

+ 22 - 6
src/app/components/bind-extension-number/bind-extension-number.component.ts

@@ -4,6 +4,7 @@ import { MainService } from 'src/app/services/main.service';
4 4
 import { ToolService } from 'src/app/services/tool.service';
5 5
 import { NzMessageService } from 'ng-zorro-antd';
6 6
 import { WebsocketIncomingService } from 'src/app/services/websocket-incoming.service';
7
+import { Router } from "@angular/router";
7 8
 
8 9
 @Component({
9 10
   selector: 'app-bind-extension-number',
@@ -24,11 +25,13 @@ export class BindExtensionNumberComponent implements OnInit {
24 25
   }
25 26
   @Output() confirmModal = new EventEmitter();
26 27
   @Output() cancelModal = new EventEmitter();
28
+	@Input() coopBtns:any;
27 29
   constructor(
28 30
     private mainService: MainService,
29 31
     private tool: ToolService,
30 32
     private message: NzMessageService,
31 33
     private icomingService: WebsocketIncomingService,
34
+		public router: Router
32 35
   ) { }
33 36
 
34 37
   user = JSON.parse(localStorage.getItem("user")); //用户信息
@@ -38,20 +41,33 @@ export class BindExtensionNumberComponent implements OnInit {
38 41
   hospitalList:any[] = [];
39 42
 
40 43
   // 工单范选项卡
41
-  scopeTabs:any[] = [
42
-    { name: '分机绑定', value: 1, checked: false },
43
-    { name: '呼叫中心', value: 2, checked: false },
44
-  ];
45
-  activeScopeTab = this.scopeTabs[0];
44
+  scopeTabs:any[] = [];
45
+  activeScopeTab:any;
46 46
 
47 47
   ngOnInit() {
48 48
     console.log('itsmData', this.itsmData);
49 49
     console.log('hsmsData', this.hsmsData);
50
+		this.init()
50 51
     this.getHospitalList();
51 52
     this.getHjzxCornetList();
52 53
     this.getCallCenterConfig();
53 54
   }
54
-
55
+	
56
+	init(){
57
+		if(this.coopBtns.extension){
58
+			this.scopeTabs.push({ name: '分机绑定', value: 1, checked: false })
59
+		}
60
+		if(this.coopBtns.callCenter){
61
+			this.scopeTabs.push({ name: '呼叫中心', value: 2, checked: false })
62
+		}
63
+		if(this.scopeTabs.length>0){
64
+			this.activeScopeTab = this.scopeTabs[0]
65
+		}
66
+		if(this.scopeTabs.length == 1){
67
+			this.scopeTabs[0].checked = true
68
+		}
69
+	}
70
+	
55 71
   // 获取院区列表
56 72
   getHospitalList() {
57 73
     // 工单范围

+ 8 - 5
src/app/components/order-scope/order-scope.component.html

@@ -6,12 +6,15 @@
6 6
     </div>
7 7
     <div class="content">
8 8
       <div class="scopeTab">
9
-        <div class="scopeTabItem" [ngClass]="{ active: item.value == activeScopeTab.value }" *ngFor="let item of scopeTabs" (click)="activeScopeTab = item">
10
-          <label nz-checkbox [(ngModel)]="item.checked" (ngModelChange)="activeScopeTab = item">{{item.name}}</label>
11
-        </div>
9
+				<div *ngIf="scopeTabs.length>0" class="scopeBox">
10
+					<div class="scopeTabItem" [ngClass]="{ active: item.value == activeScopeTab.value }" *ngFor="let item of scopeTabs" (click)="activeScopeTab = item">
11
+					  <label nz-checkbox [(ngModel)]="item.checked" (ngModelChange)="activeScopeTab = item">{{item.name}}</label>
12
+					</div>
13
+				</div>
14
+				<div class="tips" *ngIf="scopeTabs.length == 0">您没有运维或配送陪检调度权限,请联系管理员!</div>
12 15
       </div>
13 16
       <!-- 运维 -->
14
-      <div class="conditions" *ngIf="activeScopeTab.value == 1">
17
+      <div class="conditions" *ngIf="scopeTabs.length>0 && activeScopeTab.value == 1">
15 18
         <div nz-row>
16 19
           <div nz-col nzSpan="4">是否不限制部门:</div>
17 20
           <div nz-col nzSpan="20">
@@ -48,7 +51,7 @@
48 51
         </div>
49 52
       </div>
50 53
       <!-- 配送 -->
51
-      <div class="conditions" *ngIf="activeScopeTab.value == 2">
54
+      <div class="conditions" *ngIf="scopeTabs.length>0 && activeScopeTab.value == 2">
52 55
         <div nz-row>
53 56
           <div nz-col nzSpan="3" class="required">院区:</div>
54 57
           <div nz-col nzSpan="21">

+ 26 - 18
src/app/components/order-scope/order-scope.component.less

@@ -137,24 +137,32 @@
137 137
         height: auto;
138 138
 
139 139
         .scopeTab{
140
-          display: flex;
141
-          height: 60px;
142
-          border-bottom: 1px solid #D9D9D9;
143
-          .scopeTabItem{
144
-            flex: 1;
145
-            display: flex;
146
-            justify-content: center;
147
-            align-items: center;
148
-            border-right: 1px solid #D9D9D9;
149
-            background-color: #fff;
150
-            cursor: pointer;
151
-            &:last-of-type{
152
-              border-right: none;
153
-            }
154
-            &.active{
155
-              background-color: #F0F6ED;
156
-            }
157
-          }
140
+          
141
+					.tips{
142
+						width: 100%;
143
+						margin-top: 20px;
144
+						font-weight: 500;
145
+					}
146
+					.scopeBox{
147
+						display: flex;
148
+						height: 60px;
149
+						border-bottom: 1px solid #D9D9D9;
150
+						.scopeTabItem{
151
+						  flex: 1;
152
+						  display: flex;
153
+						  justify-content: center;
154
+						  align-items: center;
155
+						  border-right: 1px solid #D9D9D9;
156
+						  background-color: #fff;
157
+						  cursor: pointer;
158
+						  &:last-of-type{
159
+						    border-right: none;
160
+						  }
161
+						  &.active{
162
+						    background-color: #F0F6ED;
163
+						  }
164
+						}
165
+					}
158 166
         }
159 167
 
160 168
         .remin {

+ 32 - 17
src/app/components/order-scope/order-scope.component.ts

@@ -3,6 +3,7 @@ import { EventEmitter } from '@angular/core';
3 3
 import { MainService } from 'src/app/services/main.service';
4 4
 import { ToolService } from 'src/app/services/tool.service';
5 5
 import { NzMessageService } from 'ng-zorro-antd';
6
+import { Router } from "@angular/router";
6 7
 
7 8
 @Component({
8 9
   selector: 'app-order-scope',
@@ -20,12 +21,15 @@ export class OrderScopeComponent implements OnInit {
20 21
     scopeGroups: [],
21 22
     orderScopeRadio: undefined,
22 23
   }
24
+	@Input() coopBtns:any;
25
+	
23 26
   @Output() confirmModal = new EventEmitter();
24 27
   @Output() cancelModal = new EventEmitter();
25 28
   constructor(
26 29
     private mainService: MainService,
27 30
     private tool: ToolService,
28 31
     private message: NzMessageService,
32
+		public router: Router
29 33
   ) { }
30 34
 
31 35
   user = JSON.parse(localStorage.getItem("user")); //用户信息
@@ -36,16 +40,22 @@ export class OrderScopeComponent implements OnInit {
36 40
   itsmCheckedGroup:any[] = [];//运维-分组
37 41
   itsmOrderScopeRadio:any = '0';//运维-工单范围
38 42
   isAllItsmGroupChecked:boolean = false;//运维-是否全选分组
39
-
43
+	// 工单范选项卡
44
+	scopeTabs:any[] = [];
45
+	activeScopeTab:any;
46
+	//#region 工单范围-运维start
47
+	allDuty:number = 1;
48
+	
40 49
   ngOnInit() {
41
-    this.initHsms();
42 50
     this.initItsm();
43 51
   }
44 52
 
45 53
   initHsms(){
46 54
     console.log('hsmsData:', this.hsmsData);
47 55
     let index = this.scopeTabs.findIndex(v => v.value === 2);
48
-    this.scopeTabs[index].checked = this.hsmsData.hsmsSwitch;
56
+		if(index!=-1){
57
+			this.scopeTabs[index].checked = this.hsmsData.hsmsSwitch;
58
+		}
49 59
     this.checkedHos = this.hsmsData.checkedHos;
50 60
     this.orderScopeRadio = this.hsmsData.orderScopeRadio;
51 61
     this.initOrderScope();
@@ -53,24 +63,29 @@ export class OrderScopeComponent implements OnInit {
53 63
   }
54 64
 
55 65
   initItsm(){
66
+		if(this.coopBtns.maintenance){
67
+			this.scopeTabs.push({ name: '运维', value: 1, checked: false })
68
+		}
69
+		if(this.coopBtns.distributionPj){
70
+			this.scopeTabs.push({ name: '配送陪检', value: 2, checked: false })
71
+		}
72
+		if(this.scopeTabs.length>0){
73
+			this.activeScopeTab = this.scopeTabs[0]
74
+		}
75
+		this.initHsms();
76
+		this.itsmInitOrderScope();
56 77
     console.log('itsmData', this.itsmData);
57
-    let index = this.scopeTabs.findIndex(v => v.value === 1);
58
-    this.scopeTabs[index].checked = this.itsmData.mdv2Switch;
59
-    this.itsmOrderScopeRadio = this.itsmData.orderScopeRadio;
60
-    this.itsmInitOrderScope();
61
-    this.itsmGetOrderScope();
62 78
   }
63 79
 
64
-    // 工单范选项卡
65
-    scopeTabs:any[] = [
66
-      { name: '运维', value: 1, checked: false },
67
-      { name: '配送', value: 2, checked: false },
68
-    ];
69
-    activeScopeTab = this.scopeTabs[0];
70
-    //#region 工单范围-运维start
71
-    allDuty:number = 1;
72 80
     itsmInitOrderScope(){
73
-
81
+			if(this.scopeTabs.length == 1){
82
+				this.scopeTabs[0].checked = true
83
+			}else if(this.scopeTabs.length == 2){
84
+				let index = this.scopeTabs.findIndex(v => v.value === 1);
85
+				this.scopeTabs[index].checked = this.itsmData.mdv2Switch;
86
+			}
87
+			this.itsmOrderScopeRadio = this.itsmData.orderScopeRadio;
88
+			this.itsmGetOrderScope();
74 89
     }
75 90
     // 工单范围数据
76 91
     itsmGetOrderScope() {

+ 12 - 0
src/app/services/tool.service.ts

@@ -299,6 +299,18 @@ export class ToolService {
299 299
 				case "crossHospital":
300 300
 				  coopBtns.crossHospital = true; //跨部门选组
301 301
 				  break;
302
+				case "maintenance":
303
+				  coopBtns.maintenance = true; //运维
304
+				  break;
305
+				case "distributionPj":
306
+				  coopBtns.distributionPj = true; //配送陪检
307
+				  break;
308
+				case "extension":
309
+				  coopBtns.extension = true; //分机绑定
310
+				  break;
311
+				case "callCenter":
312
+				  coopBtns.callCenter = true; //呼叫中心
313
+				  break;
302 314
       }
303 315
     });
304 316
     console.log(coopBtns);

+ 4 - 1
src/app/share/order-detail/order-detail.component.html

@@ -1225,7 +1225,10 @@
1225 1225
                   >
1226 1226
                     查看图片</button
1227 1227
                   > -->
1228
-									<img *ngIf="item.attachments" (click)="previewImageHandler(item.attachments[0])" width="50" height="50" [src]="imgUrl + item.attachments[0].relativeFilePath" alt="">
1228
+									<div class="img-box" *ngIf="item.attachments && item.attachments.length>0">
1229
+										<img (click)="previewImageHandler(i, index)"
1230
+										width="50" height="50" *ngFor="let i of item.attachments; let index = index;" [src]="imgUrl + i.relativeFilePath" alt="">
1231
+									</div>
1229 1232
 									<span *ngIf="!item.attachments">无</span>
1230 1233
                 </td>
1231 1234
                 <td>

+ 8 - 1
src/app/share/order-detail/order-detail.component.less

@@ -4,6 +4,13 @@ img{
4 4
 	cursor: pointer;
5 5
 }
6 6
 
7
+.img-box{
8
+	display: flex;
9
+	img{
10
+		margin: 0 2px;
11
+	}
12
+}
13
+
7 14
 :host {
8 15
   width: 100%;
9 16
   height: 100%;
@@ -201,7 +208,7 @@ img{
201 208
           min-height: 160px;
202 209
           background: #fff;
203 210
           border-radius: 5px;
204
-
211
+					
205 212
           .thead {
206 213
             background-image: repeating-linear-gradient(
207 214
               to right,

+ 7 - 2
src/app/share/order-detail/order-detail.component.ts

@@ -129,11 +129,16 @@ export class OrderDetailComponent implements OnInit {
129 129
   // 预览图片
130 130
   imgs = [];
131 131
   isPreview = false;
132
-  previewImageHandler(data) {
132
+  previewImageHandler(data,index) {
133
+		// this.imgs = data.map((v) => location.origin + '/file' + v.relativeFilePath)
134
+		// console.log(9999,this.imgs)
135
+		// this.isPreview = true;
133 136
     this.isPreview = false;
134 137
     this.mainService.getPreviewImage(data.bindType,data.bindId).subscribe((result:any)=>{
135 138
       if (result.status == 200) {
136
-        this.imgs = result.data.map((v) => location.origin + '/file' + v.relativeFilePath);
139
+				this.imgs = [location.origin + '/file' + result.data[index].relativeFilePath]
140
+				// console.log(898988,result)
141
+        // this.imgs = result.data.map((v) => location.origin + '/file' + v.relativeFilePath);
137 142
         this.isPreview = true;
138 143
       } else {
139 144
         this.imgs = [];

+ 44 - 13
src/app/views/fuwutai/fuwutai.component.html

@@ -106,9 +106,13 @@
106 106
       <div class="cots_body weifenpai" *ngIf="(txtLabelCol == 1 && flagList.hsmsFlag1 && !flagList.itsmFlag1) || flagList.itsmFlag1" [ngClass]="{ top185: hurseInfoHiding != 1, top185_1: flagList.itsmFlag1 }">
107 107
         <virtual-scroller [items]="unassignedList" #osComponentRef2 [ngStyle]="{ height: '100%' }">
108 108
           <ng-container *ngIf="unassignedList.length && !loading1">
109
-            <div class="list listsTypeColor" *ngFor="let data of osComponentRef2.viewPortItems;trackBy:trackById">
110
-              <!-- 配送 -->
109
+            <div class="list listsTypeColor" *ngFor="let data of osComponentRef2.viewPortItems;trackBy:trackById;let index = index;">
110
+              <!-- 配送 绿色-->
111 111
               <ng-container *ngIf="data.type === 'hsms'">
112
+								<div class="top-border2" *ngIf="index == 0"></div>
113
+								<div class="top-border2 top-border3" *ngIf="index == 1"></div>
114
+								<div class="top-border2" *ngIf="index > 1" [ngClass]="{'top-border3': data.data.timeOut == true}"></div>
115
+								<div class="left-border2"></div>
112 116
                 <div class="left_cots" (click)="openDetails(data.data)">
113 117
                   <!-- 工单 -->
114 118
                   <div class="gongdan" (click)="batchDispatchSelect(!data.checked, data.data.id, $event)">
@@ -194,9 +198,14 @@
194 198
                 </div>
195 199
                 <div *ngIf="data.data.timeOut != true" class="slider sgreen" [ngStyle]="{ width: data.data.percent + '%' }"></div>
196 200
                 <div *ngIf="data.data.timeOut == true" class="slider sred" [ngStyle]="{ width: '100%' }"></div>
197
-              </ng-container>
198
-              <!-- 运维 -->
201
+								<div class="bottom-border2"></div>
202
+								<div class="right-border2"></div>
203
+							</ng-container>
204
+              <!-- 运维 蓝色-->
199 205
               <ng-container *ngIf="data.type === 'mdv2'">
206
+								<div class="top-border top-border3" *ngIf="osComponentRef2.viewPortItems[index-1] && osComponentRef2.viewPortItems[index-1].type=='hsms'"></div>
207
+								<div class="top-border" *ngIf="osComponentRef2.viewPortItems[index-1] && osComponentRef2.viewPortItems[index-1].type!='hsms'" [ngClass]="{'top-border3': data.data.overtimePercent > 100}"></div>
208
+								<div class="left-border"></div>
200 209
                 <div class="left_cots" (click)="openItsmDetails(data.data)">
201 210
                   <div class="gongdan">
202 211
                     <span class="left gongdan_name">
@@ -250,7 +259,9 @@
250 259
                 </div>
251 260
                 <div *ngIf="data.data.overtimePercent <= 100" class="slider sgreen" [ngStyle]="{ width: data.data.overtimePercent + '%' }"></div>
252 261
                 <div *ngIf="data.data.overtimePercent > 100" class="slider sred" [ngStyle]="{ width: '100%' }"></div>
253
-              </ng-container>
262
+								<div class="bottom-border"></div>
263
+								<div class="right-border"></div>
264
+							</ng-container>
254 265
             </div>
255 266
           </ng-container>
256 267
           <div class="loading display_flex col-flex justify-content_flex-center align-items_center" *ngIf="loading1">
@@ -290,9 +301,12 @@
290 301
       <div class="cots_body daidaoda" *ngIf="(txtLabelCol == 1 && flagList.hsmsFlag2 && !flagList.itsmFlag2) || flagList.itsmFlag2" [ngClass]="{ top185: hurseInfoHiding != 1, top185_1: flagList.itsmFlag2 }">
291 302
         <virtual-scroller [items]="arriveList" #osComponentRef3 [ngStyle]="{ height: '100%' }">
292 303
           <ng-container *ngIf="arriveList.length && !loading2">
293
-            <div class="list listsTypeColor" *ngFor="let data of osComponentRef3.viewPortItems;trackBy:trackById">
304
+            <div class="list listsTypeColor" *ngFor="let data of osComponentRef3.viewPortItems;trackBy:trackById;let index = index;">
294 305
               <!-- 配送 -->
295 306
               <ng-container *ngIf="data.type === 'hsms'">
307
+								<div class="top-border2" *ngIf="index == 0"></div>
308
+								<div class="top-border2" *ngIf="index > 0" [ngClass]="{'top-border3': data.data.timeOut == true}"></div>
309
+								<div class="left-border2"></div>
296 310
                 <div class="left_cots" (click)="openDetails(data.data)">
297 311
                   <!-- 工单 -->
298 312
                   <div class="gongdan" (click)="batchWithdrawalSelect(!data.checked, data.data.id, $event)">
@@ -376,9 +390,14 @@
376 390
                 </div>
377 391
                 <div *ngIf="data.data.timeOut != true" class="slider sgreen" [ngStyle]="{ width: data.data.percent + '%' }"></div>
378 392
                 <div *ngIf="data.data.timeOut == true" class="slider sred" [ngStyle]="{ width: '100%' }"></div>
379
-              </ng-container>
393
+								<div class="bottom-border2"></div>
394
+								<div class="right-border2"></div>
395
+							</ng-container>
380 396
               <!-- 运维 -->
381 397
               <ng-container *ngIf="data.type === 'mdv2'">
398
+								<div class="top-border" *ngIf="index == 0"></div>
399
+								<div class="top-border" *ngIf="index > 0" [ngClass]="{'top-border3': data.data.overtimePercent > 100}"></div>
400
+								<div class="left-border"></div>
382 401
                 <div class="left_cots" (click)="openItsmDetails(data.data)">
383 402
                   <div class="gongdan">
384 403
                     <span class="left gongdan_name">
@@ -430,7 +449,9 @@
430 449
                 </div>
431 450
                 <div *ngIf="data.data.overtimePercent <= 100" class="slider sgreen" [ngStyle]="{ width: data.data.overtimePercent + '%' }"></div>
432 451
                 <div *ngIf="data.data.overtimePercent > 100" class="slider sred" [ngStyle]="{ width: '100%' }"></div>
433
-              </ng-container>
452
+								<div class="bottom-border"></div>
453
+								<div class="right-border"></div>
454
+							</ng-container>
434 455
             </div>
435 456
           </ng-container>
436 457
           <div class="loading display_flex col-flex justify-content_flex-center align-items_center"  *ngIf="loading2">
@@ -465,9 +486,12 @@
465 486
       <div class="cots_body zhixingzhong" *ngIf="(txtLabelCol == 1 && flagList.hsmsFlag3 && !flagList.itsmFlag3) || flagList.itsmFlag3" [ngClass]="{ top185: hurseInfoHiding != 1, top185_1: flagList.itsmFlag3 }">
466 487
         <virtual-scroller [items]="executionList" #osComponentRef5 [ngStyle]="{ height: '100%' }">
467 488
           <ng-container *ngIf="executionList.length && !loading3">
468
-            <div class="list" *ngFor="let data of osComponentRef5.viewPortItems;trackBy:trackById">
489
+            <div class="list" *ngFor="let data of osComponentRef5.viewPortItems;trackBy:trackById;let index = index;">
469 490
               <!-- 配送 -->
470 491
               <ng-container *ngIf="data.type === 'hsms'">
492
+								<div class="top-border2" *ngIf="index == 0"></div>
493
+								<div class="top-border2" *ngIf="index > 0" [ngClass]="{'top-border3': data.data.timeOut == true}"></div>
494
+								<div class="left-border2"></div>
471 495
                 <div class="left_cots" (click)="openDetails(data.data)">
472 496
                   <!-- 工单 -->
473 497
                   <div class="gongdan">
@@ -550,9 +574,14 @@
550 574
                 </div>
551 575
                 <div *ngIf="data.data.timeOut != true" class="slider sgreen" [ngStyle]="{ width: data.data.percent + '%' }"></div>
552 576
                 <div *ngIf="data.data.timeOut == true" class="slider sred" [ngStyle]="{ width: '100%' }"></div>
553
-              </ng-container>
577
+								<div class="bottom-border2"></div>
578
+								<div class="right-border2"></div>
579
+							</ng-container>
554 580
               <!-- 运维 -->
555 581
               <ng-container *ngIf="data.type === 'mdv2'">
582
+								<div class="top-border" *ngIf="index == 0"></div>
583
+								<div class="top-border" *ngIf="index > 0" [ngClass]="{'top-border3': data.data.overtimePercent > 100}"></div>
584
+								<div class="left-border"></div>
556 585
                 <div class="left_cots" (click)="openItsmDetails(data.data)">
557 586
                   <div class="gongdan">
558 587
                     <span class="left gongdan_name">
@@ -604,7 +633,9 @@
604 633
                 </div>
605 634
                 <div *ngIf="data.data.overtimePercent <= 100" class="slider sgreen" [ngStyle]="{ width: data.data.overtimePercent + '%' }"></div>
606 635
                 <div *ngIf="data.data.overtimePercent > 100" class="slider sred" [ngStyle]="{ width: '100%' }"></div>
607
-              </ng-container>
636
+								<div class="bottom-border"></div>
637
+								<div class="right-border"></div>
638
+							</ng-container>
608 639
             </div>
609 640
           </ng-container>
610 641
           <div class="loading display_flex col-flex justify-content_flex-center align-items_center" *ngIf="loading3">
@@ -1817,9 +1848,9 @@
1817 1848
   ></app-dialog-delete>
1818 1849
 </div>
1819 1850
 <!-- 绑定分机 -->
1820
-<app-bind-extension-number [hsmsData]="hsmsData" [itsmData]="itsmData" [websocketLoading]="websocketLoading" *ngIf="showBindExtensionNumberModal" (confirmModal)="checkIn($event)" (cancelModal)="cancelBindExtensionNumber($event)"></app-bind-extension-number>
1851
+<app-bind-extension-number [hsmsData]="hsmsData" [itsmData]="itsmData" [coopBtns]="coopBtns" [websocketLoading]="websocketLoading" *ngIf="showBindExtensionNumberModal" (confirmModal)="checkIn($event)" (cancelModal)="cancelBindExtensionNumber($event)"></app-bind-extension-number>
1821 1852
 <!-- 工单范围 -->
1822
-<app-order-scope *ngIf="showInitModal" [hsmsData]="hsmsData" [itsmData]="itsmData" (confirmModal)="confirmOrderScope($event)" (cancelModal)="cancelOrderScope($event)"></app-order-scope>
1853
+<app-order-scope *ngIf="showInitModal" [hsmsData]="hsmsData" [itsmData]="itsmData" [coopBtns]="coopBtns" (confirmModal)="confirmOrderScope($event)" (cancelModal)="cancelOrderScope($event)"></app-order-scope>
1823 1854
 <!-- 展示形式 -->
1824 1855
 <app-display-form *ngIf="showDisplayFormModal" (confirmModal)="confirmDisplayForm($event)" (cancelModal)="cancelDisplayForm($event)"></app-display-form>
1825 1856
 <!-- 消息弹框模板 -->

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

@@ -593,15 +593,80 @@
593 593
     justify-content: center;
594 594
     align-items: center;
595 595
   }
596
-
596
+	
597
+	.top-border2{
598
+		width: 15px;
599
+		height: 2px;
600
+		background: #49B856;
601
+		position: absolute;
602
+		top: 0;
603
+	}
604
+	.top-border3{
605
+		top: -2px !important;
606
+	}
607
+	.left-border2{
608
+		width: 2px;
609
+		height: 15px;
610
+		background: #49B856;
611
+		position: absolute;
612
+		left: 0;
613
+	}
614
+	.bottom-border2{
615
+		width: 15px;
616
+		height: 2px;
617
+		background: #49B856;
618
+		position: absolute;
619
+		bottom: 0;
620
+		right: 0;
621
+	}
622
+	.right-border2{
623
+		width: 2px;
624
+		height: 15px;
625
+		background: #49B856;
626
+		position: absolute;
627
+		right: 0;
628
+		bottom: 0;
629
+	}
630
+	.top-border{
631
+		width: 15px;
632
+		height: 2px;
633
+		background: #0F70BB;
634
+		position: absolute;
635
+		top: 0;
636
+	}
637
+	.left-border{
638
+		width: 2px;
639
+		height: 15px;
640
+		background: #0F70BB;
641
+		position: absolute;
642
+		left: 0;
643
+	}
644
+	.bottom-border{
645
+		width: 15px;
646
+		height: 2px;
647
+		background: #0F70BB;
648
+		position: absolute;
649
+		bottom: 0;
650
+		right: 0;
651
+	}
652
+	.right-border{
653
+		width: 2px;
654
+		height: 15px;
655
+		background: #0F70BB;
656
+		position: absolute;
657
+		right: 0;
658
+		bottom: 0;
659
+	}
660
+	
597 661
   /* 未分派 */
598 662
   .weifenpai .list {
599 663
     // height: 100px;
600 664
     border-bottom: 1px rgb(225, 229, 232) solid;
601 665
     position: relative;
602
-    overflow: hidden;
666
+    // overflow: hidden;
603 667
     display: flex;
604 668
   }
669
+	
605 670
   // 转出院记录
606 671
   .patientLog .list {
607 672
     height: auto !important;
@@ -815,7 +880,7 @@
815 880
   /* 待到达 */
816 881
   .daidaoda .list {
817 882
     // height: 100px;
818
-    overflow: hidden;
883
+    // overflow: hidden;
819 884
     border-bottom: 1px rgb(225, 229, 232) solid;
820 885
     position: relative;
821 886
     display: flex;
@@ -963,7 +1028,7 @@
963 1028
     border-bottom: 1px rgb(225, 229, 232) solid;
964 1029
     cursor: pointer;
965 1030
     position: relative;
966
-    overflow: hidden;
1031
+    // overflow: hidden;
967 1032
     display: flex;
968 1033
   }
969 1034
 
@@ -1476,7 +1541,6 @@
1476 1541
       height: 56px;
1477 1542
       border-right: 1px solid #e5e9ed;
1478 1543
       padding: 0;
1479
-
1480 1544
       &:nth-child(4n-2) {
1481 1545
         background: #f9fafb;
1482 1546
       }

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

@@ -861,7 +861,7 @@ export class FuwutaiComponent implements OnInit {
861 861
     this.initRole();
862 862
     this.initLogin();
863 863
     this.retract();
864
-    this.refresh();
864
+    // this.refresh();
865 865
     this.initOrderScope();
866 866
     this.getVisitList();
867 867
     this.getMessageList();

+ 4 - 0
src/app/views/new-statistics/maintenance-statistics/synthesize-statistics/synthesize-statistics.component.html

@@ -23,24 +23,28 @@
23 23
 				<div class="sign-describe">待接单: <span class="sign-num">{{workData.gd_todo || 0}}</span></div>
24 24
 				<div class="sign-describe">处理中: <span class="sign-num">{{workData.gd_doing || 0}}</span></div>
25 25
 			</div>
26
+			<div class="border"></div>
26 27
 		</div>
27 28
 		<div class="top-list">
28 29
 			<div class="special-box">
29 30
 				<div class="num">{{workData.sum_price || 0}}</div>
30 31
 				<div class="describe">总费用 (元)</div>
31 32
 			</div>
33
+			<div class="border"></div>
32 34
 		</div>
33 35
 		<div class="top-list">
34 36
 			<div class="special-box">
35 37
 				<div class="num">{{workData.gd_postpone || 0}}</div>
36 38
 				<div class="describe">挂起单数</div>
37 39
 			</div>
40
+			<div class="border"></div>
38 41
 		</div>
39 42
 		<div class="top-list">
40 43
 			<div class="special-box">
41 44
 				<div class="num">{{workData.gd_overtime || 0}}</div>
42 45
 				<div class="describe">超时单数</div>
43 46
 			</div>
47
+			<div class="border"></div>
44 48
 		</div>
45 49
 		<div class="top-list">
46 50
 			<div class="special-box">

+ 7 - 3
src/app/views/new-statistics/maintenance-statistics/synthesize-statistics/synthesize-statistics.component.less

@@ -36,9 +36,13 @@
36 36
 				align-items: center;
37 37
 				justify-content: center;
38 38
 				width: 20%;
39
-				border-right: 1px solid #D9D9D9;
40
-				&:last-child{
41
-					border-right:none;
39
+				position: relative;
40
+				.border{
41
+					width: 1px;
42
+					height: 42px;
43
+					background: #D9D9D9;
44
+					position: absolute;
45
+					right: 0;
42 46
 				}
43 47
 				.special-box{
44 48
 					text-align: center;

+ 24 - 14
src/app/views/new-statistics/maintenance-statistics/synthesize-statistics/synthesize-statistics.component.ts

@@ -116,20 +116,30 @@ export class SynthesizeStatisticsComponent implements OnInit {
116 116
 									show: true,
117 117
 									formatter: '{b}: {c} {d}%'
118 118
 							},
119
-				      // itemStyle: {
120
-				      //   normal: {
121
-				      //     //每根柱子颜色设置
122
-				      //     color: function (params) {
123
-				      //       let colorList = [
124
-				      //         "#33CC85",
125
-				      //         "#72C0DD",
126
-				      //         "#FAC958",
127
-										// 	"#546FC6",
128
-				      //       ];
129
-				      //       return colorList[params.dataIndex];
130
-				      //     },
131
-				      //   },
132
-				      // },
119
+				      itemStyle: {
120
+				        normal: {
121
+				          //每根柱子颜色设置
122
+				          color: function (params) {
123
+				            let colorList = [
124
+				              "#33CC85",
125
+				              "#72C0DD",
126
+				              "#FAC958",
127
+											"#546FC6",
128
+											"#d35b7e",
129
+											"#778ccC",
130
+											"#fad354",
131
+											"#aldee0",
132
+											"#ee84a8",
133
+											"#8475c5",
134
+											"#b0d097",
135
+											"#ffadbb",
136
+											"#fd8c67",
137
+											"#d495e0",
138
+				            ];
139
+				            return colorList[params.dataIndex];
140
+				          },
141
+				        },
142
+				      },
133 143
 				    },
134 144
 				  ],
135 145
 				};

+ 0 - 1
src/app/views/new-statistics/maintenance-statistics/tripartite-company-statistics/tripartite-company-statistics.component.ts

@@ -26,7 +26,6 @@ export class TripartiteCompanyStatisticsComponent implements OnInit, AfterViewIn
26 26
   listLength: number = 0; //表格总数据量
27 27
 
28 28
   repairDeptId;//报修科室id
29
-
30 29
   searchTimerSubject = new Subject();
31 30
 
32 31
   ngOnInit() {

+ 11 - 0
src/app/views/tripartite-company/tripartite-company.component.html

@@ -75,6 +75,17 @@
75 75
               {{coopData.code}}
76 76
             </nz-form-control>
77 77
           </nz-form-item>
78
+					<nz-form-item>
79
+					  <nz-form-label [nzSpan]="5" nzRequired nzFor="name">使用范围</nz-form-label>
80
+					  <nz-form-control [nzSpan]="19" nzErrorTip="请输入使用范围!">
81
+					    <nz-radio-group formControlName="employScope">
82
+					    	<label nz-radio [nzValue]="i.id" *ngFor="let i of scopeList" [nzDisabled]="i.disabled">{{i.name}}</label>
83
+					    	<!-- <label nz-radio nzValue="1">院区内使用</label> -->
84
+					    	<!-- <label nz-radio nzValue="2" *ngIf="currentHospital.parentDeptId">部门内使用</label> -->
85
+					    	<!-- <label nz-radio nzValue="3" *ngIf="currentHospital.parent || currentHospital.parentDeptId">垂直部门使用</label> -->
86
+					    </nz-radio-group>
87
+					  </nz-form-control>
88
+					</nz-form-item>
78 89
           <nz-form-item>
79 90
             <nz-form-label [nzSpan]="5" nzRequired nzFor="name">公司全称</nz-form-label>
80 91
             <nz-form-control [nzSpan]="19" nzErrorTip="请输入公司全称!">

+ 62 - 6
src/app/views/tripartite-company/tripartite-company.component.ts

@@ -71,7 +71,7 @@ export class TripartiteCompanyComponent implements OnInit {
71 71
       idx: this.pageIndex - 1,
72 72
       sum: this.pageSize,
73 73
       company: {
74
-        hosId: this.currentHospital.id,
74
+        statisticalHosId: this.currentHospital.id,
75 75
         busiType: { key: 'company_busi_type', value: '2' },
76 76
         ...this.searchDto,
77 77
       },
@@ -102,10 +102,39 @@ export class TripartiteCompanyComponent implements OnInit {
102 102
     this.modal = false;
103 103
     this.initForm();
104 104
   }
105
-
105
+	
106
+	// 使用范围选择
107
+	scopeValue:any;
108
+	// 格式化使用范围
109
+	setScopeRadio(){
110
+		let value = this.validateForm.value.employScope
111
+		let list = this.scopeList.find(i=>i.id == value)
112
+		if(list.value=='-1'){
113
+			this.scopeValue = ''
114
+		}else if(list.value=='1'){
115
+			if(this.currentHospital.parent){
116
+				this.scopeValue = this.currentHospital.parent.id
117
+			}else{
118
+				this.scopeValue = this.currentHospital.id
119
+			}
120
+		}else if(list.value=='2'){
121
+			if(this.currentHospital.parent && this.currentHospital.parentDeptId){
122
+				this.scopeValue = this.currentHospital.id
123
+			}
124
+		}else{
125
+			if(this.currentHospital.parent && this.currentHospital.parentDeptId){
126
+				this.scopeValue = this.currentHospital.parent.id
127
+			}else{
128
+				this.scopeValue = this.currentHospital.id
129
+			}
130
+		}
131
+		console.log(111,this.scopeValue)
132
+	}
133
+	
106 134
   // 初始化新增form表单
107 135
   initForm() {
108 136
     this.validateForm = this.fb.group({
137
+			employScope: ['', [Validators.required]],
109 138
       name: ['', [Validators.required, Validators.pattern(/\S/)]],
110 139
       nickName: ['', [Validators.required]],
111 140
       companyTypeIds: [this.companyTypeList.map(v => ({ label: v.name, value: v.id, checked: false })), [Validators.required]],
@@ -117,12 +146,32 @@ export class TripartiteCompanyComponent implements OnInit {
117 146
   //获取公司分类
118 147
   isLoading:boolean = false;
119 148
   companyTypeList:any[] = [];
149
+	scopeList:any[] = [];
120 150
   getCompanyType() {
121 151
     this.isLoading = true;
122 152
     this.mainService.getDictionary("list", "company_type").subscribe((data) => {
123
-      this.isLoading = false;
124 153
       this.companyTypeList = data || [];
125 154
     });
155
+		this.mainService.getDictionary("list", "select_range").subscribe((data) => {
156
+		  this.isLoading = false;
157
+			for(let i of data){
158
+				i.disabled = false
159
+			}
160
+			for(let i of data){
161
+				if((this.currentHospital || this.currentHospital.parent) && !this.currentHospital.parentDeptId){
162
+					if(i.value=='2'){
163
+						i.disabled = true
164
+					}
165
+				}
166
+				if (!this.currentHospital.parent && !this.currentHospital.parentDeptId){
167
+					if(i.value=='3'){
168
+						i.disabled = true
169
+					}
170
+				}
171
+			}
172
+		  this.scopeList = data;
173
+			console.log(9999,this.scopeList)
174
+		});
126 175
   }
127 176
 
128 177
   // 新增/编辑表单提交
@@ -134,7 +183,7 @@ export class TripartiteCompanyComponent implements OnInit {
134 183
     if (this.validateForm.invalid) {
135 184
       return;
136 185
     }
137
-
186
+		this.setScopeRadio()
138 187
     console.log(this.validateForm.value)
139 188
     let companyList = this.validateForm.value.companyTypeIds.filter(v => v.checked);
140 189
     if(!companyList.length){
@@ -149,7 +198,10 @@ export class TripartiteCompanyComponent implements OnInit {
149 198
       //增加
150 199
       postData = {
151 200
         company: {
152
-          hosId: this.currentHospital.id,
201
+          hosId: this.scopeValue,
202
+					selectRange:{
203
+						id:this.validateForm.value.employScope
204
+					},
153 205
           name: this.validateForm.value.name,
154 206
           nickName: this.validateForm.value.nickName,
155 207
           companyTypeIds: companyList.map(v => v.value).toString(),
@@ -164,7 +216,10 @@ export class TripartiteCompanyComponent implements OnInit {
164 216
         company:{
165 217
           ...this.coopData,
166 218
           ...{
167
-            hosId: this.currentHospital.id,
219
+            hosId: this.scopeValue,
220
+						selectRange:{
221
+							id:this.validateForm.value.employScope
222
+						},
168 223
             name: this.validateForm.value.name,
169 224
             nickName: this.validateForm.value.nickName,
170 225
             companyTypeIds: this.validateForm.value.companyTypeIds.filter(v => v.checked).map(v => v.value).toString(),
@@ -204,6 +259,7 @@ export class TripartiteCompanyComponent implements OnInit {
204 259
     this.add = false;
205 260
     this.modal = true;
206 261
     this.coopData = data;
262
+		this.validateForm.controls.employScope.setValue(data.selectRange.id);
207 263
     this.validateForm.controls.name.setValue(data.name);
208 264
     this.validateForm.controls.nickName.setValue(data.nickName);
209 265
     this.validateForm.controls.companyTypeIds.setValue(this.companyTypeList.map(v => ({label: v.name, value: v.id, checked: data.companyTypeIds.includes(v.id)})));

+ 1 - 1
src/app/views/users-management/users-management.component.ts

@@ -486,7 +486,7 @@ export class UsersManagementComponent implements OnInit {
486 486
     let companyData = {
487 487
       company: {
488 488
         busiType: {key: "company_busi_type", value: "2"},
489
-        hosId: hid,
489
+        statisticalHosId: hid,
490 490
       },
491 491
       idx: 0,
492 492
       sum: 20,