sale-client 3.4.201 → 3.4.204
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/build/dev-server.js +1 -1
- package/build/webpack.prod.conf.js +1 -1
- package/package.json +2 -2
- package/src/components/FilesManageNew/FileAddressList.vue +10 -13
- package/src/components/FilesManageNew/FileAddressManage.vue +8 -20
- package/src/components/FilesManageNew/MeterinfoTest.vue +5 -2
- package/src/components/FilesManageNew/UserEssentialInfoTest.vue +5 -2
- package/src/components/FilesManageNew/UserGeneralInfoTest.vue +2 -2
- package/src/components/FilesManageNew/UserMeterInfoTest.vue +1 -1
- package/src/components/common/userinfo_detail/UserBaseInfoNew.vue +1 -1
- package/src/components/revenue/HandManager/MbpeopleList.vue +6 -0
- package/src/components/revenue/concentrator/ncArchivesList.vue +1 -1
- package/src/components/revenue/concentrator/ncUserfilesList2.vue +1 -1
- package/src/components/revenue/concentrator/ncarchivesmanage.vue +1 -1
- package/src/components/webMeter/MeterManage/WebMeterBatchOperationValve.vue +1 -1
- package/src/components/webMeter/approvalHandleList.vue +1 -1
- package/src/filiale/fugu/components/revenue/base/rightview/CardList.vue +526 -0
- package/src/filiale/fugu/sale.js +3 -0
- package/src/filiale/qianneng/sale.js +2 -0
- package/src/filiale/qianneng/specificInformation.vue +416 -0
- package/src/filiale/rizhao/UserEssentialInfoTest.vue +2 -1
- package/src/filiale/tongchuan/ChargeManage.vue +1 -5
- package/src/filiale/tongchuan/base/otherinfo.vue +1 -4
- package/src/filiale/tongchuan/sale.js +7 -0
- package/src/filiale/wuhai/ChargeRecordQuery.vue +98 -0
- package/src/filiale/wuhai/IOTMeterCenter.vue +757 -0
- package/src/filiale/wuhai/sale.js +5 -1
- package/src/main.js +18 -18
- package/src/plugins/FileManageService.js +1 -2
- package/src/sale.js +1095 -1099
package/build/dev-server.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sale-client",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.204",
|
|
4
4
|
"description": "收费模块前台组件",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"style-loader": "^0.20.3",
|
|
89
89
|
"system-clients": "3.2.0-2",
|
|
90
90
|
"url-loader": "^0.5.7",
|
|
91
|
-
"vue-client": "1.24.
|
|
91
|
+
"vue-client": "1.24.52",
|
|
92
92
|
"vue-clipboard2": "0.3.1",
|
|
93
93
|
"vue-hot-reload-api": "^1.2.0",
|
|
94
94
|
"vue-html-loader": "^1.0.0",
|
|
@@ -75,15 +75,12 @@
|
|
|
75
75
|
},
|
|
76
76
|
title: '地址列表',
|
|
77
77
|
props: {
|
|
78
|
-
|
|
78
|
+
f_filialeid: {
|
|
79
79
|
type: String
|
|
80
|
-
},
|
|
81
|
-
company: {
|
|
82
|
-
type: String,
|
|
83
|
-
default: ''
|
|
84
80
|
}
|
|
85
81
|
},
|
|
86
82
|
ready () {
|
|
83
|
+
console.log('f_filialeid8888:',this.f_filialeid)
|
|
87
84
|
this.search()
|
|
88
85
|
},
|
|
89
86
|
methods: {
|
|
@@ -92,7 +89,7 @@
|
|
|
92
89
|
},
|
|
93
90
|
// 添加方法
|
|
94
91
|
add (val) {
|
|
95
|
-
if (this.
|
|
92
|
+
if (this.f_filialeid) {
|
|
96
93
|
this.$refs.paged.$refs.grid.selectStore.selected = null
|
|
97
94
|
this.$dispatch('add', val)
|
|
98
95
|
} else {
|
|
@@ -114,10 +111,10 @@
|
|
|
114
111
|
},
|
|
115
112
|
|
|
116
113
|
selfSearch (args) {
|
|
117
|
-
if (!this.
|
|
114
|
+
if (!this.f_filialeid) {
|
|
118
115
|
this.getorg([this.$login.f.orgid])
|
|
119
116
|
}
|
|
120
|
-
args.condition = `${args.condition} and a.f_userinfo_id is null and a.f_filialeid = '${this.
|
|
117
|
+
args.condition = `${args.condition} and a.f_userinfo_id is null and a.f_filialeid = '${this.f_filialeid}'`
|
|
121
118
|
this.model.search(args.condition, args.model)
|
|
122
119
|
},
|
|
123
120
|
|
|
@@ -127,14 +124,14 @@
|
|
|
127
124
|
},
|
|
128
125
|
getorg (val) {
|
|
129
126
|
this.f_orgid = this.$login.convertToIn(val)
|
|
130
|
-
this.
|
|
127
|
+
this.f_filialeid = val[0]
|
|
131
128
|
}
|
|
132
129
|
},
|
|
133
130
|
watch: {
|
|
134
|
-
'company' (val) {
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
}
|
|
131
|
+
// 'company' (val) {
|
|
132
|
+
// this.f_orgid = val
|
|
133
|
+
// this.f_filialeids = val
|
|
134
|
+
// }
|
|
138
135
|
}
|
|
139
136
|
|
|
140
137
|
}
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="unit" class="flex-row">
|
|
3
3
|
<div :class="{'basic-main':!useraddressShow,'binary-left':useraddressShow}" v-show="isSelect">
|
|
4
|
-
<file-address-list-new @select-changed="selected" v-ref:addresslist :style="style"
|
|
4
|
+
<file-address-list-new @select-changed="selected" v-ref:addresslist :style="style"
|
|
5
|
+
:select=select :f_filialeid="f_filialeid"></file-address-list-new>
|
|
5
6
|
</div>
|
|
6
7
|
<div v-show="useraddressShow" :class="{'basic-main':!isSelect, 'binary-right': isSelect}">
|
|
7
8
|
<div class="flex">
|
|
8
|
-
<user-address :f_filialeids
|
|
9
|
+
<user-address :f_filialeids="f_filialeid" :usertype="isSpecial" :isedit="isSelect" :row="row" v-ref:fileuseraddress></user-address>
|
|
9
10
|
|
|
10
11
|
<file-user-address-change-new v-if="addressId" :address_id="addressId"></file-user-address-change-new>
|
|
11
12
|
</div>
|
|
@@ -18,10 +19,12 @@
|
|
|
18
19
|
title: '地址管理',
|
|
19
20
|
components: {
|
|
20
21
|
},
|
|
22
|
+
props: ['isSelect', 'fileinfo', 'f_filialeid', 'showselectaddress'],
|
|
21
23
|
data () {
|
|
22
24
|
return {
|
|
23
25
|
// 分公司id串
|
|
24
|
-
f_filialeids: this.$login.f.orgid,
|
|
26
|
+
// f_filialeids: this.$login.f.orgid,
|
|
27
|
+
f_filialeid: '',
|
|
25
28
|
area: [],
|
|
26
29
|
street: [],
|
|
27
30
|
residential: [],
|
|
@@ -31,23 +34,8 @@
|
|
|
31
34
|
isSpecial: false
|
|
32
35
|
}
|
|
33
36
|
},
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
type: Boolean,
|
|
37
|
-
default: false
|
|
38
|
-
},
|
|
39
|
-
fileinfo: {
|
|
40
|
-
type: Object,
|
|
41
|
-
default: {}
|
|
42
|
-
},
|
|
43
|
-
company: {
|
|
44
|
-
type: String,
|
|
45
|
-
default: ''
|
|
46
|
-
},
|
|
47
|
-
showselectaddress: {
|
|
48
|
-
type: Boolean,
|
|
49
|
-
default: false
|
|
50
|
-
}
|
|
37
|
+
ready () {
|
|
38
|
+
|
|
51
39
|
},
|
|
52
40
|
watch: {
|
|
53
41
|
'showselectaddress' (val) {
|
|
@@ -284,10 +284,13 @@ import Vue from 'vue'
|
|
|
284
284
|
let meterBookGen = function * (self) {
|
|
285
285
|
if (self.$login.r.find(value => value == '抄表册建档')) {
|
|
286
286
|
self.opteratormetrbook = true
|
|
287
|
-
|
|
287
|
+
}
|
|
288
|
+
if(!self.f_filialeid){
|
|
289
|
+
self.f_filialeid = self.$login.f.orgid
|
|
290
|
+
}
|
|
288
291
|
let temp = {
|
|
289
292
|
tablename: 't_meter_book',
|
|
290
|
-
condition: `f_book_state='有效' and f_filiale_id='${self
|
|
293
|
+
condition: `f_book_state='有效' and f_filiale_id='${self.f_filialeid}'`
|
|
291
294
|
}
|
|
292
295
|
let http = new HttpResetClass()
|
|
293
296
|
let meterbooks = yield http.load('POST', 'rs/sql/saleSingleTable', {data: temp},
|
|
@@ -193,7 +193,9 @@
|
|
|
193
193
|
<modal v-if="showselectaddress" :show.sync="showselectaddress" width="80%" title="地址信息" v-ref:modal large backdrop="false">
|
|
194
194
|
<article slot="modal-body" class="modal-body" style="height: 700px;padding: 0!important;">
|
|
195
195
|
<file-address-manage-new :is-select="isSelect" :fileinfo="addressinfo"
|
|
196
|
-
@address-valid="doNothing" :showselectaddress.sync="showselectaddress"
|
|
196
|
+
@address-valid="doNothing" :showselectaddress.sync="showselectaddress"
|
|
197
|
+
:f_filialeid="f_filialeid"
|
|
198
|
+
v-ref:fileaddress ></file-address-manage-new>
|
|
197
199
|
</article>
|
|
198
200
|
<footer slot="modal-footer" class="modal-footer">
|
|
199
201
|
</footer>
|
|
@@ -220,7 +222,7 @@
|
|
|
220
222
|
|
|
221
223
|
export default {
|
|
222
224
|
title: '基本信息',
|
|
223
|
-
props: ['baseinfo', 'addressinfo', 'isedit'],
|
|
225
|
+
props: ['baseinfo', 'addressinfo', 'isedit', 'f_filialeid'],
|
|
224
226
|
data () {
|
|
225
227
|
return {
|
|
226
228
|
showselectaddress: false,
|
|
@@ -247,6 +249,7 @@
|
|
|
247
249
|
}
|
|
248
250
|
},
|
|
249
251
|
ready () {
|
|
252
|
+
console.log('f_filialeid222,,,', this.f_filialeid)
|
|
250
253
|
getEditUserState(this)
|
|
251
254
|
this.$resetValidation()
|
|
252
255
|
// this.highMeterPlugin = new HighMeter(this,this.readIDCardCallback)
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
<button class="button_search" style="width: max-content" @click="uploadPictures()">拍照</button>
|
|
10
10
|
</div>
|
|
11
11
|
<file-user-essential-info-new :baseinfo="data.baseinfo" :addressinfo="data.addressinfo" @valid="essentialInfo = true"
|
|
12
|
-
|
|
12
|
+
:f_filialeid="f_filialeid" @invalid="essentialInfo = false" v-ref:useressential :isedit="isedit"></file-user-essential-info-new>
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
15
|
<div style="height: auto;width: 100%">
|
|
@@ -179,6 +179,7 @@ export default {
|
|
|
179
179
|
async ready () {
|
|
180
180
|
this.blodid = '临时id' + Date.now()
|
|
181
181
|
console.log('ready,,,', this.row)
|
|
182
|
+
console.log('f_filialeid111,,,', this.f_filialeid)
|
|
182
183
|
try {
|
|
183
184
|
await this.$getConfig(this, 'FilesDetail')
|
|
184
185
|
} catch (error) {
|
|
@@ -305,7 +306,6 @@ export default {
|
|
|
305
306
|
if (this.row) {
|
|
306
307
|
this.data.baseinfo.base.version = this.row.version
|
|
307
308
|
}
|
|
308
|
-
console.log('档案保存之前,。。。', this.data)
|
|
309
309
|
this.$FileManageService.fileSave(this.$FileManageService.fileSaveBefore(this.data)).then((res) => {
|
|
310
310
|
this.savePrintSheet(res.data.result[0])
|
|
311
311
|
this.$dispatch('success')
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<span class="glyphicon glyphicon-plus"></span>
|
|
17
17
|
<!--<img :src="imgmeter" alt="图片加载失败" class="img-rounded" style="width: 50px;margin:10px;">-->
|
|
18
18
|
</div>
|
|
19
|
-
<file-user-device-info-new :devicesinfo.sync="devicesinfo" :show_devices.sync="show_devices"
|
|
19
|
+
<file-user-device-info-new :devicesinfo.sync="devicesinfo" :show_devices.sync="show_devices" :f_filialeid="f_filialeid"
|
|
20
20
|
:userinfoid='data.baseinfo.base.f_userinfo_id'></file-user-device-info-new>
|
|
21
21
|
</div>
|
|
22
22
|
</template>
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
</div>
|
|
124
124
|
<div class="col-sm-4">
|
|
125
125
|
<label class="font_normal_body_new">是否自动阀控</label>
|
|
126
|
-
<input class="input-underline" style="width:45%" :value="row.f_network_valve == '1' ? '
|
|
126
|
+
<input class="input-underline" style="width:45%" :value="row.f_network_valve == '1' ? '是' : '否'" readonly>
|
|
127
127
|
</div>
|
|
128
128
|
</div>
|
|
129
129
|
<div v-if="row.f_collection_type == '按气量'" >
|
|
@@ -147,6 +147,12 @@
|
|
|
147
147
|
condition="f_book_no like '%{}%'" placeholder='入户证号'
|
|
148
148
|
>
|
|
149
149
|
</div>
|
|
150
|
+
<div class="col-sm-3 form-group">
|
|
151
|
+
<label class="font_normal_body">表 号 </label>
|
|
152
|
+
<input style="width:60%" type="text" class="form-control" v-model="model.f_meternumber"
|
|
153
|
+
condition="f_meternumber like '%{}%'" placeholder='表号'
|
|
154
|
+
>
|
|
155
|
+
</div>
|
|
150
156
|
</div>
|
|
151
157
|
</div>
|
|
152
158
|
</criteria>
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
<nobr>{{row.f_price_name}}</nobr>
|
|
151
151
|
</td>
|
|
152
152
|
<td style="text-align: center;">
|
|
153
|
-
<nobr>{{row.
|
|
153
|
+
<nobr>{{row.networkstate ? '已组网' : '未组网'}}</nobr>
|
|
154
154
|
</td>
|
|
155
155
|
<td style="text-align: center;">
|
|
156
156
|
<nobr>{{row.f_meter_brand}}</nobr>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</div>
|
|
13
13
|
<modal v-if="addmeterinfoshow" :show.sync="addmeterinfoshow" width="80%" title="表具信息" v-ref:modal large backdrop="false">
|
|
14
14
|
<article slot="modal-body" class="modal-body" style="height: 700px;padding: 0!important;">
|
|
15
|
-
<archives-userfiles-manage :is-select="isSelect" :fileinfo="allarearow" :f_filialeid="f_filialeids"
|
|
15
|
+
<archives-userfiles-manage :is-select="isSelect" :fileinfo="allarearow" :f_filialeid.sync="f_filialeids"
|
|
16
16
|
@address-valid="doNothing" v-ref:userfilesadd ></archives-userfiles-manage>
|
|
17
17
|
<!-- <concentrator-userfiles-list :is-select="isSelect" :meterinfo="meterinfo" :fileinfo="areamodel" :f_filialeid.sync="f_filialeids" :usertype="areamodel.f_user_type"-->
|
|
18
18
|
<!-- @address-valid="doNothing" v-ref:userfilesadd ></concentrator-userfiles-list>-->
|