manage-client 3.2.297 → 3.2.299

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.
@@ -22,14 +22,20 @@
22
22
  <input type="text" style="width:60%" class="input_search" v-model="model.f_user_phone"
23
23
  condition="f_user_phone like '%{}%'" placeholder="客户电话">
24
24
  </div>
25
+ <!-- <div class="col-sm-2 form-group">-->
26
+ <!-- <label class="font_normal_body" title="旧客户编号">档案编号</label>-->
27
+ <!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"-->
28
+ <!-- condition="f_olduserinfo_code = '{}' " placeholder="档案编号">-->
29
+ <!-- </div>-->
25
30
  <div class="col-sm-2 form-group">
26
- <label class="font_normal_body" title="旧客户编号">档案编号</label>
27
- <input type="text" style="width:60%" class="input_search" v-model="model.f_olduserinfo_code"
28
- condition="f_olduserinfo_code = '{}' " placeholder="档案编号">
31
+ <label class="font_normal_body">客户类型</label>
32
+ <v-select :value.sync="model.f_user_type"
33
+ :options='$parent.$parent.usertypes'
34
+ @change="$parent.$parent.userTypeChange()"
35
+ placeholder='请选择' v-model="model.f_user_type"
36
+ condition="f_user_type = '{}'"
37
+ close-on-select></v-select>
29
38
  </div>
30
-
31
-
32
-
33
39
  <div class="span" style = "float:right;">
34
40
  <button class="button_search button_spacing" v-show="false" @click="$parent.$parent.ReadIDCard()">读取身份证</button>
35
41
  <read-card :is-single.sync="$parent.$parent.isSingleUser" @read-info="$parent.$parent.cardBtn" v-ref:readcard></read-card>
@@ -52,15 +58,6 @@
52
58
  </div>
53
59
 
54
60
  <div class="row" v-show="$parent.$parent.criteriaShow">
55
- <div class="col-sm-2 form-group">
56
- <label class="font_normal_body" title="气表状态">气表状态</label>
57
- <v-select :value.sync="model.f_table_state"
58
- :search="false"
59
- v-model="model.f_table_state"
60
- :options='$parent.$parent.TableStates' placeholder='请选择'
61
- condition="f_table_state in {}"
62
- ></v-select>
63
- </div>
64
61
  <res-select-group :initres="$parent.$parent.initres" @re-res="$parent.$parent.getRes"></res-select-group>
65
62
  <div class="col-sm-2 form-group" >
66
63
  <label class="font_normal_body">客户状态</label>
@@ -71,6 +68,15 @@
71
68
  condition="f_user_state in {}"
72
69
  ></v-select>
73
70
  </div>
71
+ <div class="col-sm-2 form-group">
72
+ <label class="font_normal_body" title="气表状态">气表状态</label>
73
+ <v-select :value.sync="model.f_table_state"
74
+ :search="false"
75
+ v-model="model.f_table_state"
76
+ :options='$parent.$parent.TableStates' placeholder='请选择'
77
+ condition="f_table_state in {}"
78
+ ></v-select>
79
+ </div>
74
80
  <div class="col-sm-2 form-group">
75
81
  <label class="font_normal_body">人&emsp;&emsp;数</label>
76
82
  <input type="text" style="width:60%" class="input_search" v-model="model.f_people_num"
@@ -108,15 +114,6 @@
108
114
  <input type="text" style="width:60%" class="input_search" v-model="model.f_card_id"
109
115
  condition="f_card_id = '{}'" placeholder='卡号'>
110
116
  </div>
111
- <div class="col-sm-2 form-group">
112
- <label class="font_normal_body">客户类型</label>
113
- <v-select :value.sync="model.f_user_type"
114
- :options='$parent.$parent.usertypes'
115
- @change="$parent.$parent.userTypeChange()"
116
- placeholder='请选择' v-model="model.f_user_type"
117
- condition="f_user_type = '{}'"
118
- close-on-select></v-select>
119
- </div>
120
117
  <div class="col-sm-2 form-group">
121
118
  <label class="font_normal_body">小&emsp;&emsp;区</label>
122
119
  <v-select :value.sync="model.f_residential_area"
@@ -131,27 +128,27 @@
131
128
 
132
129
  </v-select>
133
130
  </div>
