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.
- package/.gradle/5.2.1/fileChanges/last-build.bin +0 -0
- package/.gradle/5.2.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/5.2.1/gc.properties +0 -0
- package/.gradle/8.10/checksums/checksums.lock +0 -0
- package/.gradle/8.10/dependencies-accessors/gc.properties +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.bin +0 -0
- package/.gradle/8.10/executionHistory/executionHistory.lock +0 -0
- package/.gradle/8.10/fileChanges/last-build.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.bin +0 -0
- package/.gradle/8.10/fileHashes/fileHashes.lock +0 -0
- package/.gradle/8.10/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/.gradle/file-system.probe +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/.npmignore +12 -0
- package/build/dev-server.js +7 -7
- package/package.json +1 -1
- package/src/.npmignore +1 -0
- package/src/filiale/meihekou/ArrearsList.vue +147 -5
- package/src/filiale/meihekou/HandManager.vue +1 -1
- package/src/filiale/meihekou/MessageList.vue +2 -2
- package/src/filiale/meihekou/UserBaseInfoNew.vue +413 -367
- package/src/filiale/meihekou/UserPriceChangeManage.vue +689 -0
- package/src/filiale/meihekou/handAudit/MeterReadAudit.vue +17 -7
- package/src/filiale/meihekou/sale.js +2 -0
- package/src/main.js +1 -1
- package/yarn.lock +12221 -0
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
:options='$parent.$parent.states'
|
|
19
19
|
close-on-select
|
|
20
20
|
condition=" {} "
|
|
21
|
-
@change="$parent.$parent.
|
|
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="档案抄表员"
|
|
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
|
-
|
|
245
|
-
|
|
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/
|
|
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'
|