manage-client 3.3.18 → 3.3.20

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,54 @@
1
+ export default{
2
+ //查询页面的字段名和中文对应
3
+ ReportDataQuery:
4
+ {
5
+ "用户编号":"f_userinfo_code",
6
+ "用户名称":"f_user_name",
7
+ "表号":"f_meternumber",
8
+ "本次抄表底数":"f_tablebase",
9
+ "上次抄表底数":"f_last_tablebase",
10
+ "表上余额":"f_jval",
11
+ "抄表日期":"f_hand_date",
12
+
13
+ "上次抄表日期":"f_last_hand_date",
14
+ "开户日期":"f_gas_date",
15
+ "软件版本号":"f_software_version",
16
+ "表状态信息":"f_table_msg",
17
+ "上次表状态信息":"f_last_meter_state_msg",
18
+
19
+ "插入日期":"f_insert_date",
20
+ "上次插入日期":"f_last_insertdate",
21
+ "是否结算":"f_whether_clear",
22
+ "超用气量":"f_super_gas",
23
+ "电量等级":"f_electricity",
24
+
25
+ "购气次数":"f_times",
26
+ "单价":"f_price",
27
+ "信号强度":"f_signal",
28
+ "信噪比":"f_snr",
29
+ "电压":"f_batterylevel",
30
+
31
+ "阀门强制状态":"f_networkshutvalve",
32
+ "阀门状态":"f_valvestate",
33
+ "计量类型":"f_wmprepaytype",
34
+ "上报类型":"f_upload_type",
35
+ "金额状态":"f_moneystate",
36
+
37
+ "增加工况瞬时":"operatingModeFlow",
38
+ "标况瞬时":"standardConditionFlow",
39
+ "开盖状态" :"f_SplitAlarm",
40
+ "液晶状态" : "f_XTIpllStopFlag",
41
+ "声速" :"soundVelocity",
42
+
43
+ "外电低电":"f_lowlithiumbattery",
44
+ "磁干扰异常":"f_magneticinterference",
45
+ "表内剩余金额":"f_meterbalanceamt",
46
+ "表内累计充值金额":"f_meterdebitamt",
47
+ "补偿状态":"f_compensatestate",
48
+ "气表品牌":"f_meter_brand",
49
+ "气表型号":"f_meter_style",
50
+ "分公司":"f_orgname"
51
+
52
+ }
53
+
54
+ }
@@ -0,0 +1,11 @@
1
+ // 分公司特殊组件页面注册
2
+ import Vue from 'vue'
3
+
4
+ export default function () {
5
+ // 气量年比
6
+ Vue.component('use-gas-year-ratio', (resolve) => { require(['./GasYearRatioQuery'], resolve) })
7
+ // 发票查询
8
+ Vue.component('invoice-details-query', (resolve) => { require(['./InvoiceDetailsQuery.vue'], resolve) })
9
+ // 业务查询
10
+ Vue.component('business-manage', (resolve) => {require(['./BusinessManage'], resolve)})
11
+ }
@@ -1,8 +1,5 @@
1
1
  <template>
2
2
  <tab-button v-ref:list :active="-1">
3
- <tabs header="加装花名册" >
4
- <qn-aqzz-hmc v-if="show.includes('加装花名册')" @deal-msg="dealMsg" :data="data"></qn-aqzz-hmc>
5
- </tabs>
6
3
  <tabs header="缴费明细" >
7
4
  <qn-aqzz-jfmx v-if="show.includes('缴费明细')" @deal-msg="dealMsg" :data="data"></qn-aqzz-jfmx>
8
5
  </tabs>
@@ -12,6 +9,9 @@
12
9
  <tabs header="乡镇居委会汇总" >
13
10
  <qn-aqzz-xzjwhhz v-if="show.includes('乡镇居委会汇总')" @deal-msg="dealMsg" :data="data"></qn-aqzz-xzjwhhz>
14
11
  </tabs>
12
+ <tabs header="加装花名册" >
13
+ <qn-aqzz-hmc v-if="show.includes('加装花名册')" @deal-msg="dealMsg" :data="data"></qn-aqzz-hmc>
14
+ </tabs>
15
15
  </tab-button>
16
16
 
17
17
  </template>
@@ -29,15 +29,12 @@
29
29
  </div>
30
30
 
31
31
  <div class="col-sm-2 form-group">
