liuzhihui лет назад: 2
Родитель
Сommit
f23ff9fcbd
19 измененных файлов с 151 добавлено и 38 удалено
  1. 7 0
      CallCenterWeb.UI/RMYY/src/api/orderManagement/orderList.js
  2. 50 1
      CallCenterWeb.UI/RMYY/src/components/button/orderList.vue
  3. 5 2
      CallCenterWeb.UI/RMYY/src/views/comDispatch/components/dispatchdetail.vue
  4. 10 5
      CallCenterWeb.UI/RMYY/src/views/comDispatch/scheduleList/index.vue
  5. 1 1
      CallCenterWeb.UI/RMYY/src/views/leadConcernNew/officeServiceReport/index.vue
  6. 1 0
      CallCenterWeb.UI/RMYY/src/views/orderManage/orderList/index.vue
  7. 6 0
      CallCenterWeb.UI/RMYYAPP/config/buttons.config.js
  8. 1 0
      CallCenterWeb.UI/RMYYAPP/pages/myTask/comDispatch/applicantList/applicantList.vue
  9. 9 1
      CallCenterWeb.UI/RMYYAPP/pages/myTask/comDispatch/comDispatchDetail/comDispatchDetail.vue
  10. 36 3
      CallCenterWeb.UI/RMYYAPP/pages/myTask/workOrderDetail/button/button.vue
  11. BIN
      CallCenterWeb.UI/RMYYAPP/unpackage/cache/apk/__UNI__5A5207D_cm.apk
  12. 1 1
      CallCenterWeb.UI/RMYYAPP/unpackage/cache/apk/apkurl
  13. 1 1
      CallCenterWeb.UI/RMYYAPP/unpackage/cache/apk/cmManifestCache.json
  14. 9 9
      CallCenterWeb.UI/RMYYAPP/unpackage/cache/wgt/__UNI__5A5207D/app-service.js
  15. 1 1
      CallCenterWeb.UI/RMYYAPP/unpackage/cache/wgt/__UNI__5A5207D/app-view.js
  16. 1 1
      CallCenterWeb.UI/rmyyechartsNew/src/components/IVRSatisfactionByNow.vue
  17. 3 3
      CallCenterWeb.UI/rmyyechartsNew/src/components/connectionRate.vue
  18. 3 3
      CallCenterWeb.UI/rmyyechartsNew/src/components/traffic.vue
  19. 6 6
      CallCenterWeb.UI/rmyyechartsNew/src/views/Home.vue

+ 7 - 0
CallCenterWeb.UI/RMYY/src/api/orderManagement/orderList.js

@@ -7,6 +7,13 @@ export function postzhddToColleagueForm(data) {
7 7
     data
8 8
   })
9 9
 }
10
+export function postzhddCooperationForm(data) {
11
+  return request({
12
+    url: 'Scheduling/Cooperation',
13
+    method: 'post',
14
+    data
15
+  })
16
+}
10 17
 // 获取当前部门用户