134
- <div class="col-sm-2 form-group" >
135
- <label class="font_normal_body">楼&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;号</label>
136
- <input type="text" style="width:60%" class="input_search" v-model="model.f_building"
137
- condition="f_building = '{}'" placeholder='楼号'>
138
- </div>
139
- <div class="col-sm-2 form-group" >
140
- <label class="font_normal_body">单&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;元</label>
141
- <input type="text" style="width:60%" class="input_search" v-model="model.f_unit"
142
- condition="f_unit = '{}'" placeholder='单元号'>
143
- </div>
131
+ <!-- <div class="col-sm-2 form-group" >-->
132
+ <!-- <label class="font_normal_body">楼&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;号</label>-->
133
+ <!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_building"-->
134
+ <!-- condition="f_building = '{}'" placeholder='楼号'>-->
135
+ <!-- </div>-->
136
+ <!-- <div class="col-sm-2 form-group" >-->
137
+ <!-- <label class="font_normal_body">单&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;元</label>-->
138
+ <!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_unit"-->
139
+ <!-- condition="f_unit = '{}'" placeholder='单元号'>-->
140
+ <!-- </div>-->
144
141
 
145
- <div class="col-sm-2 form-group" >
146
- <label class="font_normal_body">楼&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;层</label>
147
- <input type="text" style="width:60%" class="input_search" v-model="model.f_floor"
148
- condition="f_floor = '{}'" placeholder='楼层号'>
149
- </div>
150
- <div class="col-sm-2 form-group" >
151
- <label class="font_normal_body">门&ensp;牌&ensp;号</label>
152
- <input type="text" style="width:60%" class="input_search" v-model="model.f_room"
153
- condition="f_room = '{}'" placeholder='门牌号'>
154
- </div>
142
+ <!-- <div class="col-sm-2 form-group" >-->
143
+ <!-- <label class="font_normal_body">楼&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;层</label>-->
144
+ <!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_floor"-->
145
+ <!-- condition="f_floor = '{}'" placeholder='楼层号'>-->
146
+ <!-- </div>-->
147
+ <!-- <div class="col-sm-2 form-group" >-->
148
+ <!-- <label class="font_normal_body">门&ensp;牌&ensp;号</label>-->
149
+ <!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_room"-->
150
+ <!-- condition="f_room = '{}'" placeholder='门牌号'>-->
151
+ <!-- </div>-->
155
152
  <div class="col-sm-2 form-group" >
156
153
  <label class="font_normal_body">客户地址</label>
157
154
  <input type="text" style="width:60%" class="input_search" v-model="model.f_address"
@@ -257,6 +254,26 @@
257
254
  condition="f_install_date <= '{} 23:59:59'">
258
255
  </datepicker>
259
256
  </div>
257
+ <div class="col-sm-2 form-group" >
258
+ <label for="startDate3" class="font_normal_body" title="合同签订日期">合同签订日期</label>
259
+ <datepicker id="startDate4" placeholder="开始日期" style="width:60%"
260
+ v-model="model.startDate4"
261
+ :value.sync="model.startDate4"
262
+ :format="'yyyy-MM-dd'"
263
+ :show-reset-button="true"
264
+ condition="f_contractdate >= '{} 00:00:00'">
265
+ </datepicker>
266
+ </div>
267
+ <div class="col-sm-2 form-group" >
268
+ <label for="endDate4" class="font_normal_body" title="合同签订日期">合同签订日期</label>
269
+ <datepicker id="endDate4" placeholder="结束日期" style="width:60%"
270
+ v-model="model.endDate4"
271
+ :value.sync="model.endDate4"
272
+ :format="'yyyy-MM-dd'"
273
+ :show-reset-button="true"
274
+ condition="f_contractdate <= '{} 23:59:59'">
275
+ </datepicker>
276
+ </div>
260
277
  </div>
261
278
  </div>
262
279
  </criteria>
@@ -353,7 +370,7 @@
353
370
  <!-- </th>-->
354
371
 
355
372
  <th><nobr>客户状态</nobr></th>
356
-
373
+ <th><nobr>表具状态</nobr></th>
357
374
  <th><nobr>档案编号</nobr></th>
358
375
  <th><nobr>是否发卡</nobr></th>
359
376
 
@@ -396,7 +413,7 @@
396
413
 
397
414
 
398
415
 
399
- <th><nobr>表具状态</nobr></th>
416
+
400
417
  <th><nobr>初始气表底数</nobr></th>
401
418
  <th><nobr>累计用气金额</nobr></th>
402
419
  <th><nobr>表累购气量</nobr></th>
@@ -491,6 +508,8 @@
491
508
  <!-- <td style="text-align: center;"><nobr>{{row.f_meter_type}}</nobr></td>-->