32
- <label class="font_normal_body">用户编号</label>
33
- <input type="text" style="width:60%" class="input_search" v-model="model.b_yhh"
34
- condition="f_userinfo_code = '{}' " placeholder="用户编号">
35
- </div>
36
-
37
- <div class="col-sm-2 form-group">
38
- <label class="font_normal_body">姓名</label>
39
- <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
40
- condition="f_user_name like '%{}%' " placeholder="姓名">
32
+ <label class="font_normal_body">是否合规</label>
33
+ <v-select :value.sync="model.sfhg"
34
+ :options='$parent.$parent.sfhgArray' placeholder='请选择' v-model="model.sfhg"
35
+ condition="sfhg in {}"
36
+ closeOnSelect
37
+ ></v-select>
41
38
  </div>
42
39
 
43
40
  <div class="span" style="float:right;">
@@ -56,6 +53,18 @@
56
53
  </div>
57
54
  </div>
58
55
  <div class="row" v-show="$parent.$parent.criteriaShow">
56
+ <div class="col-sm-2 form-group">
57
+ <label class="font_normal_body">用户编号</label>
58
+ <input type="text" style="width:60%" class="input_search" v-model="model.b_yhh"
59
+ condition="f_userinfo_code = '{}' " placeholder="用户编号">
60
+ </div>
61
+
62
+ <div class="col-sm-2 form-group">
63
+ <label class="font_normal_body">姓名</label>
64
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
65
+ condition="f_user_name like '%{}%' " placeholder="姓名">
66
+ </div>
67
+
59
68
  <div class="col-sm-2 form-group">
60
69
  <label class="font_normal_body">乡镇</label>
61
70
  <v-select :value.sync="model.f_community"
@@ -212,8 +221,8 @@ let readySomething = async function (self) {
212
221
  self.$MagGetSaleParam.initinputtor();
213
222
  self.getinputtores();
214
223
  // 获取区县
215
- self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
216
- self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString() + ' 23:59:59'
224
+ self.$refs.paged.$refs.cri.model.startDate = self.$login.addDate(self.$login.toStandardDateString() + ' 00:00:00', -1) ;
225
+ self.$refs.paged.$refs.cri.model.endDate = self.$login.addDate(self.$login.toStandardDateString() + ' 23:59:59', -1) ;
217
226
  // await self.$refs.paged.$refs.cri.search()
218
227
  self.sumsmodel = self.$refs.paged.$refs.grid.model.sums
219
228
  self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
@@ -277,6 +286,7 @@ export default {
277
286
  allorgid:[],
278
287
  f_filialeid: this.$login.f.f_orgid,
279
288
  dypayment:[{label:"全部",value:""},{label:"银行代扣",value:"银行代扣",},{label:"现金缴费",value:"现金缴费",}],
289
+ sfhgArray:[{label:"全部",value:""},{label:"是",value:"是",},{label:"否",value:"否",}],
280
290
  }
281
291
  },
