manage-client 3.2.262 → 3.2.264

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.
Files changed (39) hide show
  1. package/build/dev-server.js +180 -180
  2. package/package.json +1 -1
  3. package/src/components/SellReport/ManageBusSummary.vue +2 -0
  4. package/src/filiale/ningjin/CallReport/CallReportMainPage.vue +146 -0
  5. package/src/filiale/ningjin/CallReport/DropDownBox.vue +64 -0
  6. package/src/filiale/ningjin/CallReport/IncomingTelegram.vue +187 -0
  7. package/src/filiale/ningjin/CallReport/PercentageComplete.vue +413 -0
  8. package/src/filiale/ningjin/CallReport/PercentageCompleteEchart.vue +150 -0
  9. package/src/filiale/ningjin/CallReport/RateBottom.vue +143 -0
  10. package/src/filiale/ningjin/CallReport/RateTop.vue +144 -0
  11. package/src/filiale/ningjin/CallReport/ScrollContent.vue +143 -0
  12. package/src/filiale/ningjin/CallReport/ServiceStatus.vue +371 -0
  13. package/src/filiale/ningjin/CallReport/SwiperTools.vue +145 -0
  14. package/src/filiale/ningjin/CallReport/SwiperTools2.vue +176 -0
  15. package/src/filiale/ningjin/CallReport/Time.vue +100 -0
  16. package/src/filiale/ningjin/CallReport/Userinfo.vue +69 -0
  17. package/src/filiale/ningjin/CallReport/WeatherData.vue +108 -0
  18. package/src/filiale/ningjin/CallReport/WorkOrderPage.vue +260 -0
  19. package/src/filiale/ningjin/FillCardQuery.vue +581 -0
  20. package/src/filiale/ningjin/GasStatistics.vue +39 -20
  21. package/src/filiale/ningjin/LostContactAnalysisList.vue +676 -0
  22. package/src/filiale/ningjin/ManageBusSummaryPeng.vue +241 -0
  23. package/src/filiale/ningjin/ManageHandSellMoney.vue +247 -0
  24. package/src/filiale/ningjin/ManageSellType.vue +284 -0
  25. package/src/filiale/ningjin/MeterExceptionList.vue +54 -9
  26. package/src/filiale/ningjin/UserLostContactAnalysis.vue +592 -0
  27. package/src/filiale/ningjin/config/exportConfig.js +35 -34
  28. package/src/filiale/ningjin/reportManage.js +6 -1
  29. package/src/filiale/ningjin/sale.js +26 -0
  30. package/src/filiale/ningjin/webmeterManage.js +5 -1
  31. package/src/filiale/wenxi/ChargeQuery.vue +26 -112
  32. package/src/filiale/wenxi/FmyGasDeviceQuery.vue +144 -17
  33. package/src/filiale/wenxi/GasDeviceQuery.vue +975 -0
  34. package/src/filiale/wenxi/RecordInfoQuery.vue +1 -1
  35. package/src/filiale/wenxi/sale.js +2 -0
  36. package/src/filiale/yuansheng/DayReportList.vue +15 -1
  37. package/node_modules.zip +0 -0
  38. package/static/newStyle/new_stretch_bottom.png +0 -0
  39. package/static/newStyle/new_stretch_top.png +0 -0
