manage-client 3.3.20 → 3.3.22
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/components/sale/businessquery/BusinessManage.vue +204 -201
- package/src/components/sale/businessquery/WebHandplanQuery.vue +975 -0
- package/src/components/webmeter/DrillData/UserLostContactAnalysis.vue +0 -3
- package/src/saleManage.js +4 -0
package/src/saleManage.js
CHANGED
|
@@ -132,6 +132,10 @@ export default function () {
|
|
|
132
132
|
Vue.component('handplan-query', (resolve) => {
|
|
133
133
|
require(['./components/sale/businessquery/HandplanQuery'], resolve)
|
|
134
134
|
})
|
|
135
|
+
// 机表抄表查询
|
|
136
|
+
Vue.component('web-handplan-query', (resolve) => {
|
|
137
|
+
require(['./components/sale/businessquery/WebHandplanQuery'], resolve)
|
|
138
|
+
})
|
|
135
139
|
// 卡表抄表查询
|
|
136
140
|
Vue.component('card-handplan-query', (resolve) => {
|
|
137
141
|
require(['./components/sale/businessquery/CardHandplanQuery'], resolve)
|