telephone-clients 4.0.0-1-4 → 4.0.0-1-6
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/CHANGELOG.md +37 -37
- package/README.md +38 -38
- package/package.json +120 -120
- package/release.bat +5 -5
- package/src/assets//345/275/225/351/237/263.png +0 -0
- package/src/components/android/AddMyTask.vue +1 -19
- package/src/components/pc/TelLossList.vue +19 -12
- package/src/components/pc/VisitInfo.vue +2 -2
- package/src/components/temp/SecuritycheckInfo.vue +140 -140
- package/src/components/workorder/Outlay.vue +270 -191
- package/src/components/workorder/PhoneStandWork.vue +262 -230
- package/src/components/workorder/RepairOrderV.vue +1 -9
- package/src/filiale/meihekou/android/AddMyTask.vue +336 -0
- package/src/filiale/meihekou/android/Outlay.vue +361 -0
- package/src/filiale/meihekou/android/PhoneStandWork.vue +431 -0
- package/src/filiale/meihekou/android/RepairOrderV.vue +825 -0
- package/src/filiale/meihekou/pc/TelLossList.vue +373 -0
- package/src/filiale/meihekou/pc/VisitInfo.vue +311 -0
- package/src/filiale/meihekou/telephone.js +2 -1
- package/src/filiale/meihekou/telephoneAndroid.js +4 -1
|
@@ -4,7 +4,8 @@ import Vue from "vue";
|
|
|
4
4
|
//pc和手机分别注册到两个文件中
|
|
5
5
|
let specialComp = {
|
|
6
6
|
// 工单详情子组件
|
|
7
|
-
|
|
7
|
+
'telloss-list': (resolve) => { require(['./pc/TelLossList'], resolve) },
|
|
8
|
+
'visit-info': (resolve) => { require(['./pc/VisitInfo'], resolve) }
|
|
8
9
|
}
|
|
9
10
|
exports.specialComp = specialComp
|
|
10
11
|
|
|
@@ -8,7 +8,10 @@ let specialComp = {
|
|
|
8
8
|
// 支付二维码
|
|
9
9
|
'create_qrcode': (resolve) => { require(['./android/createQRcode'], resolve) },
|
|
10
10
|
// 在线缴费
|
|
11
|
-
'online_buy_gas': (resolve) => { require(['./android/onlineBuyGas'], resolve) }
|
|
11
|
+
'online_buy_gas': (resolve) => { require(['./android/onlineBuyGas'], resolve) },
|
|
12
|
+
'add-my-task': (resolve) => { require(['./android/AddMyTask'], resolve) },
|
|
13
|
+
'phone-stand-work': (resolve) => { require(['./android/PhoneStandWork'], resolve) },
|
|
14
|
+
'repair-orderV': (resolve) => { require(['./android/RepairOrderV'], resolve) }
|
|
12
15
|
|
|
13
16
|
}
|
|
14
17
|
exports.specialComp = specialComp
|