sale-client 4.2.99 → 4.2.101

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.
@@ -18,7 +18,7 @@
18
18
  :options='$parent.$parent.states'
19
19
  close-on-select
20
20
  condition=" {} "
21
- @change="$parent.$parent.search">
21
+ @change="$parent.$parent.handStateChange">
22
22
  </v-select>
23
23
  </div>
24
24
  <div class="col-sm-2 form-group">
@@ -49,12 +49,12 @@
49
49
  </div>
50
50
  <div class="row" v-show="$parent.$parent.criteriaShow">
51
51
  <div class="col-sm-2 form-group">
52
- <label class="font_normal_body" title="档案抄表员">抄&ensp;表&ensp;员</label>
52
+ <label class="font_normal_body" title="档案抄表员">档案抄表员</label>
53
53
  <v-select :value.sync="model.f_userfiles_inputtor" v-model='model.f_userfiles_inputtor'
54
54
  style="width:60%"
55
55
  multiple="true"
56
56
  condition="f_userfiles_inputtor in {}"
57
- :options='$parent.$parent.inputtores' placeholder='抄表员'
57
+ :options='$parent.$parent.inputtores' placeholder='档案抄表员'
58
58
  close-on-select
59
59
  v-el:cc></v-select>
60
60
  </div>
@@ -228,6 +228,7 @@ export default {
228
228
  show: false,
229
229
  pushdata: {openid: '', cause: ''},
230
230
  row: null,
231
+ isInitializing: true,
231
232
  model: new PagedList('api/af-revenue/sql/meterReadAudit', 20),
232
233
  states: [{label: '待审核', value: ` f_meter_state = '待审核' and f_hand_state ='有效'`}, {
233
234
  label: '未通过',
@@ -239,13 +240,22 @@ export default {
239
240
  ready () {
240
241
  readyGen(this)
241
242
  this.$refs.paged.$refs.cri.model.f_hand_state[0] = ` f_meter_state = '待审核'`
243
+ this.$nextTick(() => {
244
+ this.isInitializing = false
245
+ })
242
246
  },
243
247
  methods: {
244
- defImg(row){
245
- let img = event.srcElement //当前元素
248
+ handStateChange (val) {
249
+ console.log(val, this.isInitializing)
250
+ if (val.length > 0 && !this.isInitializing) {
251
+ this.search()
252
+ }
253
+ },
254
+ defImg (row) {
255
+ let img = event.srcElement // 当前元素
246
256
  let imgsrc = row.f_handplan_image
247
- img.src = imgsrc.replace(/mhrqwxjf.cn/g, "")
248
- img.onerror = null //防止闪图
257
+ img.src = imgsrc.replace(/mhrqwxjf.cn/g, '')
258
+ img.onerror = null // 防止闪图
249
259
  },
250
260
  loadMeterBooks () {
251
261
  this.meterbooks = [...this.meterbooks, ...this.$GetSaleParam.getMeterBooks()]
@@ -73,4 +73,6 @@ export default function () {
73
73
  Vue.component('specific-information', (resolve) => { require(['./specificInformation.vue'], resolve) })
74
74
  // 单条记录维护界面
75
75
  Vue.component('replacement-single-info-operation', (resolve) => { require(['./replacementSingleInfoOperation'], resolve) })
76
+ // 单户调价
77
+ Vue.component('user-pricechange-manage', (resolve) => { require(['./UserPriceChangeManage'], resolve) })
76
78
  }
package/src/main.js CHANGED
@@ -2,7 +2,7 @@ import Vue from 'vue'
2
2
  import all from 'vue-client/src/all'
3
3
  import App from './App'
4
4
  import system from 'system-clients/src/system'
5
- import FilialeSale from './filiale/TaiYuan/sale'
5
+ import FilialeSale from './filiale/meihekou/sale'
6
6
  import sale from './sale'
7
7
  import address from 'address-client/src/address'
8
8
  import ldap from 'ldap-clients/src/ldap'