manage-client 3.2.146 → 3.2.147
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/dev-server.js +2 -2
- package/package.json +1 -1
- package/src/App.vue +1 -0
- package/src/components/SellReport/BankManager.vue +102 -102
- package/src/components/SellReport/Test.vue +862 -0
- package/src/components/WebReport/EchartsBox.vue +1 -0
- package/src/filiale/meihekou/CardHandplanQuery.vue +1 -1
- package/src/filiale/xinkang/ChargeQuery.vue +1308 -0
- package/src/filiale/xinkang/sale.js +10 -0
- package/src/filiale/zhongyi/CallReport/CallReportMainPage.vue +116 -0
- package/src/filiale/zhongyi/CallReport/IncomingTelegram.vue +162 -0
- package/src/filiale/zhongyi/CallReport/PercentageComplete.vue +291 -0
- package/src/filiale/zhongyi/CallReport/PercentageCompleteEchart.vue +140 -0
- package/src/filiale/zhongyi/CallReport/RateBottom.vue +143 -0
- package/src/filiale/zhongyi/CallReport/RateTop.vue +144 -0
- package/src/filiale/zhongyi/CallReport/ScrollContent.vue +143 -0
- package/src/filiale/zhongyi/CallReport/ServiceStatus.vue +385 -0
- package/src/filiale/zhongyi/CallReport/Time.vue +61 -0
- package/src/filiale/zhongyi/CallReport/Userinfo.vue +167 -0
- package/src/filiale/zhongyi/CallReport/WeatherData.vue +41 -0
- package/src/filiale/zhongyi/CallReport/WorkOrderPage.vue +181 -0
- package/src/filiale/zhongyi/sale.js +34 -1
- package/src/main.js +1 -1
- package/src/reportManage.js +4 -0
- package/static/images/zhongyi/Pigeon.png +0 -0
- package/static/images/zhongyi/background.png +0 -0
- package/static/images/zhongyi/blueBall.png +0 -0
- package/static/images/zhongyi/blueLadder.png +0 -0
- package/static/images/zhongyi/blueLine.png +0 -0
- package/static/images/zhongyi/bluebg.png +0 -0
- package/static/images/zhongyi/bulebg2.png +0 -0
- package/static/images/zhongyi/chart-2@2x.png +0 -0
- package/static/images/zhongyi/cloudy.png +0 -0
- package/static/images/zhongyi/exclamationPoint.png +0 -0
- package/static/images/zhongyi/netHall.png +0 -0
- package/static/images/zhongyi/orangebg.png +0 -0
- package/static/images/zhongyi/phone1.png +0 -0
- package/static/images/zhongyi/phone2.png +0 -0
- package/static/images/zhongyi/phone3.png +0 -0
- package/static/images/zhongyi/phone4.png +0 -0
- package/static/images/zhongyi/phone5.png +0 -0
- package/static/images/zhongyi/refresh.png +0 -0
- package/static/images/zhongyi/ring.png +0 -0
- package/static/images/zhongyi/service1.png +0 -0
- package/static/images/zhongyi/service2.png +0 -0
- package/static/images/zhongyi/telephone1.png +0 -0
- package/static/images/zhongyi/telephone2.png +0 -0
- package/static/images/zhongyi/trumpet.png +0 -0
- package/static/images/zhongyi/weChat.png +0 -0
- package/static/images/zhongyi/workOrder.png +0 -0
- package/static/images/zhongyi/yellowBall.png +0 -0
- package/static/images/zhongyi/yellowLadder.png +0 -0
- package/static/images/zhongyi/yellowbg.png +0 -0
- package/static/images/zhongyi//347/256/255/345/244/264 19 1 /346/213/267/350/264/235 2@2x.png +0 -0
- package/static/images/zhongyi//347/256/255/345/244/264 19 1 /346/213/267/350/264/235@2x.png +0 -0
- package/static/images/zhongyi//347/256/255/345/244/264 19 1.png +0 -0
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div id="echart2"></div>
|
|
3
|
+
|
|
4
|
+
</template>
|
|
5
|
+
|
|
6
|
+
<script>
|
|
7
|
+
import echarts from "echarts";
|
|
8
|
+
export default {
|
|
9
|
+
name: "RateBottom",
|
|
10
|
+
// components: {},
|
|
11
|
+
// props:['row','dat1'],
|
|
12
|
+
data(){
|
|
13
|
+
return {
|
|
14
|
+
hotLineData:67, //热线服务占比
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
ready(){
|
|
18
|
+
// console.log(this.row)
|
|
19
|
+
this.RateEchart2()
|
|
20
|
+
},
|
|
21
|
+
mounted(){
|
|
22
|
+
},
|
|
23
|
+
methods:{
|
|
24
|
+
|
|
25
|
+
RateEchart2(){
|
|
26
|
+
let myChart = echarts.init(document.getElementById("echart2"));
|
|
27
|
+
let data = {
|
|
28
|
+
value: this.hotLineData,
|
|
29
|
+
name: ''
|
|
30
|
+
};
|
|
31
|
+
let option = {
|
|
32
|
+
// backgroundColor: '#0B2C6F',
|
|
33
|
+
title: {
|
|
34
|
+
text: '{num|' + data.value + '%}',
|
|
35
|
+
subtext: '\n' + data.name,
|
|
36
|
+
x: '49%',
|
|
37
|
+
y: '49%',
|
|
38
|
+
textAlign: 'center',
|
|
39
|
+
textStyle: {
|
|
40
|
+
rich: {
|
|
41
|
+
num: {
|
|
42
|
+
fontWeight: '500',
|
|
43
|
+
color: '#fff',
|
|
44
|
+
fontFamily: '微软雅黑',
|
|
45
|
+
fontSize: 50,
|
|
46
|
+
},
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
},
|
|
50
|
+
subtextStyle: {
|
|
51
|
+
lineHeight: 0,
|
|
52
|
+
fontSize: 22,
|
|
53
|
+
color: '#fff',
|
|
54
|
+
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
data: [{
|
|
58
|
+
name: data.name,
|
|
59
|
+
}],
|
|
60
|
+
series: [{ // 主圆环
|
|
61
|
+
name: data.name,
|
|
62
|
+
type: 'pie',
|
|
63
|
+
radius: ['70%', '80%'],
|
|
64
|
+
center:['50%','60%'],
|
|
65
|
+
startAngle: 180,
|
|
66
|
+
endAngle: 0,
|
|
67
|
+
|
|
68
|
+
color: [{
|
|
69
|
+
type: 'linear',
|
|
70
|
+
x: 1,
|
|
71
|
+
y: 0,
|
|
72
|
+
x2: 0,
|
|
73
|
+
y2: 0,
|
|
74
|
+
colorStops: [{
|
|
75
|
+
offset: 0,
|
|
76
|
+
color: 'rgba(54, 255, 239, .1)' // 0% 处的颜色
|
|
77
|
+
}, {
|
|
78
|
+
offset: 1,
|
|
79
|
+
color: 'rgba(54, 255, 239, 1)' // 100% 处的颜色
|
|
80
|
+
}]
|
|
81
|
+
}, 'transparent'],
|
|
82
|
+
hoverAnimation: true,
|
|
83
|
+
legendHoverLink: false,
|
|
84
|
+
z: 10,
|
|
85
|
+
labelLine: {
|
|
86
|
+
normal: {
|
|
87
|
+
show: false
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
data: [{
|
|
91
|
+
value: 50 * data.value / 100
|
|
92
|
+
}, {
|
|
93
|
+
value: 100 - (50 * data.value / 100)
|
|
94
|
+
}]
|
|
95
|
+
}, { // 中间圈
|
|
96
|
+
name: '',
|
|
97
|
+
z: 5,
|
|
98
|
+
type: 'pie',
|
|
99
|
+
cursor: 'default',
|
|
100
|
+
radius: ['95%', '95%'],
|
|
101
|
+
center:['50%','60%'],
|
|
102
|
+
startAngle: 180,
|
|
103
|
+
hoverAnimation: false,
|
|
104
|
+
legendHoverLink: false,
|
|
105
|
+
labelLine: {
|
|
106
|
+
normal: {
|
|
107
|
+
show: false
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
//上层虚线
|
|
111
|
+
// data: [{
|
|
112
|
+
// value: 50,
|
|
113
|
+
// itemStyle: {
|
|
114
|
+
// // borderColor: '#2DF6F3',
|
|
115
|
+
// borderType: 'dashed',
|
|
116
|
+
// borderWidth: 2,
|
|
117
|
+
// }
|
|
118
|
+
// }, {
|
|
119
|
+
// value: 50,
|
|
120
|
+
// itemStyle: {
|
|
121
|
+
// color: 'transparent'
|
|
122
|
+
// }
|
|
123
|
+
// }]
|
|
124
|
+
}]
|
|
125
|
+
};
|
|
126
|
+
myChart.setOption(option);
|
|
127
|
+
|
|
128
|
+
},
|
|
129
|
+
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
}
|
|
133
|
+
</script>
|
|
134
|
+
|
|
135
|
+
<style scoped>
|
|
136
|
+
#echart2{
|
|
137
|
+
width: 200px;
|
|
138
|
+
height: 200px;
|
|
139
|
+
position: absolute;
|
|
140
|
+
top: 455px;
|
|
141
|
+
right: 27px;
|
|
142
|
+
}
|
|
143
|
+
</style>
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div id="echart1" ></div>
|
|
3
|
+
|
|
4
|
+
</template>
|
|
5
|
+
|
|
6
|
+
<script>
|
|
7
|
+
import echarts from "echarts";
|
|
8
|
+
export default {
|
|
9
|
+
name: "RateTop",
|
|
10
|
+
// components: {},
|
|
11
|
+
// props:['row','dat1'],
|
|
12
|
+
data(){
|
|
13
|
+
return {
|
|
14
|
+
netHallData:88, //网厅预约占比
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
ready(){
|
|
18
|
+
// console.log(this.row)
|
|
19
|
+
this.RateEchart1()
|
|
20
|
+
},
|
|
21
|
+
mounted(){
|
|
22
|
+
},
|
|
23
|
+
methods:{
|
|
24
|
+
|
|
25
|
+
RateEchart1(){
|
|
26
|
+
let myChart = echarts.init(document.getElementById("echart1"));
|
|
27
|
+
let data = {
|
|
28
|
+
value: this.netHallData,
|
|
29
|
+
name: ''
|
|
30
|
+
};
|
|
31
|
+
let option = {
|
|
32
|
+
// backgroundColor: '#0B2C6F',
|
|
33
|
+
title: {
|
|
34
|
+
text: '{num|' + data.value + '%}',
|
|
35
|
+
subtext: '\n' + data.name,
|
|
36
|
+
x: '49%',
|
|
37
|
+
y: '49%',
|
|
38
|
+
textAlign: 'center',
|
|
39
|
+
textStyle: {
|
|
40
|
+
rich: {
|
|
41
|
+
num: {
|
|
42
|
+
fontWeight: '500',
|
|
43
|
+
color: '#fff',
|
|
44
|
+
fontFamily: '微软雅黑',
|
|
45
|
+
fontSize: 50,
|
|
46
|
+
},
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
},
|
|
50
|
+
subtextStyle: {
|
|
51
|
+
lineHeight: 0,
|
|
52
|
+
fontSize: 22,
|
|
53
|
+
color: '#fff',
|
|
54
|
+
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
data: [{
|
|
58
|
+
name: data.name,
|
|
59
|
+
}],
|
|
60
|
+
series: [{ // 主圆环
|
|
61
|
+
name: data.name,
|
|
62
|
+
type: 'pie',
|
|
63
|
+
radius: ['70%', '80%'],
|
|
64
|
+
center:['50%','60%'],
|
|
65
|
+
startAngle: 180,
|
|
66
|
+
endAngle: 0,
|
|
67
|
+
|
|
68
|
+
color: [{
|
|
69
|
+
type: 'linear',
|
|
70
|
+
x: 1,
|
|
71
|
+
y: 0,
|
|
72
|
+
x2: 0,
|
|
73
|
+
y2: 0,
|
|
74
|
+
colorStops: [{
|
|
75
|
+
offset: 0,
|
|
76
|
+
color: 'rgba(255, 205, 0, .1)' // 0% 处的颜色
|
|
77
|
+
}, {
|
|
78
|
+
offset: 1,
|
|
79
|
+
color: 'rgba(255, 205, 0, 1)' // 100% 处的颜色
|
|
80
|
+
}]
|
|
81
|
+
}, 'transparent'],
|
|
82
|
+
hoverAnimation: true,
|
|
83
|
+
legendHoverLink: false,
|
|
84
|
+
z: 10,
|
|
85
|
+
labelLine: {
|
|
86
|
+
normal: {
|
|
87
|
+
show: false
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
data: [{
|
|
91
|
+
value: 50 * data.value / 100
|
|
92
|
+
}, {
|
|
93
|
+
value: 100 - (50 * data.value / 100)
|
|
94
|
+
}]
|
|
95
|
+
}, { // 中间圈
|
|
96
|
+
name: '',
|
|
97
|
+
z: 5,
|
|
98
|
+
type: 'pie',
|
|
99
|
+
cursor: 'default',
|
|
100
|
+
radius: ['95%', '95%'],
|
|
101
|
+
center:['50%','60%'],
|
|
102
|
+
startAngle: 180,
|
|
103
|
+
hoverAnimation: false,
|
|
104
|
+
legendHoverLink: false,
|
|
105
|
+
labelLine: {
|
|
106
|
+
normal: {
|
|
107
|
+
show: false
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
//上层虚线
|
|
111
|
+
// data: [{
|
|
112
|
+
// value: 50,
|
|
113
|
+
// itemStyle: {
|
|
114
|
+
// // borderColor: '#2DF6F3',
|
|
115
|
+
// borderType: 'dashed',
|
|
116
|
+
// borderWidth: 2,
|
|
117
|
+
// }
|
|
118
|
+
// }, {
|
|
119
|
+
// value: 50,
|
|
120
|
+
// itemStyle: {
|
|
121
|
+
// color: 'transparent'
|
|
122
|
+
// }
|
|
123
|
+
// }]
|
|
124
|
+
}]
|
|
125
|
+
};
|
|
126
|
+
myChart.setOption(option);
|
|
127
|
+
|
|
128
|
+
},
|
|
129
|
+
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
}
|
|
133
|
+
</script>
|
|
134
|
+
|
|
135
|
+
<style scoped>
|
|
136
|
+
#echart1{
|
|
137
|
+
width: 200px;
|
|
138
|
+
height: 200px;
|
|
139
|
+
position: absolute;
|
|
140
|
+
top: 222px;
|
|
141
|
+
right: 27px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
</style>
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div :data="noticeList" class="seamless-warp" :class-option="optionCustomer">
|
|
3
|
+
<ul class="item">
|
|
4
|
+
<li v-for="item in noticeList">
|
|
5
|
+
<span class="date">{{item.date}}</span>
|
|
6
|
+
<span class="duration" >{{item.duration}}</span>
|
|
7
|
+
<span class="name">{{item.name}}</span>
|
|
8
|
+
<span class="orderType">{{item.orderType}}</span>
|
|
9
|
+
<span class="address">{{item.address}}</span>
|
|
10
|
+
<span class="receptionist">{{item.receptionist}}</span>
|
|
11
|
+
<span class="state">{{item.state}}</span>
|
|
12
|
+
</li>
|
|
13
|
+
</ul>
|
|
14
|
+
</div>
|
|
15
|
+
</template>
|
|
16
|
+
|
|
17
|
+
<script>
|
|
18
|
+
export default {
|
|
19
|
+
name: "ScrollContent",
|
|
20
|
+
// name: "ScrollTest",
|
|
21
|
+
components:{
|
|
22
|
+
// ScrollBase
|
|
23
|
+
},
|
|
24
|
+
props:{
|
|
25
|
+
noticeList:{
|
|
26
|
+
type:Array,
|
|
27
|
+
default:[
|
|
28
|
+
{
|
|
29
|
+
date: "2022-09-01 10:25:06",
|
|
30
|
+
duration:'2min',
|
|
31
|
+
name:'赵王莉',
|
|
32
|
+
orderType:'报修',
|
|
33
|
+
address:'建设小区21号112室',
|
|
34
|
+
receptionist:'候倩楠',
|
|
35
|
+
state:'接听'
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
date: "2022-09-01 10:25:06",
|
|
39
|
+
duration:'2.5min',
|
|
40
|
+
name:'林妹妹',
|
|
41
|
+
orderType:'抢险',
|
|
42
|
+
address:'伊水花园21-1-1254',
|
|
43
|
+
receptionist:'马静静',
|
|
44
|
+
state:'待处理'
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
date: "2022-09-01 10:25:06",
|
|
48
|
+
duration:'2min',
|
|
49
|
+
name:'林妹妹',
|
|
50
|
+
orderType:'抢险',
|
|
51
|
+
address:'伊水花园21-1-1254',
|
|
52
|
+
receptionist:'马静静',
|
|
53
|
+
state:'待处理'
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
date: "2022-09-01 10:25:06",
|
|
57
|
+
duration:'2.5min',
|
|
58
|
+
name:'林妹妹',
|
|
59
|
+
orderType:'抢险',
|
|
60
|
+
address:'伊水花园21-1-1254',
|
|
61
|
+
receptionist:'马静静',
|
|
62
|
+
state:'待处理'
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
date: "2022-09-01 10:25:06",
|
|
66
|
+
duration:'2.5min',
|
|
67
|
+
name:'林妹妹',
|
|
68
|
+
orderType:'抢险',
|
|
69
|
+
address:'伊水花园21-1-1254',
|
|
70
|
+
receptionist:'马静静',
|
|
71
|
+
state:'待处理'
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
]
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
data() {
|
|
82
|
+
return {
|
|
83
|
+
optionCustomer: {
|
|
84
|
+
step: 0.2,
|
|
85
|
+
limitMoveNum: 3, //限制开始滚动的条数
|
|
86
|
+
openTouch: false,
|
|
87
|
+
waitTime: 5, //滚动的速度
|
|
88
|
+
direction: 1, //方向 0 往下 1 往上 2向左 3向右
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
};
|
|
93
|
+
</script>
|
|
94
|
+
|
|
95
|
+
<style scoped>
|
|
96
|
+
li{
|
|
97
|
+
list-style: none;
|
|
98
|
+
display: flex;
|
|
99
|
+
flex-direction: row;
|
|
100
|
+
align-items: center;
|
|
101
|
+
position: relative;
|
|
102
|
+
}
|
|
103
|
+
span{
|
|
104
|
+
color: #ffffff;
|
|
105
|
+
font-size: 22px;
|
|
106
|
+
line-height: 39px;
|
|
107
|
+
}
|
|
108
|
+
.date{
|
|
109
|
+
margin-left: 40px;
|
|
110
|
+
}
|
|
111
|
+
.duration{
|
|
112
|
+
margin-left: 115px;
|
|
113
|
+
}
|
|
114
|
+
.name{
|
|
115
|
+
position: absolute;
|
|
116
|
+
left: 526px;
|
|
117
|
+
width: 100px;
|
|
118
|
+
}
|
|
119
|
+
.orderType{
|
|
120
|
+
position: absolute;
|
|
121
|
+
left: 685px;
|
|
122
|
+
width: 60px;
|
|
123
|
+
}
|
|
124
|
+
.address{
|
|
125
|
+
position: absolute;
|
|
126
|
+
left: 826px;
|
|
127
|
+
width: 500px;
|
|
128
|
+
}
|
|
129
|
+
.receptionist{
|
|
130
|
+
position: absolute;
|
|
131
|
+
left: 1090px;
|
|
132
|
+
width: 90px;
|
|
133
|
+
}
|
|
134
|
+
.state{
|
|
135
|
+
position: absolute;
|
|
136
|
+
left: 1242px;
|
|
137
|
+
width: 100px;
|
|
138
|
+
color: #F7DB35;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
</style>
|