492
509
  <!--客户状态28-->
493
510
  <td style="text-align: center;"><nobr>{{row.f_user_state}}</nobr></td>
511
+ <!--表具状态50-->
512
+ <td style="text-align: center;"><nobr>{{row.f_table_state}}</nobr></td>
494
513
  <!--档案编号29-->
495
514
  <td style="text-align: center;"><nobr>{{row.f_olduserinfo_code}}</nobr></td>
496
515
  <!--是否发卡30-->
@@ -533,8 +552,6 @@
533
552
  <!-- <td style="text-align: center;"><nobr>{{row.f_is_mgq}}</nobr></td>-->
534
553
  <!--使用类型49-->
535
554
  <td style="text-align: center;"><nobr>{{row.f_usetype}}</nobr></td>
536
- <!--表具状态50-->
537
- <td style="text-align: center;"><nobr>{{row.f_table_state}}</nobr></td>
538
555
  <!--初始气表底数51-->
539
556
  <td style="text-align: center;"><nobr>{{row.f_initial_base}}</nobr></td>
540
557
  <!--累计用气金额52-->
@@ -30,11 +30,12 @@ export default{
30
30
  'f_address': '客户地址'
31
31
  },
32
32
  meterConfig: {
33
- 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_user_phone': '客户电话', 'idnumber': '身份证号', 'f_address': '客户地址', 'f_balance_amount': '表上余额',
34
- 'f_user_type': '客户类型', 'f_usetype': '使用类型', 'f_gasproperties': '用气性质', 'f_meternumber': '表号', 'f_card_id': '卡号', 'f_price_name': '气价名称',
35
- 'value': '气价详情', 'f_meter_brand': '气表品牌', 'f_meter_style': '气表型号',
36
- 'f_gas_person': '通气人', 'f_gas_date': '通气时间', 'f_input_date': '建表时间', 'f_table_state': '气表状态', 'isbgl': '是否壁挂炉',
37
- 'f_inputtor': '抄表员', 'f_book_name': '抄表册', 'f_meter_size': '表具大小', 'f_meter_flow': '表流量'
33
+ 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_customer': '团缴编号', 'f_userfiles_id': '表ID',
34
+ 'f_user_phone': '客户电话', 'f_rent_phone': '备用电话', 'idnumber': '身份证号', 'f_address': '客户地址', 'f_book_slice_area': '表册片区',
35
+ 'f_balance_amount': '表上余额', 'f_user_type': '客户类型', 'f_usetype': '使用类型', 'f_gasproperties': '用气性质',
36
+ 'f_meternumber': '表号', 'f_card_id': '卡号', 'f_price_name': '气价名称', 'value': '气价详情', 'f_meter_brand': '气表品牌',
37
+ 'f_meter_style': '气表型号', 'f_inputtor': '户管员', 'f_gas_person': '通气人', 'f_gas_date': '通气时间',
38
+ 'f_input_date': '建表时间', 'f_table_state': '气表状态', 'isbgl': '是否壁挂炉', 'f_networkvalve': '自动阀控'
38
39
  },
