manage-client 3.2.263 → 3.2.265

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 (33) hide show
  1. package/build/dev-server.js +180 -180
  2. package/package.json +111 -111
  3. package/src/filiale/kelai/ChargeQuery.vue +1341 -0
  4. package/src/filiale/kelai/sale.js +2 -1
  5. package/src/filiale/ningjin/CallReport/CallReportMainPage.vue +146 -0
  6. package/src/filiale/ningjin/CallReport/DropDownBox.vue +64 -0
  7. package/src/filiale/ningjin/CallReport/IncomingTelegram.vue +187 -0
  8. package/src/filiale/ningjin/CallReport/PercentageComplete.vue +413 -0
  9. package/src/filiale/ningjin/CallReport/PercentageCompleteEchart.vue +150 -0
  10. package/src/filiale/ningjin/CallReport/RateBottom.vue +143 -0
  11. package/src/filiale/ningjin/CallReport/RateTop.vue +144 -0
  12. package/src/filiale/ningjin/CallReport/ScrollContent.vue +143 -0
  13. package/src/filiale/ningjin/CallReport/ServiceStatus.vue +371 -0
  14. package/src/filiale/ningjin/CallReport/SwiperTools.vue +145 -0
  15. package/src/filiale/ningjin/CallReport/SwiperTools2.vue +176 -0
  16. package/src/filiale/ningjin/CallReport/Time.vue +100 -0
  17. package/src/filiale/ningjin/CallReport/Userinfo.vue +69 -0
  18. package/src/filiale/ningjin/CallReport/WeatherData.vue +108 -0
  19. package/src/filiale/ningjin/CallReport/WorkOrderPage.vue +260 -0
  20. package/src/filiale/ningjin/FillCardQuery.vue +581 -0
  21. package/src/filiale/ningjin/GasStatistics.vue +39 -20
  22. package/src/filiale/ningjin/LostContactAnalysisList.vue +676 -0
  23. package/src/filiale/ningjin/ManageBusSummaryPeng.vue +241 -0
  24. package/src/filiale/ningjin/ManageHandSellMoney.vue +247 -0
  25. package/src/filiale/ningjin/ManageSellType.vue +284 -0
  26. package/src/filiale/ningjin/MeterExceptionList.vue +54 -9
  27. package/src/filiale/ningjin/UserLostContactAnalysis.vue +592 -0
  28. package/src/filiale/ningjin/config/exportConfig.js +35 -34
  29. package/src/filiale/ningjin/reportManage.js +6 -1
  30. package/src/filiale/ningjin/sale.js +26 -0
  31. package/src/filiale/ningjin/webmeterManage.js +5 -1
  32. package/src/filiale/wenxi/GasDeviceQuery.vue +975 -0
  33. package/src/filiale/wenxi/sale.js +2 -0
@@ -3,6 +3,7 @@ import Vue from 'vue'
3
3
  export default function () {
4
4
  // 用户查询
5
5
  Vue.component('user-query', (resolve) => { require(['./UserQuery'], resolve) })
6
- // 收费查询
7
6
  Vue.component('area-charge-query', (resolve) => { require(['./AreaChargeQuery'], resolve) })
7
+ // 收费查询
8
+ Vue.component('charge-query', (resolve) => { require(['./ChargeQuery'], resolve) })
8
9
  }
