telephone-clients 3.0.103-99 → 3.0.104-1
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/package.json +3 -3
- package/src/App.vue +54 -54
- package/src/components/guoxin/VisitInfo.vue +0 -11
- package/src/components/pc/NewRepairPaper.vue +370 -370
- package/src/components/pc/VisitInfo.vue +0 -10
- package/src/components/pc/WorkListAllNew.vue +9 -2
- package/src/components/pc/WorkListNew.vue +712 -712
- package/src/components/telreport/TrafficClassificationReport.vue +134 -0
- package/src/components/temp/MetereadInfo.vue +1 -4
- package/src/components/weinan/Console.vue +1 -1
- package/src/components/workorder/FaultAll.vue +1 -1
- package/src/filiale/furuike/pc/WorkHistory.vue +576 -576
- package/src/filiale/qianneng/android/TemporarySingle.vue +537 -537
- package/src/filiale/qianneng/pc/MaterialDetailed.vue +260 -260
- package/src/filiale/qianneng/pc/NewRepairPaper.vue +467 -467
- package/src/filiale/qianneng/pc/RepairsWork.vue +992 -992
- package/src/filiale/qianneng/pc/changetable.vue +273 -273
- package/src/filiale/qianneng/telephone.js +22 -22
- package/src/filiale/shanxian/pc/WorkList.vue +1 -1
- package/src/filiale/shexian/pc/QueryVisitHistory.vue +237 -237
- package/src/filiale/shexian/pc/TelAgentVoiceReport.vue +271 -0
- package/src/filiale/shexian/pc/WorkList.vue +18 -0
- package/src/filiale/shexian/pc/WorkListAllNew.vue +10 -6
- package/src/filiale/shexian/telephone.js +21 -19
- package/src/filiale/zhongsheng/android/FaultAll.vue +741 -741
- package/src/main.js +1 -1
- package/src/telephone.js +3 -0
package/src/main.js
CHANGED
|
@@ -9,7 +9,7 @@ Vue.prototype.$echarts = echarts
|
|
|
9
9
|
/** **************************通用组件******************************/
|
|
10
10
|
all()
|
|
11
11
|
system(false)
|
|
12
|
-
telephone('
|
|
12
|
+
telephone('qianneng')
|
|
13
13
|
require('./expandcss.less')
|
|
14
14
|
require('system-clients/src/styles/less/bootstrap.less')
|
|
15
15
|
require('./telephoneanaly.less')
|
package/src/telephone.js
CHANGED
|
@@ -643,6 +643,9 @@ export default function (filiale,guoxin) {
|
|
|
643
643
|
Vue.component('repairs-details-report', (resolve) => {
|
|
644
644
|
require(['./components/telreport/RepairsDetailsReport'], resolve)
|
|
645
645
|
})
|
|
646
|
+
Vue.component('traffic-classification-report', (resolve) => {
|
|
647
|
+
require(['./components/telreport/TrafficClassificationReport'], resolve)
|
|
648
|
+
})
|
|
646
649
|
Vue.component('tel-man', (resolve) => {
|
|
647
650
|
require(['./components/telreport/TelMan'], resolve)
|
|
648
651
|
})
|