282
292
  ready() {
@@ -598,7 +608,12 @@ export default {
598
608
  },
599
609
 
600
610
  getCondition() {
601
- return {condition: this.condition2,orderitem:this.orderitem}
611
+ return {
612
+ startDate: this.$refs.paged.$refs.cri.model.startDate,
613
+ endDate: this.$refs.paged.$refs.cri.model.endDate,
614
+ condition: this.condition2,
615
+ orderitem:this.orderitem
616
+ }
602
617
  },
603
618
  getfield() {
604
619
  let data = {}
@@ -29,15 +29,12 @@
29
29
  </div>
30
30
 
31
31
  <div class="col-sm-2 form-group">
32
- <label class="font_normal_body">用户编号</label>
33
- <input type="text" style="width:60%" class="input_search" v-model="model.b_yhh"
34
- condition="f_userinfo_code = '{}' " placeholder="用户编号">
35
- </div>
36
-
37
- <div class="col-sm-2 form-group">
38
- <label class="font_normal_body">姓名</label>
39
- <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
40
- condition="f_user_name like '%{}%' " placeholder="姓名">
32
+ <label class="font_normal_body">是否合规</label>
33
+ <v-select :value.sync="model.sfhg"
34
+ :options='$parent.$parent.sfhgArray' placeholder='请选择' v-model="model.sfhg"
35
+ condition="sfhg in {}"
36
+ closeOnSelect
37
+ ></v-select>
41
38
  </div>
42
39
 
43
40
  <div class="span" style="float:right;">
@@ -56,6 +53,17 @@
56
53
  </div>
57
54
  </div>
58
55
  <div class="row" v-show="$parent.$parent.criteriaShow">
56
+ <div class="col-sm-2 form-group">
57
+ <label class="font_normal_body">用户编号</label>
58
+ <input type="text" style="width:60%" class="input_search" v-model="model.b_yhh"
59
+ condition="f_userinfo_code = '{}' " placeholder="用户编号">
60
+ </div>
61
+
62
+ <div class="col-sm-2 form-group">
63
+ <label class="font_normal_body">姓名</label>
64
+ <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
65
+ condition="f_user_name like '%{}%' " placeholder="姓名">
66
+ </div>
59
67
  <div class="col-sm-2 form-group">
60
68
  <label class="font_normal_body">乡镇</label>
61
69
  <v-select :value.sync="model.f_community"
@@ -75,7 +83,7 @@
75
83
  <div class="col-sm-2 form-group">
76
84
  <label class="font_normal_body">安装联系电话</label>
77
85
  <input type="text" style="width:60%" class="input_search" v-model="model.azlxdh"
78
- condition="azlxdh like '%{}%' " placeholder="安装联系电话">
86
+ condition="f_contact_phone like '%{}%' " placeholder="安装联系电话">
79
87
  </div>
80
88
  </div>
81
89
  </div>
@@ -154,7 +162,7 @@
154
162
  <nobr>{{row.f_user_phone}}</nobr>
155
163
  </td>
156
164
  <td style="text-align: center;">
157
- <nobr>{{row.azlxdh}}</nobr>
165
+ <nobr>{{row.f_contact_phone}}</nobr>
158
166
  </td>
159
167
  <td style="text-align: center;">
160
168
  <nobr>{{row.f_typename}}</nobr>
@@ -212,8 +220,8 @@ let readySomething = async function (self) {
212
220
  self.$MagGetSaleParam.initinputtor();
213
221
  self.getinputtores();
214
222
  // 获取区县
215
- self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
216
- self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString() + ' 23:59:59'
223
+ self.$refs.paged.$refs.cri.model.startDate = self.$login.addDate(self.$login.toStandardDateString() + ' 00:00:00', -1) ;
224
+ self.$refs.paged.$refs.cri.model.endDate = self.$login.addDate(self.$login.toStandardDateString() + ' 23:59:59', -1) ;
217
225
  // await self.$refs.paged.$refs.cri.search()
218
226
  self.sumsmodel = self.$refs.paged.$refs.grid.model.sums
219
227
  self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
@@ -277,6 +285,7 @@ export default {
277
285
  allorgid:[],
278
286
  f_filialeid: this.$login.f.f_orgid,
279
287
  dypayment:[{label:"全部",value:""},{label:"银行代扣",value:"银行代扣",},{label:"现金缴费",value:"现金缴费",}],
288
+ sfhgArray:[{label:"全部",value:""},{label:"是",value:"是",},{label:"否",value:"否",}],
280
289
  }
281
290
  },
282
291
  ready() {
@@ -598,7 +607,12 @@ export default {
598
607
  },
599
608
 
600
609
  getCondition() {
601
- return {condition: this.condition2,orderitem:this.orderitem}
610
+ return {
611
+ startDate: this.$refs.paged.$refs.cri.model.startDate,
612
+ endDate: this.$refs.paged.$refs.cri.model.endDate,
613
+ condition: this.condition2,
614
+ orderitem:this.orderitem
615
+ }
602
616
  },
603
617
  getfield() {
604
618
  let data = {}
@@ -139,8 +139,8 @@ let readySomething = async function (self) {
139
139
  self.$MagGetSaleParam.initinputtor();
140
140
  self.getinputtores();
141
141
  // 获取区县
142
- self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
143
- self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString() + ' 23:59:59'
142
+ self.$refs.paged.$refs.cri.model.startDate = self.$login.addDate(self.$login.toStandardDateString() + ' 00:00:00', -1) ;
143
+ self.$refs.paged.$refs.cri.model.endDate = self.$login.addDate(self.$login.toStandardDateString() + ' 23:59:59', -1) ;
144
144
  // await self.$refs.paged.$refs.cri.search()
145
145
  self.sumsmodel = self.$refs.paged.$refs.grid.model.sums
146
146
  self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
@@ -525,7 +525,12 @@ export default {
525
525
  },
526
526
 
527
527
  getCondition() {
528
- return {condition: this.condition2,orderitem:this.orderitem}
528
+ return {
529
+ startDate: this.$refs.paged.$refs.cri.model.startDate,
530
+ endDate: this.$refs.paged.$refs.cri.model.endDate,
531
+ condition: this.condition2,
532
+ orderitem:this.orderitem
533
+ }
529
534
  },
530
535
  getfield() {
531
536
  let data = {}
@@ -153,8 +153,8 @@ let readySomething = async function (self) {
153
153
  self.$MagGetSaleParam.initinputtor();
154
154
  self.getinputtores();
155
155
  // 获取区县
156
- self.$refs.paged.$refs.cri.model.startDate = self.$login.toStandardDateString() + ' 00:00:00'
157
- self.$refs.paged.$refs.cri.model.endDate = self.$login.toStandardDateString() + ' 23:59:59'
156
+ self.$refs.paged.$refs.cri.model.startDate = self.$login.addDate(self.$login.toStandardDateString() + ' 00:00:00', -1) ;
157
+ self.$refs.paged.$refs.cri.model.endDate = self.$login.addDate(self.$login.toStandardDateString() + ' 23:59:59', -1) ;
158
158
  // await self.$refs.paged.$refs.cri.search()
159
159
  self.sumsmodel = self.$refs.paged.$refs.grid.model.sums
160
160
  self.defaultfield = [...self.defaultfield, ...self.config.defaultPrint]
@@ -539,7 +539,12 @@ export default {
539
539
  },
540
540
 
541
541
  getCondition() {
542
- return {condition: this.condition2,orderitem:this.orderitem}
542
+ return {
543
+ startDate: this.$refs.paged.$refs.cri.model.startDate,
544
+ endDate: this.$refs.paged.$refs.cri.model.endDate,
545
+ condition: this.condition2,
546
+ orderitem:this.orderitem
547
+ }
543
548
  },
544
549
  getfield() {
545
550
  let data = {}
@@ -1,6 +1,7 @@
1
1
  // 分公司特殊组件页面注册
2
2
  import Vue from 'vue'
3
3
  export default function () {
4
+
4
5
  Vue.component('other-charge-query', (resolve) => { require(['./OtherChargeQuery'], resolve) })
5
6
  Vue.component('arrears-query', (resolve) => { require(['./ArrearsQuery'], resolve) })
6
7
  Vue.component('charge-query', (resolve) => { require(['./ChargeQuery'], resolve) })
@@ -9,12 +9,12 @@
9
9
  <div class="col-sm-2 form-group">
10
10
  <label class="font_normal_body">用户编号</label>
11
11
  <input type="text" style="width:60%" class="input_search" v-model="model.f_userinfo_code"
12
- condition="f_userinfo_code = '{}' " placeholder="用户编号">
12
+ condition="f_userinfo_code like '%{}%' " placeholder="用户编号">
13
13
  </div>
14
14
  <div class="col-sm-2 form-group">
15
15
  <label class="font_normal_body">用户名称</label>
16
16
  <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
17
- condition="f_user_name = '{}'" placeholder="用户名称">
17
+ condition="f_user_name like '%{}%'" placeholder="用户名称">
18
18
  </div>
19
19
  <div class="col-sm-2 form-group">
20
20
  <label class="font_normal_body">用户地址</label>
@@ -10,12 +10,12 @@
10
10
  <div class="col-sm-2 form-group">
11
11
  <label class="font_normal_body">{{$parent.$parent.usertitle}}编号</label>
12
12
  <input type="text" style="width:60%" class="input_search" v-model="model.f_userinfo_code"
13
- condition="f_userinfo_code = '{}' " placeholder={{$parent.$parent.usertitle}}编号>
13
+ condition="f_userinfo_code like '%{}%' " placeholder={{$parent.$parent.usertitle}}编号>
14
14
  </div>
15
15
  <div class="col-sm-2 form-group">
16
16
  <label class="font_normal_body">{{$parent.$parent.usertitle}}名称</label>
17
17
  <input type="text" style="width:60%" class="input_search" v-model="model.f_user_name"
18
- condition="f_user_name = '{}'" placeholder={{$parent.$parent.usertitle}}名称>
18
+ condition="f_user_name like '%{}%'" placeholder={{$parent.$parent.usertitle}}名称>
19
19
  </div>
20
20
  <div class="col-sm-2 form-group">
21
21
  <label class="font_normal_body">{{$parent.$parent.usertitle}}地址</label>