39
40
  ResidentialQuery: {
40
41
  'f_residential_area': '小区', 'hushu': '户数', 'xinhushu': '新建户数', 'f_oughtfee': '用气金额', 'f_oughtamount': '用气量',
@@ -60,16 +61,19 @@ export default{
60
61
  'f_expire_date': '缴费到期时间', 'f_mtc_fee': '累计维护缴费金额'
61
62
  },
62
63
  changUserConfig: {
63
- 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_user_phone': '客户电话', 'f_field_name': '更改内容',
64
+ 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_user_phone': '客户电话', 'f_field_name': '更改内容',
64
65
  'f_used_content': '更改前', 'f_new_content': '更改后', 'f_operator': '操作人', 'f_operate_date': '操作日期',
65
- 'f_depname': '部门', 'f_orgname': '公司'
66
+ 'f_depname': '部门', 'f_orgname': '公司', 'f_comments': '修改原因'
66
67
  },
67
68
  chargeConfig: {
68
- 'f_userinfo_code': '用户编号', 'f_user_name': '用户名称',
69
- 'f_meternumber': '用户表号', 'f_card_id': '用户卡号', 'f_address': '用户地址',
70
- 'f_pregas': '购气量', 'f_collection': '缴费金额', 'f_payment': '付款方式', 'f_operate_date': '收费日期', 'f_state': '状态',
71
- 'f_depname': '网点', 'f_operator': '操作员', 'f_stairamount1': '一阶气量',
72
- 'f_stair2amount': '二阶气量', 'f_stair3amount': '三阶气量'
69
+ 'id': '收费编号', 'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_user_name': '客户名称', 'f_user_phone': '客户电话', 'f_address': '客户地址', 'f_zones': '片区', 'f_user_type': '客户类型',
70
+ 'f_gasproperties': '用气性质', 'f_meternumber': '表号', 'f_meter_brand': '气表品牌', 'f_times': '购气次数', 'f_price_name': '气价名称',
71
+ 'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_pregas': '气量', 'fee': '金额', 'f_preamount': '燃气费', 'f_collection': '收款', 'f_privilege_money': '优惠金额', 'f_balance': '上期结余',
72
+ 'f_curbalance': '本期结余', 'f_type': '收费类型', 'f_payment': '付款方式', 'f_bank_type': '支付渠道', 'f_state': '状态', 'f_operate_date': '收费日期', 'f_serial_id': '流水号',
73
+ 'f_delaypay': '违约金', 'f_comments': '备注', 'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司',
74
+ 'f_yucun': '预存金额', 'f_card_id': '卡号', 'f_stairamount1': '一阶气量', 'f_stair1price': '一阶单价', 'f_stair1fee': '一阶气费',
75
+ 'f_stair2amount': '二阶气量', 'f_stair2price': '二阶单价', 'f_stair2fee': '二阶气费',
76
+ 'f_stair3amount': '三阶气量', 'f_stair3price': '三阶单价', 'f_stair3fee': '三阶气费', 'f_inputtor': '抄表员','f_residential_area':'小区','f_serial_number':'业务单号'
73
77
  },
74
78
  pricetypeGasConfig: {
75
79
  'f_price': '价格类型', 'f_gas': '当日售气量', 'f_money': '当日售气金额'
@@ -78,7 +82,8 @@ export default{
78
82
  'f_operate_date': '收费日期', 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_user_type': '客户类型', 'f_gasproperties': '用气性质', 'f_meter_brand': '气表品牌', 'f_sell_price': '购气单价', 'f_pregas': '购气量', 'f_preamount': '购气金额', 'f_collection': '充值金额', 'f_surplus_fee': '调价补差', 'f_curbalance': '本期结余', 'f_payment': '付款方式', 'f_price': '单价', 'f_real_gas': '用气量', 'f_real_money': '用气金额', 'f_residual_volume': '余量', 'f_total_usegas_amount': '剩余金额'
79
83
  },
80
84
  chargeexportConfig: {
81
- 'f_pregas': '气量', 'f_collection': '缴费金额', 'f_stairamount1': '一阶气量', 'f_stair2amount': '二阶气量', 'f_stair3amount': '三阶气量'
85
+ 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_pregas': '气量', 'f_collection': '收款', 'f_operate_date': '收费日期',
86
+ 'f_stairamount1': '一阶气量', 'f_stair2amount': '二阶气量', 'f_stair3amount': '三阶气量', 'f_meter_brand': '气表品牌'
82
87
  },
83
88
  reverseexportConfig: {
84
89
  'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_address': '客户地址'
@@ -223,10 +228,11 @@ export default{
223
228
  },
224
229
 
225
230
  changemeterConfig: {
226
- 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_address': '客户地址', 'f_type': '换表类型', 'f_meternumber_old': '旧表号', 'f_meternumber': '新表号', 'f_meter_brand_old': '旧气表品牌',
227
- 'f_meter_brand': '新气表品牌', 'f_remanent_gas': '补气量', 'f_remanent_money': '补气金额', 'f_comments': '备注',
228
- 'f_change_operator': '换表人', 'f_state': '状态', 'f_operate_date': '换表日期', 'f_operator': '人员', 'f_depname': '部门',
229
- 'f_orgname': '公司', 'f_meter_type_old': '旧表类型', 'f_meter_type': '新表类型', 'f_user_type': '用户类型'
231
+ 'f_userinfo_code': '客户编号', 'f_olduserinfo_code': '档案编号', 'f_user_name': '客户名称', 'f_address': '客户地址', 'f_residential_area': '小区名称',
232
+ 'f_type': '换表类型', 'f_changemeter_fee': '换表费', 'f_meternumber_old': '旧表号', 'f_meternumber': '新表号',
233
+ 'f_meter_brand_old': '旧气表品牌', 'f_meter_brand': '新气表品牌', 'f_remanent_gas': '补气量', 'f_remanent_money': '补气金额',
234
+ 'f_comments': '备注', 'f_change_operator': '换表人', 'f_state': '状态', 'f_operate_date': '操作日期', 'f_payment': '付款方式', 'f_othereason': '换表原因',
235
+ 'f_operator': '人员', 'f_depname': '部门', 'f_orgname': '公司', 'f_meter_base': '气表底数', 'f_balance_amount': '表上余额', 'leigougas': '累购气量', 'leigoumoney': '累购金额'
230
236
  },
231
237
  changemeterprintConfig: {
232
238
  'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_address': '客户地址',
@@ -260,10 +266,11 @@ export default{
260
266
  'f_meter_state': '抄表状态', 'f_operator': '操作员', 'f_depname': '部门'
261
267
  },
262
268
  handplanConfig: {
263
- 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_address': '客户地址', 'f_zones': '片区', 'phone': '客户手机', 'f_meternumber': '表号', 'ym_data': '数据年月',
264
- 'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_oughtamount': '用气量', 'f_oughtfee': '用气金额', 'f_debt_money': '预存扣费', 'f_balance': '上期余额', 'f_curbalance': '本期余额',
269
+ 'f_userinfo_code': '客户编号', 'f_user_name': '客户名称', 'f_olduserinfo_code': '档案编号', 'f_address': '客户地址', 'f_zones': '片区', 'phone': '客户手机', 'f_meternumber': '表号', 'ym_data': '数据年月',
270
+ 'f_last_tablebase': '上期底数', 'f_tablebase': '本期底数', 'f_oughtamount': '用气量', 'overdue': '违约金', 'f_oughtfee': '用气金额', 'f_debt_money': '已交金额',
271
+ 'f_actual_arrears': '欠费金额', 'f_balance': '上期余额', 'f_curbalance': '本期余额',
265
272
  'f_accounts_state': '下账状态', 'f_operate_date': '收费时间', 'f_inputtor': '抄表员', 'f_book_slice_area': '表册片区',
266
- 'f_hand_date': '下发日期', 'f_input_date': '录入日期', 'f_meter_state': '抄表状态', 'f_hand_state': '记录状态',
273
+ 'f_hand_date': '下发日期', 'f_input_date': '录入日期', 'f_audit_date': '审核日期','f_meter_state': '抄表状态', 'f_hand_state': '记录状态',
267
274
  'f_operator': '操作员', 'f_depname': '部门', 'f_orgname': '公司', 'f_surplus_gas': '剩余气量', 'f_haircut_gas': '扣减气量',
268
275
  'f_stair1amount': '一阶气量', 'f_stair1price': '一阶单价', 'f_stair1fee': '一阶气费',
269
276
  'f_stair2amount': '二阶气量', 'f_stair2price': '二阶单价', 'f_stair2fee': '二阶气费',
@@ -13,4 +13,12 @@ export default function () {
13
13
  Vue.component('my-gas-device-query', (resolve) => { require(['./GasDeviceQuery'], resolve) })
14
14
  // 互联网表抄表查询
15
15
  Vue.component('web-hand-query', (resolve) => { require(['./WebHandQuery'], resolve) })
16
+ // 换表查询
17
+ Vue.component('change-meter-query', (resolve) => { require(['./ChangeMeterQuery'], resolve) })
18
+ // 机表抄表查询
19
+ Vue.component('handplan-query', (resolve) => { require(['./HandplanQuery'], resolve) })
20
+ // 表具查询
21
+ Vue.component('meter-query', (resolve) => { require(['./MeterQuery'], resolve) })
22
+ // 档案变更查询
23
+ Vue.component('changeuser-query', (resolve) => { require(['./ChangeUserQuery'], resolve) })
16
24
  }
@@ -8,4 +8,6 @@ export default function () {
8
8
  Vue.component('use-gas-statistics', (resolve) => { require(['./GasStatistics'], resolve) })
9
9
  // 物联网表用气量统计表新
10
10
  Vue.component('new-use-gas-statistics', (resolve) => { require(['./NewGasStatistics'], resolve) })
11
+ // 未上报查询
12
+ Vue.component('get-no-meteread-query', (resolve) => { require(['./GetNoMetereadData'], resolve) })
11
13
  }
package/src/main.js CHANGED
@@ -1,70 +1,66 @@
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 webmeterManage from './webmeterManage'
10
- import webmeterManageF from './filiale/shanxian/webmeterManage'
11
- import reportManage from './reportManage'
12
- import reportManageF from './filiale/shanxian/reportManage'
13
- import newmanage from './newmanage'
14
- import ManageHome from './ManageHome'
15
- import echarts from 'echarts'
16
- import AMap from 'vue-amap'
17
-
18
- Vue.config.silent = true
19
- // Vue.mmType = 'AES'
20
-
21
- Vue.use(AMap);
22
-
23
- // 初始化vue-amap
24
- AMap.initAMapApiLoader({
25
- // 高德key
26
- key: '3cec9ae8e2349207f7ac29279e3f4abe',
27
- // 插件集合 (插件按需引入)
28
- plugin: [
29
- "AMap.Autocomplete", //输入提示插件
30
- "AMap.PlaceSearch", //POI搜索插件
31
- "AMap.Scale", //右下角缩略图插件 比例尺
32
- "AMap.OverView", //地图鹰眼插件
33
- "AMap.ToolBar", //地图工具条0
34
- "AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
35
- "AMap.PolyEditor", //编辑 折线多,边形
36
- "AMap.CircleEditor", //圆形编辑器插件
37
- "AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
38
- ],
39
- uiVersion: "1.0"
40
- });
41
- /** **************************通用组件******************************/
42
-
43
- Vue.prototype.$echarts = echarts
44
- all()
45
- // sale()
46
- ldap()
47
- system(false)
48
-
49
- saleManage()
50
- webmeterManage()
51
- webmeterManageF()
52
- ManageHome()
53
- newmanage()
54
- reportManage()
55
- reportManageF()
56
- require('system-clients/src/styles/less/bootstrap.less')
57
- require('./components/qinhua/Style/qinhuaStyle.less')
58
- // require('./bootstrap/less/manageStyle/manageChile.less')
59
- // require('./bootstrap/less/manageStyle/safeStyle.less')
60
-
61
- //大屏展示要放开的样式
62
- // require('system-clients/src/styles/less/manageStyle/manageChile.less')
63
- // require('system-clients/src/styles/less/manageStyle/safeStyle.less')
64
- // require('system-clients/src/styles/less/manageStyle/manageStyle.less')
65
-
66
- new Vue({
67
- el: 'body',
68
- components: { App }
69
- })
70
-
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 webmeterManage from './webmeterManage'
10
+ import reportManage from './reportManage'
11
+ import newmanage from './newmanage'
12
+ import ManageHome from './ManageHome'
13
+ import echarts from 'echarts'
14
+ import AMap from 'vue-amap'
15
+
16
+ Vue.config.silent = true
17
+ // Vue.mmType = 'AES'
18
+
19
+ Vue.use(AMap);
20
+
21
+ // 初始化vue-amap
22
+ AMap.initAMapApiLoader({
23
+ // 高德key
24
+ key: '3cec9ae8e2349207f7ac29279e3f4abe',
25
+ // 插件集合 (插件按需引入)
26
+ plugin: [
27
+ "AMap.Autocomplete", //输入提示插件
28
+ "AMap.PlaceSearch", //POI搜索插件
29
+ "AMap.Scale", //右下角缩略图插件 比例尺
30
+ "AMap.OverView", //地图鹰眼插件
31
+ "AMap.ToolBar", //地图工具条0
32
+ "AMap.MapType", //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
33
+ "AMap.PolyEditor", //编辑 折线多,边形
34
+ "AMap.CircleEditor", //圆形编辑器插件
35
+ "AMap.Geolocation" //定位控件,用来获取和展示用户主机所在的经纬度位置
36
+ ],
37
+ uiVersion: "1.0"
38
+ });
39
+ /** **************************通用组件******************************/
40
+
41
+ Vue.prototype.$echarts = echarts
42
+ all()
43
+ // sale()
44
+ ldap()
45
+ system(false)
46
+
47
+ saleManage()
48
+ webmeterManage()
49
+ ManageHome()
50
+ newmanage()
51
+ reportManage()
52
+ require('system-clients/src/styles/less/bootstrap.less')
53
+ require('./components/qinhua/Style/qinhuaStyle.less')
54
+ // require('./bootstrap/less/manageStyle/manageChile.less')
55
+ // require('./bootstrap/less/manageStyle/safeStyle.less')
56
+
57
+ //大屏展示要放开的样式
58
+ // require('system-clients/src/styles/less/manageStyle/manageChile.less')
59
+ // require('system-clients/src/styles/less/manageStyle/safeStyle.less')
60
+ // require('system-clients/src/styles/less/manageStyle/manageStyle.less')
61
+
62
+ new Vue({
63
+ el: 'body',
64
+ components: { App }
65
+ })
66
+