@@ -0,0 +1,150 @@
1
+ <template>
2
+ <div id="echart"></div>
3
+ </template>
4
+
5
+
6
+ <!--PercentageCompleteEchart-->
7
+ <script>
8
+ import echarts from "echarts";
9
+ export default {
10
+ name: "PercentageCompleteEchart",
11
+ // components: {},
12
+ props:['wanchengLv'],
13
+ data(){
14
+ return {
15
+ percentageComplete:this.wanchengLv?this.wanchengLv:'0%',
16
+ }
17
+ },
18
+ ready(){
19
+ this.percentageCompleteEchart()
20
+
21
+ },
22
+ mounted(){
23
+ this.percentageCompletel()
24
+ },
25
+ methods:{
26
+ percentageCompletel(){
27
+ this.percentageComplete=this.wanchengLv?this.wanchengLv:'0%'
28
+ },
29
+ percentageCompleteEchart(){
30
+ let myChart = echarts.init(document.getElementById("echart"));
31
+ let value = parseInt(this.percentageComplete.substring(0, this.percentageComplete.length - 1));
32
+ console.log("value"+value)
33
+ let option = {
34
+ // backgroundColor:"#061740",
35
+ title: {
36
+ text: `${value}%`,
37
+ x: 'center',
38
+ y: '38%',
39
+ textStyle: {
40
+ color: '#00F6FF',
41
+ fontSize:36
42
+ }
43
+ },
44
+ series: [ {
45
+ type: 'pie',
46
+ radius: ['58%', '45%'],
47
+ silent: true,
48
+ clockwise: false,
49
+ startAngle: 90,
50
+ z: 0,
51
+ zlevel: 0,
52
+ label: {
53
+ normal: {
54
+ position: "center",
55
+
56
+ }
57
+ },
58
+ data: [{
59
+ value: value,
60
+ name: "",
61
+ itemStyle: {
62
+ normal: {
63
+ color:"#00F6FF",
64
+ }
65
+ }
66
+ },
67
+ {
68
+ value: 100-value,
69
+ name: "",
70
+ label: {
71
+ normal: {
72
+ show: false
73
+ }
74
+ },
75
+ itemStyle: {
76
+ normal: {
77
+ color: "transparent"
78
+ }
79
+ }
80
+ }
81
+ ]
82
+ },
83
+
84
+ {
85
+ name: "",
86
+ type: "gauge",
87
+ radius: "58%",
88
+ center: ['50%', '50%'],
89
+ startAngle: 0,
90
+ endAngle: 359.9,
91
+ splitNumber: 15,
92
+ hoverAnimation: true,
93
+ axisTick: {
94
+ show: false
95
+ },
96
+ splitLine: {
97
+ length: 17,
98
+ lineStyle: {
99
+ width: 5,
100
+ color: "#061740"
101
+ }
102
+ },
103
+ axisLabel: {
104
+ show: false
105
+ },
106
+ pointer: {
107
+ show: false
108
+ },
109
+ axisLine: {
110
+ lineStyle: {
111
+ opacity: 0
112
+ }
113
+ },
114
+ detail: {
115
+ show: false
116
+ },
117
+ data: [{
118
+ value: 0,
119
+ name: ""
120
+ }]
121
+ },
122
+
123
+ ]
124
+ };
125
+
126
+ myChart.setOption(option);
127
+
128
+ },
129
+
130
+ },
131
+ watch: {
132
+ 'wanchengLv'(val){
133
+ this.percentageCompletel();
134
+ this.percentageCompleteEchart();
135
+ }
136
+ }
137
+
138
+ }
139
+ </script>
140
+
141
+
142
+ <style scoped>
143
+ #echart{
144
+ margin-left: 14.0625vw;
145
+ margin-top: 12.963vh;
146
+ width: 13.021vw;
147
+ height: 23.148vh;
148
+ }
149
+ canvas{}
150
+ </style>
@@ -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: '40%',
38
+ textAlign: 'center',
39
+ textStyle: {
40
+ rich: {
41
+ num: {
42
+ fontWeight: '500',
43
+ color: '#fff',
44
+ fontFamily: '微软雅黑',
45
+ fontSize: 40,
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: 10.417vw;
138
+ height: 18.519vh;
139
+ position: absolute;
140
+ top: 42.13vh;
141
+ right: 1.40625vw;
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: '40%',
38
+ textAlign: 'center',
39
+ textStyle: {
40
+ rich: {
41
+ num: {
42
+ fontWeight: '500',
43
+ color: '#fff',
44
+ fontFamily: '微软雅黑',
45
+ fontSize: 40,
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: 10.417vw;
138
+ height: 18.519vh;
139
+ position: absolute;
140
+ top: 20.556vh;
141
+ right: 1.40625vw;
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: 2.037vh;
106
+ line-height: 3.611vh;
107
+ }
108
+ .date{
109
+ margin-left: 2.083vw;
110
+ }
111
+ .duration{
112
+ margin-left: 5.99vw;
113
+ }
114
+ .name{
115
+ position: absolute;
116
+ left: 27.396vw;
117
+ width: 9.259vh;
118
+ }
119
+ .orderType{
120
+ position: absolute;
121
+ left: 35.677vw;
122
+ width: 3.125vw;
123
+ }
124
+ .address{
125
+ position: absolute;
126
+ left: 43.021vw;
127
+ width: 26.042vw;
128
+ }
129
+ .receptionist{
130
+ position: absolute;
131
+ left: 56.771vw;
132
+ width: 4.6875vw;
133
+ }
134
+ .state{
135
+ position: absolute;
136
+ left: 64.6875vw;
137
+ width: 5.208vw;
138
+ color: #F7DB35;
139
+ }
140
+
141
+
142
+
143
+ </style>