manage-client 3.2.263 → 3.2.265

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.
Files changed (33) hide show
  1. package/build/dev-server.js +180 -180
  2. package/package.json +111 -111
  3. package/src/filiale/kelai/ChargeQuery.vue +1341 -0
  4. package/src/filiale/kelai/sale.js +2 -1
  5. package/src/filiale/ningjin/CallReport/CallReportMainPage.vue +146 -0
  6. package/src/filiale/ningjin/CallReport/DropDownBox.vue +64 -0
  7. package/src/filiale/ningjin/CallReport/IncomingTelegram.vue +187 -0
  8. package/src/filiale/ningjin/CallReport/PercentageComplete.vue +413 -0
  9. package/src/filiale/ningjin/CallReport/PercentageCompleteEchart.vue +150 -0
  10. package/src/filiale/ningjin/CallReport/RateBottom.vue +143 -0
  11. package/src/filiale/ningjin/CallReport/RateTop.vue +144 -0
  12. package/src/filiale/ningjin/CallReport/ScrollContent.vue +143 -0
  13. package/src/filiale/ningjin/CallReport/ServiceStatus.vue +371 -0
  14. package/src/filiale/ningjin/CallReport/SwiperTools.vue +145 -0
  15. package/src/filiale/ningjin/CallReport/SwiperTools2.vue +176 -0
  16. package/src/filiale/ningjin/CallReport/Time.vue +100 -0
  17. package/src/filiale/ningjin/CallReport/Userinfo.vue +69 -0
  18. package/src/filiale/ningjin/CallReport/WeatherData.vue +108 -0
  19. package/src/filiale/ningjin/CallReport/WorkOrderPage.vue +260 -0
  20. package/src/filiale/ningjin/FillCardQuery.vue +581 -0
  21. package/src/filiale/ningjin/GasStatistics.vue +39 -20
  22. package/src/filiale/ningjin/LostContactAnalysisList.vue +676 -0
  23. package/src/filiale/ningjin/ManageBusSummaryPeng.vue +241 -0
  24. package/src/filiale/ningjin/ManageHandSellMoney.vue +247 -0
  25. package/src/filiale/ningjin/ManageSellType.vue +284 -0
  26. package/src/filiale/ningjin/MeterExceptionList.vue +54 -9
  27. package/src/filiale/ningjin/UserLostContactAnalysis.vue +592 -0
  28. package/src/filiale/ningjin/config/exportConfig.js +35 -34
  29. package/src/filiale/ningjin/reportManage.js +6 -1
  30. package/src/filiale/ningjin/sale.js +26 -0
  31. package/src/filiale/ningjin/webmeterManage.js +5 -1
  32. package/src/filiale/wenxi/GasDeviceQuery.vue +975 -0
  33. package/src/filiale/wenxi/sale.js +2 -0
@@ -148,15 +148,21 @@
148
148
  :show-reset-button="reset">
149
149
  </datepicker>
150
150
  </div>
151
- <div class="col-sm-2 form-group flex-row" style="white-space: nowrap">
152
- <label class="font_normal_body">余额区间</label>
153
- <div class="row">
154
- <input type="text" style="width:27%" class="input_search" v-model="model.f_balance_amount_sta"
155
- condition="ss.f_balance_amount >= {} " placeholder="">
156
- <label class="font_normal_body"> x ≤ </label>
157
- <input type="text" style="width:27%" class="input_search" v-model="model.f_balance_amount_end"
158
- condition="ss.f_balance_amount <= {} " placeholder="">
159
- </div>
151
+ <div class="col-sm-2 form-group">
152
+ <label class="font_normal_body">用气类型</label>
153
+ <v-select :value.sync="model.f_user_nature"
154
+ v-model="model.f_user_nature"
155
+ :options="$parent.$parent.usernatures"
156
+ condition="ss.f_user_nature = '{}'"
157
+ close-on-select></v-select>
158
+ </div>
159
+ <div class="col-sm-2 form-group">
160
+ <label class="font_normal_body">用气性质</label>
161
+ <v-select :value.sync="model.f_gasproperties"
162
+ v-model="model.f_gasproperties"
163
+ :options="$parent.$parent.gasProperties"
164
+ condition="ss.f_gasproperties = '{}'"
165
+ close-on-select></v-select>
160
166
  </div>