11 18
 export function getCurrentDeptUsers(params) {
12 19
   return request({

+ 50 - 1
CallCenterWeb.UI/RMYY/src/components/button/orderList.vue

@@ -715,6 +715,28 @@
715 715
         <el-button v-loading.fullscreen.lock="loading" type="primary" @click="submitForm('zhddToColleagueForm')">确 定</el-button>
716 716
       </div>
717 717
     </el-dialog>
718
+    <!-- 综合调度菜单-协作 -->
719
+    <el-dialog :visible.sync="dialogStatus.dialog_dispatch_xiezuo" title="协作">
720
+      <el-form ref="zhddCooperationForm" :model="zhddCooperationForm" :rules="rules" label-width="100px">
721
+        <el-row>
722
+          <el-form-item label="协作人">
723
+            <el-select v-model="zhddCooperationForm.ToUserCode" filterable placeholder="请选择协作人"
724
+              @click="zhddCooperationFormChange">
725
+              <el-option v-for="item in currentDeptUsers" :key="item.F_UserCode" :label="item.F_UserName"
726
+                :value="item.F_UserCode" :disabled="item.F_UserCode === curusercode"/>
727
+            </el-select>
728
+          </el-form-item>
729
+          <el-form-item label="内容">
730
+            <el-input :autosize="{ minRows: 4, maxRows: 8 }" v-model="zhddCooperationForm.note" show-word-limit maxlength="100"
731
+              type="textarea" />
732
+          </el-form-item>
733
+        </el-row>
734
+      </el-form>
735
+      <div slot="footer" class="dialog-footer">
736
+        <el-button @click="dialogStatus.dialog_dispatch_xiezuo = false">取 消</el-button>
737
+        <el-button v-loading.fullscreen.lock="loading" type="primary" @click="submitForm('zhddCooperationForm')">确 定</el-button>
738
+      </div>
739
+    </el-dialog>
718 740
   </div>
719 741
 </template>
720 742
 
@@ -741,6 +763,7 @@
741 763
     postFinishWorkOrder,
742 764
     getCurrentDeptUsers,
743 765
     postzhddToColleagueForm,
766
+    postzhddCooperationForm
744 767
   } from "@/api/orderManagement/orderList";
745 768
   import {
746 769
     getSureWorkOrder,
@@ -780,6 +803,7 @@
780 803
     props: {},
781 804
     data() {
782 805
       return {
806
+        curusercode: "",
783 807
         loading: false,
784 808
         isxylx: "",
785 809
         xylxdatas: [],
@@ -864,6 +888,7 @@
864 888
           dialog_zhdd_cuidanOL: false,
865 889
           dialog_cldd_cuidanOL: false,
866 890
           dialog_dispatch_zhuantongshi: false,
891
+          dialog_dispatch_xiezuo: false,
867 892
           dialog_cldu_chehui: {
868 893
             text: "确定要撤回吗?",
869 894
             action: getCarWithdrawWorkOrder,
@@ -970,6 +995,10 @@
970 995
         zhddToColleagueForm: {
971 996
           ToUserCode: "",
972 997
         },
998
+        zhddCooperationForm: {
999
+          ToUserCode: "",
1000
+          note: ""
1001
+        },
973 1002
         dispatchtransferForm: {
974 1003
           DealMan: "",
975 1004
           DealDept: "",
@@ -1143,6 +1172,7 @@
1143 1172
       };
1144 1173
     },
1145 1174
     created() {
1175
+      this.curusercode = this.$store.getters.usercode;
1146 1176
       // this.getReason('FXYY')
1147 1177
       console.log("调用了");
1148 1178
       this.getTreebiaoben();
@@ -1224,6 +1254,9 @@
1224 1254
       zhddToColleagueFormChange(data) {
1225 1255
         this.zhddToColleagueForm.ToUserCode = data;
1226 1256
       },
1257
+      zhddCooperationFormChange(data) {
1258
+        this.zhddCooperationForm.ToUserCode = data;
1259
+      },
1227 1260
       removeItem(index) {
1228 1261
         this.dispatchhaocaiarrError.splice(index, 1);
1229 1262
       },
@@ -1458,7 +1491,9 @@
1458 1491
         this.wocode = code;
1459 1492
         this.fid = row.F_ID;
1460 1493
         this.rowdata = row;
1461
-        this.worktypeInfo = this.$store.getters.workTypeMap[parseInt(row.F_SonType || row.F_WorkOrderCategory || row.F_type2)].tag
1494
+        if(this.$store.getters.workTypeMap[parseInt(row.F_SonType || row.F_WorkOrderCategory || row.F_type2)]){         
1495
+          this.worktypeInfo = this.$store.getters.workTypeMap[parseInt(row.F_SonType || row.F_WorkOrderCategory || row.F_type2)].tag
1496
+        }
1462 1497
         console.log(name, "name",row.F_SonType,row.F_WorkOrderCategory,this.worktypeInfo);
1463 1498
         console.log(this.getNowDate());
1464 1499
         if (name === "dispatch_zhuantongshi") {
@@ -1468,6 +1503,13 @@
1468 1503
           this.dialogStatus.dialog_dispatch_zhuantongshi = true;
1469 1504
           return;
1470 1505
         }
1506
+        if (name === "dispatch_xiezuo") {
1507
+          // 综合调度协作
1508
+          this.getDepUsers();
1509
+          this.dialogStatus.dialog_dispatch_xiezuo = true;
1510
+          this.zhddCooperationForm.note = row.F_Content
1511
+          return;
1512
+        }
1471 1513
         if (name === "zhipai") {
1472 1514
           //清空
1473 1515
           this.deptidArr = [];
@@ -2195,6 +2237,9 @@
2195 2237
               case "zhddToColleagueForm":
2196 2238
                 this.postEvent = postzhddToColleagueForm;
2197 2239
                 break;
2240
+              case "zhddCooperationForm":
2241
+                this.postEvent = postzhddCooperationForm;
2242
+                break;
2198 2243
               default:
2199 2244
                 break;
2200 2245
             }
@@ -2292,6 +2337,10 @@
2292 2337
                       this.dispatchtransferForm.DealDept = "";
2293 2338
                       this.dispatchtransferForm.DealMan = "";
2294 2339
                     }
2340
+                    if(this.optionName == "dispatch_xiezuo"){
2341
+                      this.zhddCooperationForm.ToUserCode = ""
2342
+                      this.zhddCooperationForm.note = ""
2343
+                    }
2295 2344
                     if (this.optionName == "ywzx_finish") {
2296 2345
                       this.finishForm.reason = "";
2297 2346
                       this.finishForm.type = "";

+ 5 - 2
CallCenterWeb.UI/RMYY/src/views/comDispatch/components/dispatchdetail.vue

@@ -13,7 +13,8 @@
13 13
                   orderDetailData.StateName
14 14
                 }}</span>
15 15
                 <span v-if="orderDetailData.F_UrgeCount > 0" class="wostate" style="color: #60c136;border: 1px solid #60c136; ">催办{{ orderDetailData.F_UrgeCount }}</span>
16
-                <span class="wostate" v-if="orderDetailData.GapTime && orderDetailData.GapTime.indexOf('超时')>=0" style="color: #880000;border: 1px solid #880000; ">超期</span>
16
+                <span class="wostate" v-if="orderDetailData.GapTime && orderDetailData.GapTime.indexOf('超时')>=0" style="color: #880000;border: 1px solid #880000; ">超期</span>
17
+                <span class="wostate" v-if="orderDetailData.F_IsCollaborate && orderDetailData.F_IsCollaborate == 1" style="color: #e1ad3a;border: 1px solid #e1ad3a; ">协作</span>
17 18
               </h1>
18 19
             </el-col>
19 20
           </el-col>
@@ -75,7 +76,9 @@
75 76
               </tr>
76 77
               <tr>
77 78
                 <th>科室位置:</th>
78
-                <td colspan="5">{{ orderDetailData.F_LocationNew }}</td>
79
+                <td colspan="2">{{ orderDetailData.F_LocationNew }}</td>
80
+                <th>协作人:</th>
81
+                <td colspan="2">{{orderDetailData.Collaborator }} - {{ orderDetailData.F_Collaborator }}</td>
79 82
               </tr>
80 83
               <tr v-show="isDD.indexOf('DD') >= 0 || isDD === 'GLY'">
81 84
                 <th>接单时间:</th>

+ 10 - 5
CallCenterWeb.UI/RMYY/src/views/comDispatch/scheduleList/index.vue

@@ -33,6 +33,7 @@
33 33
             @click="hadndleOrderCode(scope.row)">{{ scope.row.F_WorkOrderCode }}</span>
34 34
           <el-tag v-if="scope.row.F_UrgeCount > 0" style="color: #60c136;border: 1px solid #60c136;background: none;">催办{{ scope.row.F_UrgeCount }}</el-tag>
35 35
           <el-tag v-if="scope.row.GapTime && scope.row.GapTime.indexOf('超时')>=0"  style="color: #880000;border: 1px solid #a80000;background: none;">超期</el-tag>
36
+          <el-tag v-if="scope.row.F_IsCollaborate == 1" style="color: #e1ad3a;border: 1px solid #e1ad3a;background: none;">协作</el-tag>
36 37
         </template>
37 38
       </el-table-column>
38 39
       <el-table-column v-if="fieldListFlag.F_WorkOrderCategory" :formatter="formtOrder" prop="F_WorkOrderCategory"
@@ -204,15 +205,19 @@
204 205
       },
205 206
       formtOrder(row, column) {
206 207
         if (row.F_WorkOrderCategory) {
207
-          return this.$store.getters.workTypeMap[
208
-            parseInt(row.F_WorkOrderCategory)
209
-          ].text;
208
+          if(this.$store.getters.workTypeMap[parseInt(row.F_WorkOrderCategory)]){
209
+            return this.$store.getters.workTypeMap[
210
+              parseInt(row.F_WorkOrderCategory)
211
+            ].text;
212
+          }
210 213
         }
211 214
       },
212 215
       formtOrderDept(row, column) {
213 216
         if (row.F_ApplicationDept && row.F_ApplicationDept != "0") {
214
-          return this.$store.getters.deptmap[parseInt(row.F_ApplicationDept)]
215
-            .text;
217
+          if(this.$store.getters.deptmap[parseInt(row.F_ApplicationDept)]){
218
+            return this.$store.getters.deptmap[parseInt(row.F_ApplicationDept)]
219
+              .text;
220
+          }
216 221
         }
217 222
       },
218 223
       btnClickEvents(button, wocode, row) {

+ 1 - 1
CallCenterWeb.UI/RMYY/src/views/leadConcernNew/officeServiceReport/index.vue

@@ -29,7 +29,7 @@
29 29
             v-for="item in repairman1"
30 30
             :key="item.usercode"
31 31
             :label="item.username + '(' + item.count + ')'"
32
-            :value="item.username"
32
+            :value="item.usercode"
33 33
           />
34 34
         </el-select>
35 35
       </el-form-item>

+ 1 - 0
CallCenterWeb.UI/RMYY/src/views/orderManage/orderList/index.vue

@@ -65,6 +65,7 @@
65 65
           <el-tag v-if="scope.row.GapTime && scope.row.GapTime.indexOf('超时')>=0"
66 66
             style="color: #880000;border: 1px solid #a80000;background: none;">超期</el-tag>
67 67
             <el-tag v-if="scope.row.F_TransferCount && scope.row.F_TransferCount>1" style="color: #55aa7f;border: 1px solid #55aa7f;background: none;">转{{ scope.row.F_TransferCount-1 }}</el-tag>
68
+          <el-tag v-if="scope.row.F_IsCollaborate == 1" style="color: #e1ad3a;border: 1px solid #e1ad3a;background: none;">协作</el-tag>
68 69
         </template>
69 70
       </el-table-column>
70 71
       <el-table-column v-if="fieldListFlag.F_ProposerDeptName" prop="F_ProposerDept" :formatter="formtDept" label="申请科室"

+ 6 - 0
CallCenterWeb.UI/RMYYAPP/config/buttons.config.js

@@ -368,6 +368,12 @@ export default {
368 368
 		annotation:	"转同事",
369 369
 		eventName: "disTrunCollBtn"
370 370
 	},
371
+	'dispatch_xiezuo': {
372
+		id: 54,
373
+		text: "协作",
374
+		annotation:	"协作",
375
+		eventName: "disCoppernBtn"
376
+	},
371 377
 	'zhuandiaodu': {
372 378
 		id: 52,
373 379
 		text: "转调度",

+ 1 - 0
CallCenterWeb.UI/RMYYAPP/pages/myTask/comDispatch/applicantList/applicantList.vue

@@ -38,6 +38,7 @@
38 38
 									<!-- <view class="textState" style="color: red;border:1px solid red;" v-if="item.StateName=='待接单'">{{ item.StateName}}</view> -->
39 39
 									<!-- <view class="textState" v-if="item.StateName!='待接单'">{{ item.StateName}}</view> -->
40 40
 									<view class="textState" style="right: 85px;" v-show="item.F_UrgeCount>0">催办 {{item.F_UrgeCount}}</view>
41
+									<view class="textState" style="right: 62px;color: #e1ad3a;border:1px solid #e1ad3a;text-align: center;" v-show="item.F_IsCollaborate==1">协作</view>
41 42
 								</view>							
42 43
 							</view>
43 44
 							<view class="textStateOld" style="color: red;border:1px solid red;" v-if="item.StateName=='待接单'">{{ item.StateName}}</view>

+ 9 - 1
CallCenterWeb.UI/RMYYAPP/pages/myTask/comDispatch/comDispatchDetail/comDispatchDetail.vue

@@ -12,6 +12,7 @@
12 12
 				<text class="textState" style="margin-left: 10px">{{
13 13
           detailContentData.StateName
14 14
         }}</text>
15
+			<text class="textState" v-show="detailContentData.F_IsCollaborate==1" style="color: #e1ad3a;border: 1px solid #e1ad3a;text-align: center;">协作</text>
15 16
 			</view>
16 17
 			<view class="contentTable">
17 18
 				<text class="contentTitle">工单类型:</text>
@@ -95,6 +96,10 @@
95 96
 				<text class="contentText">{{ detailContentData.F_AcceptTime }}</text>
96 97
 			</view>
97 98
 			<view class="contentTable">
99
+				<text class="contentTitle">协作人:</text>
100
+				<text class="contentText">{{ detailContentData.Collaborator }} - {{ detailContentData.F_Collaborator }}</text>
101
+			</view>
102
+			<view class="contentTable">
98 103
 				<text class="contentTitle">完成时间:</text>
99 104
 				<text class="contentText">{{ detailContentData.F_Endtime }}</text>
100 105
 			</view>
@@ -235,7 +240,7 @@
235 240
 			<view>
236 241
 				<text class="operationButtonTitle">操作</text>
237 242
 				<buttonsComponents class="buttons" :order-button-data="orderButtonData" :wid="workorderid"
238
-					:orderType="workOrdertype" :departid="departid" :applicationDept="applicationDept" />
243
+					:orderType="workOrdertype" :departid="departid" :applicationDept="applicationDept" :workerCon="workerCon" />
239 244
 			</view>
240 245
 		</view>
241 246
 
@@ -358,6 +363,7 @@
358 363
 				departid: "",
359 364
 				applicationDept: "",
360 365
 				workOrdertype: "",
366
+				workerCon: "",
361 367
 				sonData: [],
362 368
 				findIndex: -1,
363 369
 				evaluateDate: [], // 评价
@@ -538,6 +544,7 @@
538 544
 								console.log(this.detailContentData.F_WorkOrderCategory, '88999')
539 545
 								this.workOrdertype = this.detailContentData.F_WorkOrderCategory;
540 546
 								this.applicationDept = this.detailContentData.F_ApplicationDept;
547
+								this.workerCon = this.detailContentData.F_Content;
541 548
 								const identification = this.$mHelper.findParents(
542 549
 									this.orderTypeList,
543 550
 									this.detailContentData.F_WorkOrderCategory
@@ -692,6 +699,7 @@
692 699
 					color: #52c41a;
693 700
 					background-color: rgba(195, 239, 161, 0.2);
694 701
 					border-radius: 5px;
702
+					margin-left: 10px;
695 703
 				}
696 704
 
697 705
 				.fx {

+ 36 - 3
CallCenterWeb.UI/RMYYAPP/pages/myTask/workOrderDetail/button/button.vue

@@ -12,8 +12,8 @@
12 12
 				<uni-popup-dialog ref="inputClose" mode="input" :title="title" @confirm="dialogInputConfirm">
13 13
 					<view style="width:100%;">
14 14
 						<!-- <uni-data-checkbox v-model="assignType" :localdata="assignTypeVisit" style="margin-bottom: 20px;" v-show="auditPlaceholder === 'show'"/> -->
15
-						<uni-data-select v-model="Maintenancer" :localdata="maintenancerDate" @change="maintenancerChange" v-show="auditPlaceholder === 'show' || auditPlaceholder === 'show_users'"/>
16
-						<uni-easyinput type="textarea" autoHeight maxlength="100" v-model="cbreason" :placeholder="auditPlaceholder" v-show="!(auditPlaceholder === 'show' || auditPlaceholder === 'show_users')"/>
15
+						<uni-data-select style="margin-bottom: 10px;" v-model="Maintenancer" :localdata="maintenancerDate" @change="maintenancerChange" v-show="auditPlaceholder === 'show' || auditPlaceholder === 'show_users' || auditPlaceholder === 'show_xzusers'"/>
16
+						<uni-easyinput type="textarea" autoHeight maxlength="100" placeholder="请输入内容" v-model="cbreason" v-show="!(auditPlaceholder === 'show' || auditPlaceholder === 'show_users')"/>
17 17
 					</view>
18 18
 				</uni-popup-dialog>
19 19
 			</uni-popup>
@@ -111,7 +111,11 @@
111 111
 			fid:{
112 112
 				type:String,
113 113
 				default:''
114
-			}
114
+			},
115
+			workerCon: {
116
+				type: String,
117
+				default: ''
118
+			},
115 119
 		},
116 120
 		data() {
117 121
 			return {
@@ -176,6 +180,24 @@
176 180
 				this.auditPlaceholder = 'show_users'
177 181
 				this.$refs.inputDialog.open()
178 182
 			},
183
+			disCoppernBtn(){
184
+				this.cbreason = this.workerCon
185
+				const dept = uni.getStorageSync("deptId");
186
+				const curcode = uni.getStorageSync("userCode");
187
+				console.log(dept, 'dept');
188
+				pageData.getCurrentDeptUsers(dept, (res) => {
189
+					console.log(res,dept)
190
+					res.forEach(v => {
191
+						if(v.value == curcode ) {
192
+							v.disable = true
193
+						}
194
+					})
195
+					this.maintenancerDate = res
196
+				})
197
+				this.title = '协作'
198
+				this.auditPlaceholder = 'show_xzusers'
199
+				this.$refs.inputDialog.open()
200
+			},
179 201
 			callBtnMethods(methodName) {
180 202
 				console.log(methodName, 'methodName')
181 203
 				this[methodName]();
@@ -589,11 +611,22 @@
589 611
 				uni.showLoading({
590 612
 					title: '加载中'
591 613
 				})
614
+				// console.log(this.auditPlaceholder)
615
+				// console.log(this.Maintenancer, 'this.Maintenancer')
616
+				// return
592 617
 				// 关闭窗口后,恢复默认内容
593 618
 				if (this.auditPlaceholder !== 'show_users' && !this.cbreason) {
594 619
 					this.$mHelper.toast(this.auditPlaceholder)
595 620
 					return
596 621
 				}
622
+				if (this.auditPlaceholder == 'show_xzusers') {
623
+					if(!this.Maintenancer) {
624
+						this.$mHelper.toast('请选择协作人');
625
+						return
626
+					}
627
+					const addParams = {ToUserCode: this.Maintenancer,WorkOrderCode: this.wid,note: this.cbreason}
628
+					this.workOrderContent("Scheduling/Cooperation",addParams)
629
+				}
597 630
 				if(this.auditPlaceholder === 'show_users') {
598 631
 					console.log(this.Maintenancer, 'this.Maintenancer')
599 632
 					if(!this.Maintenancer) {

BIN
CallCenterWeb.UI/RMYYAPP/unpackage/cache/apk/__UNI__5A5207D_cm.apk


+ 1 - 1
CallCenterWeb.UI/RMYYAPP/unpackage/cache/apk/apkurl

@@ -1 +1 @@
1
-https://ide.dcloud.net.cn/build/download/331a8200-6c91-11ee-a899-9d2438a0c6f8
1
+https://ide.dcloud.net.cn/build/download/1e1b4eb0-7306-11ee-a47b-17c17218b4e6

Разница между файлами не показана из-за своего большого размера
+ 1 - 1
CallCenterWeb.UI/RMYYAPP/unpackage/cache/apk/cmManifestCache.json


Разница между файлами не показана из-за своего большого размера
+ 9 - 9
CallCenterWeb.UI/RMYYAPP/unpackage/cache/wgt/__UNI__5A5207D/app-service.js


Разница между файлами не показана из-за своего большого размера
+ 1 - 1
CallCenterWeb.UI/RMYYAPP/unpackage/cache/wgt/__UNI__5A5207D/app-view.js


+ 1 - 1
CallCenterWeb.UI/rmyyechartsNew/src/components/IVRSatisfactionByNow.vue

@@ -300,7 +300,7 @@
300 300
 		width: 90px;
301 301
 		text-align: center;
302 302
 		position: absolute;
303
-		right: 5px;
303
+		right: 2px;
304 304
 		bottom: 30px;
305 305
 		color: #38acac;
306 306
 		font-size: 14px;

+ 3 - 3
CallCenterWeb.UI/rmyyechartsNew/src/components/connectionRate.vue

@@ -106,7 +106,7 @@
106 106
 					},
107 107
 					legend: {
108 108
 						icon: "circle",
109
-						top: '10%',
109
+						top: '-20%',
110 110
 						left: 'right',
111 111
 						orient: 'vertical',
112 112
 						padding: [80, 20, 0, 0],
@@ -115,7 +115,7 @@
115 115
 						textStyle: {
116 116
 							//图例文字的样式
117 117
 							color: ["#ffffff", "#ffffff"],
118
-							fontSize: 14,
118
+							fontSize: 12,
119 119
 						},
120 120
 					},
121 121
 					// graphic: {
@@ -147,7 +147,7 @@
147 147
 							labelLine: {
148 148
 								normal: {
149 149
 									length:20,
150
-									length:10,
150
+									length:5,
151 151
 									lineStyle: {
152 152
 										color: '#8098cd'
153 153
 									},

+ 3 - 3
CallCenterWeb.UI/rmyyechartsNew/src/components/traffic.vue

@@ -102,7 +102,7 @@
102 102
 					},
103 103
 					legend: {
104 104
 						icon: "circle",
105
-						top: '10%',
105
+						top: '-20',
106 106
 						left: 'right',
107 107
 						orient: 'vertical',
108 108
 						padding: [80, 20, 0, 0],
@@ -111,7 +111,7 @@
111 111
 						textStyle: {
112 112
 							//图例文字的样式
113 113
 							color: ["#ffffff", "#ffffff"],
114
-							fontSize: 14,
114
+							fontSize: 12,
115 115
 						},
116 116
 					},
117 117
 					color: ['#09dae7', "#ff957c"],
@@ -215,6 +215,6 @@
215 215
 	#traffic {
216 216
 		background-image: url("../assets/imgs/来电服务评价.png");
217 217
 		background-size: 100% 100%;
218
-		padding-top: 10px;
218
+		padding-top: 10px;		
219 219
 	}
220 220
 </style>

+ 6 - 6
CallCenterWeb.UI/rmyyechartsNew/src/views/Home.vue

@@ -16,17 +16,17 @@
16 16
 				<!-- 话务 -->
17 17
 				<el-col :span="6">
18 18
 					<!-- 来电服务评价 -->
19
-					<div class="grid-content">
19
+					<div class="grid-content" style="position: relative;right: 20px;">
20 20
 						<traffic :searchData='searchType'></traffic>
21 21
 					</div>
22 22
 					<!-- 工单满意度 -->
23
-					<div class="grid-content">
23
+					<div class="grid-content" style="position: relative;right: 20px;">
24 24
 						<connection-rate :searchData='searchType'></connection-rate>
25 25
 					</div>
26 26
 				</el-col>
27 27
 				<el-col :span="12">
28 28
 					<!-- 地图 -->
29
-					<div class="grid-content">
29
+					<div class="grid-content" style="position: relative;right: 5px;">
30 30
 						<conversation-by-now :searchData='searchType'></conversation-by-now>
31 31
 					</div>
32 32
 				</el-col>
@@ -40,7 +40,7 @@
40 40
 			<el-row :gutter="20">
41 41
 				<!-- 调度平台 -->
42 42
 				<el-col :span="12">
43
-					<div class="grid-content">
43
+					<div class="grid-content" style="position: relative;right: 20px;">
44 44
 						<car-type :searchData='searchType'></car-type>
45 45
 					</div>
46 46
 				</el-col>
@@ -156,8 +156,8 @@
156 156
 
157 157
 	.grid-content {
158 158
 		// padding: 10px;
159
-		border-radius: 4px;
160
-		min-height: 36px;
159
+		// border-radius: 4px;
160
+		// min-height: 36px;
161 161
 		// background-color: rgba(0,45,92,.6)
162 162
 	}
163 163
 </style>