manage-client 4.0.52 → 4.0.55

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
+ }
@@ -0,0 +1,14 @@
1
+ export default{
2
+ // 把打印需要默认选中的字段名放在config数组中
3
+ config: [
4
+ 'f_userinfo_code',
5
+ 'f_user_name',
6
+ 'f_user_phone',
7
+ 'f_pregas',
8
+ 'f_preamount',
9
+ 'f_collection',
10
+ 'f_balance',
11
+ 'f_curbalance',
12
+ 'f_idnumber'
13
+ ]
14
+ }
@@ -12,7 +12,7 @@ import { HttpResetClass } from 'vue-client'
12
12
 
13
13
  let getData = function * (self) {
14
14
  let load = new HttpResetClass()
15
- load.load('POST', 'api/af-revenue/sql/webmeter_getNewHandChanceList', {data: {condition: self.condition, startDate: self.startdate, endDate: self.enddate}}, {resolveMsg: null, rejectMsg: null}).then((res) => {
15
+ load.load('POST', 'api/af-revenue/sql/webmeter_getNewHandChanceList', {data: {condition: self.condition, startDate: self.startdate + ' 00:00:00', endDate: self.enddate + ' 23:59:59'}}, {resolveMsg: null, rejectMsg: null}).then((res) => {
16
16
  // eslint-disable-next-line camelcase
17
17
  let every_time = res.data.map(x => x.f_insert_date)
18
18
  // eslint-disable-next-line camelcase
@@ -173,6 +173,36 @@
173
173
  condition="ss.f_gasproperties = '{}'"
174
174
  closfe-on-select></v-select>
175
175
  </div>
176
+ <div class="col-sm-2 form-group flex-row" style="white-space: nowrap">
177
+ <label class="font_normal_body">一阶气量</label>
178
+ <div class="row">
179
+ <input type="text" style="width:27%" class="input_search" v-model="model.f_stairamount1"
180
+ condition="ss.f_stairamount1 >= {} " placeholder="">
181
+ <label class="font_normal_body"> ≤ x ≤ </label>
182
+ <input type="text" style="width:27%" class="input_search" v-model="model.f_stairamount1"
183
+ condition="ss.f_stairamount1 <= {} " placeholder="">
184
+ </div>
185
+ </div>
186
+ <div class="col-sm-2 form-group flex-row" style="white-space: nowrap">
187
+ <label class="font_normal_body">二阶气量</label>
188
+ <div class="row">
189
+ <input type="text" style="width:27%" class="input_search" v-model="model.f_stairamount2"
190
+ condition="ss.f_stairamount2 >= {} " placeholder="">
191
+ <label class="font_normal_body"> ≤ x ≤ </label>
192
+ <input type="text" style="width:27%" class="input_search" v-model="model.f_stairamount2"
193
+ condition="ss.f_stairamount2 <= {} " placeholder="">
194
+ </div>
195
+ </div>
196
+ <div class="col-sm-2 form-group flex-row" style="white-space: nowrap">
197
+ <label class="font_normal_body">三阶气量</label>
198
+ <div class="row">
199
+ <input type="text" style="width:27%" class="input_search" v-model="model.f_stairamount3"
200
+ condition="ss.f_stairamount3 >= {} " placeholder="">
201
+ <label class="font_normal_body"> ≤ x ≤ </label>
202
+ <input type="text" style="width:27%" class="input_search" v-model="model.f_stairamount3"
203
+ condition="ss.f_stairamount3 <= {} " placeholder="">
204
+ </div>
205
+ </div>
176
206
  </div>
177
207
  </div>
178
208
  </criteria>
@@ -191,9 +221,7 @@
191
221
  <th><nobr>表描述</nobr></th>
192
222
  <!-- <th><nobr>气价名称</nobr></th>-->
193
223
 
194
- <!-- <th><nobr>一阶气价</nobr></th>-->
195
- <!-- <th><nobr>二阶气价</nobr></th>-->
196
- <!-- <th><nobr>三阶气价</nobr></th>-->
224
+
197
225
 
198
226
  <th><nobr>用气性质</nobr></th>
199
227
  <th><nobr>期初余额</nobr></th>
@@ -201,6 +229,10 @@
201
229
  <th><nobr>止方</nobr></th>
202
230
  <th><nobr>期间用气量</nobr></th>
203
231
 
232
+ <th><nobr>一阶气量</nobr></th>
233
+ <th><nobr>二阶气量</nobr></th>
234
+ <th><nobr>三阶气量</nobr></th>
235
+
204
236
  <th><nobr>期间用气金额</nobr></th>
205
237
  <th><nobr>期间充值金额</nobr></th>
206
238
  <th><nobr>期末余额</nobr></th>
@@ -234,6 +266,11 @@
234
266
  <th style="text-align:center"><nobr>{{row.f_last_tablebase}}</nobr></th>
235
267
  <th style="text-align:center"><nobr>{{row.f_tablebase}}</nobr></th>
236
268
  <th style="text-align:center"><nobr>{{row.f_oughtamount}}</nobr></th>
269
+
270
+ <th style="text-align:center"><nobr>{{row.f_stairamount1}}</nobr></th>
271
+ <th style="text-align:center"><nobr>{{row.f_stairamount2}}</nobr></th>
272
+ <th style="text-align:center"><nobr>{{row.f_stairamount3}}</nobr></th>
273
+
237
274
  <th style="text-align:center"><nobr>{{row.f_oughtfee}}</nobr></th>
238
275
 
239
276
  <th style="text-align:center"><nobr>{{row.f_collection}}</nobr></th>
@@ -261,21 +298,21 @@
261
298
  <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
262
299
  期间充值金额:&emsp;{{sumsmodel.f_collection}}
263
300
  </td>
264
- <!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
265
- <!-- 一阶气量合计:&emsp;{{sumsmodel.f_stairamount1}}-->
266
- <!-- </td>-->
301
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
302
+ 一阶气量合计:&emsp;{{sumsmodel.f_stairamount1}}
303
+ </td>
267
304
  <!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
268
305
  <!-- 一阶气费合计:&emsp;{{sumsmodel.f_stair1fee}}-->
269
306
  <!-- </td>-->
270
- <!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
271
- <!-- 二阶气量合计:&emsp;{{sumsmodel.f_stairamount2}}-->
272
- <!-- </td>-->
307
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
308
+ 二阶气量合计:&emsp;{{sumsmodel.f_stairamount2}}
309
+ </td>
273
310
  <!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
274
311
  <!-- 二阶气费合计:&emsp;{{sumsmodel.f_stair2fee}}-->
275
312
  <!-- </td>-->
276
- <!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
277
- <!-- 三阶气量合计:&emsp;{{sumsmodel.f_stairamount3}}-->
278
- <!-- </td>-->
313
+ <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">
314
+ 三阶气量合计:&emsp;{{sumsmodel.f_stairamount3}}
315
+ </td>
279
316
  <!-- <td style="display: inline-block;width: auto;border-right: 1px solid #F2F6FA;padding: 0px 10px 0px 10px;font-weight: bold">-->
280
317
  <!-- 三阶气费合计:&emsp;{{sumsmodel.f_stair3fee}}-->
281
318
  <!-- </td>-->
@@ -315,7 +352,7 @@
315
352
  getstart:'',
316
353
  config: {
317
354
  defaultPrint: ['f_userinfo_code', 'f_user_name', 'f_meternumber', 'f_gasproperties', 'f_balance', 'f_last_tablebase','f_tablebase',
318
- 'f_oughtamount', 'f_oughtfee', 'f_collection', 'f_curbalance', 'f_gas_state', 'f_changetable_state', 'f_input_date']
355
+ 'f_oughtamount', 'f_stairamount1', 'f_stairamount2', 'f_stairamount3', 'f_oughtfee', 'f_collection', 'f_curbalance', 'f_gas_state', 'f_changetable_state', 'f_input_date']
319
356
  },
320
357
  sumsmodel: {},
321
358
  orgid:[this.$login.f.orgid],
@@ -329,7 +366,10 @@
329
366
  },{
330
367
  f_oughtamount: 0,
331
368
  f_oughtfee: 0,
332
- f_collection:0
369
+ f_collection: 0,
370
+ f_stairamount1: 0,
371
+ f_stairamount2: 0,
372
+ f_stairamount3: 0
333
373
  }),
334
374
  showbottomsum:false //页面下方是否有合计: 默认为false, 在watch修改
335
375
  }
@@ -1391,6 +1391,9 @@ export default {
1391
1391
  'f_last_tablebase': '起方',
1392
1392
  'f_tablebase': '止方',
1393
1393
  'f_oughtamount': '期间用气量',
1394
+ 'f_stairamount1': '一阶气量',
1395
+ 'f_stairamount2': '二阶气量',
1396
+ 'f_stairamount3': '三阶气量',
1394
1397
  'f_oughtfee': '期间用气金额',
1395
1398
  'f_collection': '期末充值金额',
1396
1399
  'f_curbalance': '期末余额',