161
167
  <div class="col-sm-2 form-group">
162
168
  <label style="width:35%" class="font_normal_body">客户类型</label>
@@ -191,6 +197,7 @@
191
197
  <th><nobr>二阶气价</nobr></th>
192
198
  <th><nobr>三阶气价</nobr></th>
193
199
 
200
+ <th><nobr>用气类型</nobr></th>
194
201
  <th><nobr>用气性质</nobr></th>
195
202
  <th><nobr>期初余额</nobr></th>
196
203
  <th><nobr>起方</nobr></th>
@@ -223,9 +230,9 @@
223
230
  <th style="text-align:center"><nobr>{{row.f_stair2price}}</nobr></th>
224
231
  <th style="text-align:center"><nobr>{{row.f_stair3price}}</nobr></th>
225
232
 
233
+ <th style="text-align:center"><nobr>{{row.f_user_nature}}</nobr></th>
226
234
  <th style="text-align:center"><nobr>{{row.f_gasproperties}}</nobr></th>
227
235
 
228
-
229
236
  <th style="text-align:center"><nobr>{{row.f_balance}}</nobr></th>
230
237
  <th style="text-align:center"><nobr>{{row.f_last_tablebase}}</nobr></th>
231
238
  <th style="text-align:center"><nobr>{{row.f_tablebase}}</nobr></th>
@@ -285,8 +292,8 @@
285
292
  <script>
286
293
  import {HttpResetClass, PagedList} from 'vue-client'
287
294
  import exportConfig from './config/exportConfig'
288
- import * as Util from './../../Util'
289
- import plugins from './../../plugins/GetLoginInfoService'
295
+ import * as Util from '../../Util'
296
+ import plugins from '../../plugins/GetLoginInfoService'
290
297
 
291
298
  let readySomething = async function (self) {
292
299
  await self.$MagLoadParams.loadParam()
@@ -437,14 +444,6 @@
437
444
  }
438
445
  },
439
446
  computed: {
440
- getCondition() {
441
-
442
- return {
443
- condition: this.condition,
444
- startDate:`${this.$refs.paged.$refs.criteria.model.startDate}`,
445
- endDate:`${this.$refs.paged.$refs.criteria.model.endDate}`
446
- }
447
- },
448
447
  getstart(){
449
448
  return `开始时间:${this.$refs.paged.$refs.criteria.model.startDate} 结束时间:${this.$refs.paged.$refs.criteria.model.endDate}`
450
449
  },
@@ -491,6 +490,12 @@
491
490
  pricetypes() {
492
491
  return [{label: '全部', value: ''}, ...this.$appdata.getParam('气价类型')]
493
492
  },
493
+ usernatures(){
494
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用气类型')]
495
+ },
496
+ gasProperties(){
497
+ return [{label: '全部', value: ''}, ...this.$appdata.getParam('用气性质')]
498
+ },
494
499
  gasState() {
495
500
  return [{label:'正常', value:'正常'},
496
501
  {label:'异常', value:'异常'},
@@ -500,6 +505,20 @@
500
505
  return [{label:'是', value:'是'},
501
506
  {label:'否', value:'否'},
502
507
  ]
508
+ },
509
+ getCondition () {
510
+ // var con = ""
511
+ // if (this.orgCondtionStr) {
512
+ // con = `${this.$refs.paged.$refs.criteria.condition} and m.f_orgid in (${this.orgCondtionStr})`
513
+ // }
514
+ // else {
515
+ // con = `${this.$refs.paged.$refs.criteria.condition}and m.f_orgid in ('${this.$login.f.orgid}' )`
516
+ // }
517
+ return {
518
+ startDate: this.$refs.paged.$refs.criteria.model.startDate,
519
+ endDate: this.$refs.paged.$refs.criteria.model.endDate,
520
+ condition: this.condition
521
+ }
503
522
  }
504
523
  }
505
524
  }