manage-client 3.3.133 → 3.3.134

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.
@@ -228,7 +228,7 @@ export default{
228
228
  'f_book_inputtor': '表册抄表员',
229
229
  'f_userfiles_address': '安装地址', 'f_install_person': '安装人', 'f_gas_person': '通气人员',
230
230
  'f_book_name': '表册名称', 'f_meter_book_num': '抄表册编号', 'f_meter_book_sort': '抄表册顺序',
231
- 'f_balance_amount': '表剩余金额', 'f_times': '写卡次数',
231
+ 'f_balance_amount': '表剩余金额', 'f_times': '写卡次数', 'f_force_measure': '三项强制措施',
232
232
  'f_fillcard_times': '补卡次数', 'f_sendsuccess': '表同步状态', 'f_isband': '微信绑定', 'f_cost_type': '缴费类型',
233
233
  'f_bank_accopen': '银行户名', 'f_bank_name': '银行名称', 'f_bank_account': '银行账号',
234
234
  'f_bank_idnumber': '银行身份证号', 'f_bank_pay_number': '缴费编号', 'f_maxdate': '换表时间', 'f_devices_type': '灶具信息', 'f_network_valve': '自动阀控',
@@ -5,4 +5,8 @@ export default function () {
5
5
  Vue.component('change-meter-query', (resolve) => {
6
6
  require(['./ChangeMeterQuery'], resolve)
7
7
  })
8
+ // 综合档案信息查询
9
+ Vue.component('record-info-query', (resolve) => {
10
+ require(['./RecordInfoQuery'], resolve)
11
+ })
8
12
  }
package/src/main.js CHANGED
@@ -1,68 +1,72 @@
1
- import Vue from 'vue'
2
- import App from './App'
3
- import { all } from 'vue-client'
4
-
5
- // import { sale } from 'sale-client'
6
- import { system } from 'system-clients'
7
- import { ldap } from 'ldap-clients'
8
- import saleManage from './saleManage'
9
- import ShanXianSaleManage from './filiale/shexian/sale'
10
- import webmeterManage from './webmeterManage'
11
- import reportManage from './reportManage'
12
- import newmanage from './newmanage'
13
- import ManageHome from './ManageHome'
14
- import echarts from 'echarts'
15
- import AMap from 'vue-amap'
16
-
17
- Vue.config.silent = true
18
- // Vue.mmType = 'AES'
19
-
20
- Vue.use(AMap);
21
-
22
- // 初始化vue-amap
23
- AMap.initAMapApiLoader({
24
- // 高德key
25
- key: '3cec9ae8e2349207f7ac29279e3f4abe',
26
- // 插件集合 (插件按需引入)
27
- plugin: [
28
- "AMap.Autocomplete", //输入提示插件
29
- "AMap.PlaceSearch", //POI搜索插件
30
- "AMap.Scale", //右下角缩略图插件 比例尺
31
- "AMap.OverView", //地图鹰眼插件
32
- "AMap.ToolBar", //地图工具条0
33
- "AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
34
- "AMap.PolyEditor", //编辑 折线多,边形
35
- "AMap.CircleEditor", //圆形编辑器插件
36
- "AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
37
- ],
38
- uiVersion: "1.0"
39
- });
40
- /** **************************通用组件******************************/
41
-
42
- Vue.prototype.$echarts = echarts
43
- all()
44
- // sale()
45
- ldap()
46
- system(false)
47
-
48
- saleManage()
49
- ShanXianSaleManage()
50
- webmeterManage()
51
- ManageHome()
52
- newmanage()
53
- reportManage()
54
- require('system-clients/src/styles/less/bootstrap.less')
55
- require('./components/qinhua/Style/qinhuaStyle.less')
56
- // require('./bootstrap/less/manageStyle/manageChile.less')
57
- // require('./bootstrap/less/manageStyle/safeStyle.less')
58
-
59
- //大屏展示要放开的样式
60
- // require('system-clients/src/styles/less/manageStyle/manageChile.less')
61
- // require('system-clients/src/styles/less/manageStyle/safeStyle.less')
62
- // require('system-clients/src/styles/less/manageStyle/manageStyle.less')
63
-
64
- new Vue({
65
- el: 'body',
66
- components: { App }
67
- })
68
-
1
+ import Vue from 'vue'
2
+ import App from './App'
3
+ import { all } from 'vue-client'
4
+
5
+ // import { sale } from 'sale-client'
6
+ import { system } from 'system-clients'
7
+ import { ldap } from 'ldap-clients'
8
+ import saleManage from './saleManage'
9
+ import FilialeSaleManage from './filiale/yuncheng/sale'
10
+ // import webmeterManage from './webmeterManage'
11
+ // import FilialeWebmeterManage from './filiale/daliyihua/webmeterManage'
12
+ // import reportManage from './reportManage'
13
+ // import FilialeReportManage from './filiale/shanxian/reportManage'
14
+ // import newmanage from './newmanage'
15
+ // import ManageHome from './ManageHome'
16
+ import echarts from 'echarts'
17
+ import AMap from 'vue-amap'
18
+
19
+ Vue.config.silent = true
20
+ // Vue.mmType = 'AES'
21
+
22
+ Vue.use(AMap);
23
+
24
+ // 初始化vue-amap
25
+ AMap.initAMapApiLoader({
26
+ // 高德key
27
+ key: '3cec9ae8e2349207f7ac29279e3f4abe',
28
+ // 插件集合 (插件按需引入)
29
+ plugin: [
30
+ "AMap.Autocomplete", //输入提示插件
31
+ "AMap.PlaceSearch", //POI搜索插件
32
+ "AMap.Scale", //右下角缩略图插件 比例尺
33
+ "AMap.OverView", //地图鹰眼插件
34
+ "AMap.ToolBar", //地图工具条0
35
+ "AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
36
+ "AMap.PolyEditor", //编辑 折线多,边形
37
+ "AMap.CircleEditor", //圆形编辑器插件
38
+ "AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
39
+ ],
40
+ uiVersion: "1.0"
41
+ });
42
+ /** **************************通用组件******************************/
43
+
44
+ Vue.prototype.$echarts = echarts
45
+ all()
46
+ // sale()
47
+ ldap()
48
+ system(false)
49
+
50
+ saleManage()
51
+ FilialeSaleManage()
52
+ // webmeterManage()
53
+ // FilialeWebmeterManage()
54
+ // ManageHome()
55
+ // newmanage()
56
+ // reportManage()
57
+ // FilialeReportManage()
58
+ require('system-clients/src/styles/less/bootstrap.less')
59
+ require('./components/qinhua/Style/qinhuaStyle.less')
60
+ // require('./bootstrap/less/manageStyle/manageChile.less')
61
+ // require('./bootstrap/less/manageStyle/safeStyle.less')
62
+
63
+ //大屏展示要放开的样式
64
+ // require('system-clients/src/styles/less/manageStyle/manageChile.less')
65
+ // require('system-clients/src/styles/less/manageStyle/safeStyle.less')
66
+ // require('system-clients/src/styles/less/manageStyle/manageStyle.less')
67
+
68
+ new Vue({
69
+ el: 'body',
70
+ components: { App }
71
+ })
72
+