manage-client 4.1.83 → 4.1.84

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.
@@ -0,0 +1,7 @@
1
+ // 分公司特殊组件页面注册
2
+ import Vue from 'vue'
3
+
4
+ export default function () {
5
+ // 收费查询
6
+ Vue.component('charge-query', (resolve) => { require(['./sale/businessquery/ChargeQuery'], resolve) })
7
+ }
package/src/main.js CHANGED
@@ -2,7 +2,7 @@ import Vue from 'vue'
2
2
  import App from './App'
3
3
  import { all } from 'vue-client'
4
4
 
5
- import { sale } from 'sale-client'
5
+ // import { sale } from 'sale-client'
6
6
  import { system } from 'system-clients'
7
7
  import { ldap } from 'ldap-clients'
8
8
  import saleManage from './saleManage'
@@ -42,7 +42,7 @@ AMap.initAMapApiLoader({
42
42
 
43
43
  Vue.prototype.$echarts = echarts
44
44
  all()
45
- sale()
45
+ // sale()
46
46
  ldap()
47
47
  system(false)
48
48
  saleManage()
@@ -975,4 +975,8 @@ export default function () {
975
975
  Vue.component('hy-meter-input', (resolve) => {
976
976
  require(['./components/SellReport/hongya/HyMeterInput'], resolve)
977
977
  })
978
+ // 石门-收费统计日报表
979
+ Vue.component('sm-summary', (resolve) => {
980
+ require(['./components/SellReport/shimen/SMSummary'], resolve)
981
+ })
978
982
  }