@@ -0,0 +1,146 @@
1
+ <template>
2
+ <div class="main-basic">
3
+ <!-- <basic-page ></basic-page>-->
4
+ <!-- &lt;!&ndash;左侧内容模块&ndash;&gt;-->
5
+ <!-- <template v-slot:contentLeft>-->
6
+ <!-- <left-content-page></left-content-page>-->
7
+ <!-- </template>-->
8
+ <!-- &lt;!&ndash;右侧&ndash;&gt;-->
9
+ <!--分公司下拉框-->
10
+ <drop-down-box @select="selectIndex"></drop-down-box>
11
+ <weather-data :filiale.sync="f_orgname" ></weather-data>
12
+ <time></time>
13
+ <div class="content-header">{{ f_orgname }}</div>
14
+ <div class="inform" v-if="false"><span><i></i>{{ data.inform }}</span></div>
15
+ <!--工单模块-->
16
+ <work-order-page :filiale-id.sync="filiale"></work-order-page>
17
+ <!--完成率模块-->
18
+ <percentage-complete :filiale-id.sync="filiale" @wanchenglv="wanchenglvs" ></percentage-complete>
19
+ <!--echart-->
20
+ <percentage-complete-echart :wancheng-lv.sync="wanchenglvss" ></percentage-complete-echart>
21
+ <!--用户模块-->
22
+ <userinfo :filiale-id.sync="filiale"></userinfo>
23
+ <!--来电统计模块-->
24
+ <incoming-telegram></incoming-telegram>
25
+ <!---->
26
+ <!-- <rate-top></rate-top>-->
27
+ <!-- <rate-bottom></rate-bottom>-->
28
+ <!--客服状态模块-->
29
+ <service-status></service-status>
30
+ </div>
31
+ </template>
32
+
33
+ <script>
34
+ import WorkOrderPage from "./WorkOrderPage";
35
+ // import Select from "./Select";
36
+ import {HttpResetClass} from "vue-client";
37
+ import PercentageComplete from "./PercentageComplete";
38
+ import PercentageCompleteEchart from "./PercentageCompleteEchart";
39
+ import RateTop from "./RateTop";
40
+ import RateBottom from "./RateBottom";
41
+ import WeatherData from "./WeatherData";
42
+ import ServiceStatus from "./ServiceStatus";
43
+ import IncomingTelegram from "./IncomingTelegram";
44
+ import DropDownBox from "./DropDownBox";
45
+ export default {
46
+ components: {ServiceStatus,IncomingTelegram,DropDownBox, WeatherData, PercentageComplete,PercentageCompleteEchart, WorkOrderPage,RateTop,RateBottom},
47
+ title:'CallReportMainPage',
48
+ data() {
49
+ return {
50
+ // model:"初入数据",
51
+ data:{
52
+ inform:'2022.3.7号停气',
53
+ },
54
+ f_orgname:'',
55
+ filiale:'',
56
+ wanchenglvss:'',
57
+ }
58
+ },
59
+ name: "CallReportMainPage",
60
+ methods:{
61
+ wanchenglvs(val){
62
+ console.log("这里是父组件",val)
63
+ this.wanchenglvss=val
64
+ console.log("wanchenglvss",this.wanchenglvss)
65
+ },
66
+ selectIndex(val){
67
+ console.log("selectIndex",val)
68
+ this.filiale=val.value
69
+ this.f_orgname=val.label
70
+ }
71
+ },
72
+ watch: {
73
+ 'filiale'(val){
74
+ console.log('toOrgid=====filiale===>',val)
75
+ }
76
+ }
77
+ }
78
+ </script>
79
+
80
+ <style scoped>
81
+ .main-basic{
82
+ /* margin: 0; */
83
+ width: 100vw;
84
+ height: 100vh;
85
+ background-image: url("../../../../static/images/zhongyi/background.png");
86
+ background-repeat: no-repeat;
87
+ }
88
+ .content-header {
89
+ width: 25.333vw;
90
+ height: 3.519vh;
91
+ font-size: 2.704vh;
92
+ color: #fff;
93
+ position: absolute;
94
+ top: 1.389vh;
95
+ left: 42.6vw;
96
+ line-height: 3.333vh;
97
+ font-weight: bolder;
98
+ font-family: '黑体';
99
+ }
100
+ .inform {
101
+ width: 35.833vw;
102
+ height: 6.019vh;
103
+ background-image: url("../../../../static/images/zhongyi/orangebg.png");
104
+ background-repeat: no-repeat;
105
+ background-position: 0px 0px;
106
+ background-size: cover;
107
+ position: absolute;
108
+ top: 11.204vh;
109
+ left: 31.458vw;
110
+ text-align: center;
111
+ }
112
+
113
+ .inform span {
114
+ font-size: 40px;
115
+ font-weight: bold;
116
+ color: #FFFFFF;
117
+ line-height: 33px;
118
+ position: relative;
119
+ top: 1.204vh;
120
+ }
121
+
122
+ .inform i {
123
+ width: 2.03125vw;
124
+ height: 2.87vh;
125
+ background-image: url("../../../../static/images/zhongyi/trumpet.png");
126
+ background-repeat: no-repeat;
127
+ background-position: 0px 0px;
128
+ background-size: cover;
129
+ position: absolute;
130
+ left: -2.604vw;
131
+ top: 1.111vh;
132
+ }
133
+ .filiale{
134
+ width: 300px;
135
+ height: 50px;
136
+ position: absolute;
137
+ top: 75px;
138
+ left: 31px;
139
+ }
140
+ .font_normal_body{
141
+ color: #fff;
142
+ }
143
+ /*.default.focus,default.focus,dropdown-menu{*/
144
+ /* background: #0f136c;*/
145
+ /*}*/
146
+ </style>
@@ -0,0 +1,64 @@
1
+ <template>
2
+ <!-- 分公司下拉框 -->
3
+ <div class="col-sm-3 form-group form-input-group drop-down-box" style="width: 20%">
4
+ <label class="font_normal_body" style="color: #fff;">分公司</label>
5
+ <v-select
6
+ placeholder='请选择分公司'
7
+ :value-single="true"
8
+ v-model='f_orgstr'
9
+ :value.sync="f_orgstr"
10
+ :options='orgstrs'
11
+ close-on-select clear-button>
12
+ </v-select>
13
+ </div>
14
+
15
+
16
+ </template>
17
+
18
+ <script>
19
+
20
+ export default {
21
+ name: "DropDownBox",
22
+ data(){
23
+ return{
24
+ f_orgstr: '23145',
25
+ orgstrs:[
26
+ {label: '夏津中邑燃气有限公司', value: '21131'},
27
+ {label: '临邑中邑燃气有限公司', value: '21137'},
28
+ {label: '山东彤运天燃气有限公司', value: '21143'},
29
+ {label: '庆云浩通天燃气有限公司', value: '21155'},
30
+ {label: '山东中邑燃气有限公司', value: '23145'}
31
+ ]
32
+ }
33
+ },
34
+ computed:{
35
+ },
36
+ ready(){
37
+
38
+ },
39
+ methods:{
40
+
41
+ },
42
+ watch: {
43
+ 'f_orgstr': {
44
+ handler(val){
45
+ for (const orgstr of this.orgstrs) {
46
+ if (orgstr.value == val){
47
+ this.$emit('select',orgstr)
48
+ break
49
+ }
50
+ }
51
+
52
+ },
53
+ immediate: true
54
+ }
55
+ },
56
+ }
57
+ </script>
58
+
59
+ <style scoped>
60
+ .drop-down-box{
61
+ position: absolute;
62
+ top: 76px;
63
+ }
64
+ </style>
@@ -0,0 +1,187 @@
1
+ <template>
2
+ <!-- 来电模块 -->
3
+ <div class="incoming-telegram">
4
+ <p><i></i><span>来电数量统计</span></p>
5
+ <i></i><i></i>
6
+ <div class="incoming-telegram-div">
7
+ <span>{{ data.netAppointment}}</span><br>
8
+ <span>日统计来电数量</span>
9
+ </div>
10
+ <div class="incoming-telegram-div">
11
+ <span>{{ data.hotLine }}</span><br>
12
+ <span>月统计来电数量</span>
13
+ </div>
14
+ <!-- <span class="text1">接通率</span>-->
15
+ <!-- <span class="text2">接通率</span>-->
16
+ <!-- <div class="blueLadder"></div>-->
17
+ <!-- <div class="yellowLadder"></div>-->
18
+
19
+
20
+ </div>
21
+ </template>
22
+
23
+ <script>
24
+ import echarts from "echarts";
25
+ import {HttpResetClass} from "vue-client";
26
+ export default {
27
+ name: "IncomingTelegram",
28
+
29
+ data(){
30
+ return{
31
+ data:{
32
+ netAppointment:'', //日统计
33
+ hotLine:'' //月统计
34
+
35
+
36
+ }
37
+ }
38
+ },
39
+ methods:{
40
+ getrecords(){
41
+ let http = new HttpResetClass()
42
+ http.load('post','rs/logic/RecordQuantity',{
43
+ data: {
44
+ }
45
+ },{rejectMsg:null,resolveMsg:null}).then((ress)=>{
46
+ console.log("完成"+JSON.stringify(ress.data))
47
+ this.data.netAppointment = ress.data.data.rishuliang||0
48
+ this.data.hotLine = ress.data.data.yueshuliang||0
49
+ })
50
+ }
51
+ },
52
+ ready(){
53
+ this.getrecords()
54
+ setInterval(() => {
55
+ this.getrecords()
56
+ }, 5000*60)
57
+ }
58
+
59
+
60
+ }
61
+ </script>
62
+
63
+ <style scoped>
64
+
65
+ /* 来电统计样式 */
66
+ .incoming-telegram {
67
+ width: 23.4375vw;
68
+ height: 51.667vh;
69
+ background: rgba(255, 255, 255, .04);
70
+ position: absolute;
71
+ top: 12.315vh;
72
+ right: 1.198vw;
73
+ }
74
+
75
+ .incoming-telegram p i {
76
+ width: 1.458vw;
77
+ height: 2.593vh;
78
+ background-image: url('../../../../static/images/zhongyi/chart-2@2x.png');
79
+ background-repeat: no-repeat;
80
+ background-size: cover;
81
+ background-position: 0 0;
82
+ position: absolute;
83
+ top: 2.315vh;
84
+ left: 1.51vw;
85
+ }
86
+
87
+ .incoming-telegram i {
88
+ width: 22.8125vw;
89
+ height: 0.093vh;
90
+ background-image: url('../../../../static/images/zhongyi/blueLine.png');
91
+ background-repeat: no-repeat;
92
+ background-size: cover;
93
+ position: absolute;
94
+ top: 6.852vh;
95
+ left: 1.09375vw;
96
+ }
97
+
98
+ .incoming-telegram i:nth-of-type(2) {
99
+ top: 6.667vh;
100
+ }
101
+
102
+ .incoming-telegram p span {
103
+ font-size: 2.5vh;
104
+ color: #FFFFFF;
105
+ position: absolute;
106
+ top: 1.852vh;
107
+ left: 3.698vw;
108
+ }
109
+
110
+
111
+ .incoming-telegram-div {
112
+ position: absolute;
113
+ top: 13vh;
114
+ left: 8.042vw;
115
+ height: 13.889vh;
116
+ }
117
+
118
+ .incoming-telegram div:nth-of-type(2) {
119
+ top: 34.185vh;
120
+ }
121
+
122
+ .incoming-telegram div span:nth-of-type(1) {
123
+ font-size: 5vh;
124
+ font-weight: bold;
125
+ color: #FFCD00;
126
+ display: block;
127
+ text-align: center;
128
+ margin-bottom: -2.222vh;
129
+ }
130
+
131
+ .incoming-telegram div:nth-of-type(2) span:nth-of-type(1) {
132
+ color: #00FFEA;
133
+ }
134
+
135
+ .incoming-telegram div span:nth-of-type(2) {
136
+ font-size: 2.037vh;
137
+ /* font-weight: bold; */
138
+ color: #FFFEFE;
139
+ }
140
+
141
+ .rate-top{
142
+ width: 45%;
143
+ height: 30% !important;
144
+ margin: 0.093vh 0.052vw 0.093vh 11.458vw;
145
+ }
146
+ .rate-bottom{
147
+ width: 45%;
148
+ height: 30% !important;
149
+ margin: 22.222vh 0.052vw 0.093vh 11.458vw;
150
+ }
151
+
152
+ .text1 {
153
+ font-size: 2.037vh;
154
+ font-weight: bold;
155
+ color: #FFFEFE;
156
+ position: absolute;
157
+ top: 20.722vh;
158
+ right: 3.59375vw;
159
+ }
160
+ .text2 {
161
+ font-size: 2.037vh;
162
+ font-weight: bold;
163
+ color: #FFFEFE;
164
+ position: absolute;
165
+ top: 42.185vh;
166
+ right: 3.59375vw;
167
+ }
168
+ .blueLadder{
169
+ width: 4.948vw;
170
+ height: 0.37vh;
171
+ background: url('../../../../static/images/zhongyi/blueLadder.png') no-repeat;
172
+ background-size: cover;
173
+ position: absolute;
174
+ top: 45.556vh;
175
+ right: 2.76vw;
176
+ }
177
+ .yellowLadder{
178
+ width: 4.948vw;
179
+ height: 0.37vh;
180
+ background: url('../../../../static/images/zhongyi/yellowLadder.png') no-repeat;
181
+ background-size: cover;
182
+ position: absolute;
183
+ top: 24.167vh;
184
+ right: 2.76vw;
185
+ }
186
+ /* 来电统计样式结束 */
187
+ </style>