address-client 3.2.42 → 3.2.43-1
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 +162 -162
- package/build/versionCheck.js +31 -0
- package/package.json +99 -99
- package/src/components/AddressList.vue +4 -4
- package/src/components/AreaList.vue +1 -1
- package/src/components/StreetList.vue +1 -1
- package/src/components/UserAddress.vue +13 -13
- package/src/filiale/WEINAN/AddAreaMsg.vue +26 -1
- package/src/filiale/WEINAN/AreaManage.vue +109 -0
- package/src/filiale/WEINAN/AreaUserList.vue +226 -0
- package/src/filiale/haile/AddressList.vue +615 -0
- package/src/filiale/haile/sale.js +8 -0
- package/src/filiale/meihekou/UserAddress.vue +898 -0
- package/src/filiale/meihekou/sale.js +8 -0
- package/src/filiale/qinhua/AddAreaMsg.vue +743 -0
- package/src/filiale/qinhua/AddressList.vue +627 -0
- package/src/filiale/qinhua/AddressManage.vue +117 -0
- package/src/filiale/qinhua/AreaList.vue +425 -0
- package/src/filiale/qinhua/AreaManage.vue +100 -0
- package/src/filiale/qinhua/CityManage.vue +76 -0
- package/src/filiale/qinhua/StreetList.vue +241 -0
- package/src/filiale/qinhua/UserAddress.vue +894 -0
- package/src/filiale/qinhua/sale.js +20 -0
- package/src/filiale/shanxian/AddAreaMsg.vue +766 -0
- package/src/filiale/shanxian/AddressList.vue +630 -0
- package/src/filiale/shanxian/AreaList.vue +458 -0
- package/src/filiale/shanxian/AreaManage.vue +107 -0
- package/src/filiale/shanxian/UserAddress.vue +900 -0
- package/src/filiale/shanxian/sale.js +11 -0
- package/src/filiale/yangchun/AddAreaMsg.vue +764 -0
- package/src/filiale/yangchun/sale.js +7 -0
- package/src/main.js +21 -21
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
<label class="font_normal_body">经 纬 度</label>
|
|
135
135
|
<input type="text" style="width:30%" v-model="model.f_lng" class="input_search" placeholder="经度"/>
|
|
136
136
|
<input type="text" style="width:30%" v-model="model.f_lat" class="input_search" placeholder="纬度"/>
|
|
137
|
-
 <span class="glyphicon glyphicon-map-marker" @click="openModal" ></span
|
|
137
|
+
<!--  <span class="glyphicon glyphicon-map-marker" @click="openModal" ></span>-->
|
|
138
138
|
</div>
|
|
139
139
|
|
|
140
140
|
<div v-if="usertype" class="col-sm-12 form-group "
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
<label class="font_normal_body">经 纬 度</label>
|
|
148
148
|
<input type="text" style="width:30%" v-model="model.f_lng" class="input_search" placeholder="经度"/>
|
|
149
149
|
<input type="text" style="width:30%" v-model="model.f_lat" class="input_search" placeholder="纬度"/>
|
|
150
|
-
 <span class="glyphicon glyphicon-map-marker" @click="openModal" ></span
|
|
150
|
+
<!--  <span class="glyphicon glyphicon-map-marker" @click="openModal" ></span>-->
|
|
151
151
|
</div>
|
|
152
152
|
<div class="col-sm-6 form-group " v-if="config.hasnumber"
|
|
153
153
|
:class="[$v.f_standard_number.required ? 'has-error' : 'has-success']">
|
|
@@ -317,17 +317,17 @@
|
|
|
317
317
|
</div>
|
|
318
318
|
</validator>
|
|
319
319
|
|
|
320
|
-
<modal v-if="isshow" :show.sync="isshow" large backdrop="false" :width="900"
|
|
321
|
-
<header slot="modal-header" class="modal-header"
|
|
322
|
-
</header
|
|
323
|
-
<article slot="modal-body" class="modal-body"
|
|
324
|
-
<amap-location :islocationclearmark="false" dom="addboxmap" v-ref:positionInfo @getmylocation="getmylocation"></amap-location
|
|
325
|
-
</article
|
|
326
|
-
<footer slot="modal-footer" class="modal-footer"
|
|
327
|
-
<button v-show="isshow" type="button" class="button_search button_spacing" @click='confirmLocation'>确认</button
|
|
328
|
-
<button v-show="isshow" type="button" class="button_clear button_spacing" @click='closeModal'>取消</button
|
|
329
|
-
</footer
|
|
330
|
-
</modal
|
|
320
|
+
<!-- <modal v-if="isshow" :show.sync="isshow" large backdrop="false" :width="900">-->
|
|
321
|
+
<!-- <header slot="modal-header" class="modal-header">-->
|
|
322
|
+
<!-- </header>-->
|
|
323
|
+
<!-- <article slot="modal-body" class="modal-body">-->
|
|
324
|
+
<!-- <amap-location :islocationclearmark="false" dom="addboxmap" v-ref:positionInfo @getmylocation="getmylocation"></amap-location>-->
|
|
325
|
+
<!-- </article>-->
|
|
326
|
+
<!-- <footer slot="modal-footer" class="modal-footer">-->
|
|
327
|
+
<!-- <button v-show="isshow" type="button" class="button_search button_spacing" @click='confirmLocation'>确认</button>-->
|
|
328
|
+
<!-- <button v-show="isshow" type="button" class="button_clear button_spacing" @click='closeModal'>取消</button>-->
|
|
329
|
+
<!-- </footer>-->
|
|
330
|
+
<!-- </modal>-->
|
|
331
331
|
|
|
332
332
|
</div>
|
|
333
333
|
</template>
|
|
@@ -56,6 +56,17 @@
|
|
|
56
56
|
class="form-control" placeholder="小区名称"
|
|
57
57
|
v-validate:f_residential_area='{required: true }'>
|
|
58
58
|
</div>
|
|
59
|
+
<div class="col-sm-6 form-group"
|
|
60
|
+
:class="[$v.f_street_id.required ? 'has-error' : 'has-success']">
|
|
61
|
+
<label class="font_normal_body">安检片区</label>
|
|
62
|
+
<input type="text" style="width:60%" class="input_search" v-show="false" v-model="areamodel.f_check_book_id"
|
|
63
|
+
v-validate:f_street_id='{required: true }'>
|
|
64
|
+
<v-select
|
|
65
|
+
:value.sync="areamodel.f_check_book_id" :value-single="true"
|
|
66
|
+
:options='safeCheckArea' placeholder='请选择'
|
|
67
|
+
close-on-select search="true">
|
|
68
|
+
</v-select>
|
|
69
|
+
</div>
|
|
59
70
|
<div v-if="!f_special"
|
|
60
71
|
class="col-sm-12 form-group">
|
|
61
72
|
<label class="font_normal_body">小区地址</label>
|
|
@@ -289,7 +300,7 @@
|
|
|
289
300
|
meterbrands: [],
|
|
290
301
|
adjustables: [],
|
|
291
302
|
sliceArea: [],
|
|
292
|
-
|
|
303
|
+
safeCheckArea: [],
|
|
293
304
|
gasproperties: [],
|
|
294
305
|
meterbooks:[{label: '全部',value: ''}],
|
|
295
306
|
housetypeoptions:[{label: '楼房', value: '楼房'}, {label: '自建房', value: '自建房'}],
|
|
@@ -335,6 +346,7 @@
|
|
|
335
346
|
async initParams() {
|
|
336
347
|
await this.$LoadParams.loadParam(this.f_filialeids)
|
|
337
348
|
this.initBrands()
|
|
349
|
+
this.initSafeCheckArea()
|
|
338
350
|
// this.initAdjustables()
|
|
339
351
|
},
|
|
340
352
|
|
|
@@ -346,6 +358,19 @@
|
|
|
346
358
|
})
|
|
347
359
|
this.meterbrands = rs
|
|
348
360
|
},
|
|
361
|
+
async initSafeCheckArea () {
|
|
362
|
+
this.safeCheckArea = []
|
|
363
|
+
let data = {
|
|
364
|
+
items: 'id,f_check_book_name',
|
|
365
|
+
tablename: 't_check_book',
|
|
366
|
+
orderitem: 'id',
|
|
367
|
+
condition: `f_orgid=${this.$login.f.orgid}`
|
|
368
|
+
}
|
|
369
|
+
let ret = await this.$resetpost('rs/sql/address_singleTableOrderBy',{data: data},{resolveMsg: null, rejectMsg: null})
|
|
370
|
+
ret.data.forEach(item => {
|
|
371
|
+
this.safeCheckArea.push({label: item.f_check_book_name, value: item.id})
|
|
372
|
+
})
|
|
373
|
+
},
|
|
349
374
|
/*
|
|
350
375
|
initAdjustables () {
|
|
351
376
|
let filter = this.$login.f.orgid
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div id="unit" class="flex-row" :class="{'binary':areaShow == 0}">
|
|
3
|
+
<div :class="{'basic-main':areaShow == 0,'binary-left':areaShow != 0}">
|
|
4
|
+
<area-list @child-dblclick="selected" v-ref:arealist :style="style" :f_filialeids.sync="f_filialeids"></area-list>
|
|
5
|
+
</div>
|
|
6
|
+
<div v-show="areaShow == 1" style="width: 60%" class="binary-right">
|
|
7
|
+
<div class="flex">
|
|
8
|
+
<add-area-msg v-ref:addareamsg :areatype="areatype" :operation="operation"
|
|
9
|
+
:f_filialeids.sync="f_filialeids" :row="arearow"></add-area-msg>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
<div v-show="areaShow == 2" style="width: 60%" class="binary-right">
|
|
13
|
+
<div class="flex">
|
|
14
|
+
<area-user-list v-if="areaid" :areaid="areaid"></area-user-list>
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
18
|
+
</template>
|
|
19
|
+
|
|
20
|
+
<script>
|
|
21
|
+
export default {
|
|
22
|
+
title: '小区管理',
|
|
23
|
+
components: {},
|
|
24
|
+
data () {
|
|
25
|
+
return {
|
|
26
|
+
// 分公司id串
|
|
27
|
+
width: '100%',
|
|
28
|
+
f_filialeids: this.$login.f.f_orgids,
|
|
29
|
+
areaShow: 0,
|
|
30
|
+
areatype: '小区',
|
|
31
|
+
arearow: {},
|
|
32
|
+
style: 'col-sm-2 form-group',
|
|
33
|
+
areaid: null
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
ready () {
|
|
37
|
+
|
|
38
|
+
},
|
|
39
|
+
props: {},
|
|
40
|
+
methods: {
|
|
41
|
+
selected (obj) {
|
|
42
|
+
console.log('======', obj)
|
|
43
|
+
this.style = 'col-sm-3 form-group'
|
|
44
|
+
if (obj && obj.id) {
|
|
45
|
+
console.log('对比分公司', obj.f_filialeid, this.f_filialeids)
|
|
46
|
+
if (obj.f_filialeid != this.f_filialeids) {
|
|
47
|
+
this.refresh()
|
|
48
|
+
return
|
|
49
|
+
}
|
|
50
|
+
this.areaShow = 1
|
|
51
|
+
this.$refs.addareamsg.cleardara()
|
|
52
|
+
this.$refs.addareamsg.operation = 'modify'
|
|
53
|
+
this.$refs.addareamsg.areatype = '小区'
|
|
54
|
+
this.$refs.addareamsg.areamodel = Object.assign({}, obj)
|
|
55
|
+
if (obj.f_slice_area) {
|
|
56
|
+
this.$refs.addareamsg.areamodel.slice_area = [{
|
|
57
|
+
name: this.$refs.addareamsg.areamodel.f_slice_area,
|
|
58
|
+
code: this.$refs.addareamsg.areamodel.f_area_code
|
|
59
|
+
}]
|
|
60
|
+
}
|
|
61
|
+
if (obj.f_meter_book != null && obj.f_meter_book != '' && obj.f_meter_book instanceof Array) {
|
|
62
|
+
this.$refs.addareamsg.areamodel.f_meter_book = parseInt(obj.f_meter_book[0])
|
|
63
|
+
}
|
|
64
|
+
if (obj.f_meter_book != null && obj.f_meter_book != '' && !(obj.f_meter_book instanceof Array)) {
|
|
65
|
+
this.$refs.addareamsg.areamodel.f_meter_book = parseInt(obj.f_meter_book)
|
|
66
|
+
}
|
|
67
|
+
if (obj.f_adjustable_id != null && obj.f_adjustable_id != '' && obj.f_adjustable_id instanceof Array) {
|
|
68
|
+
this.$refs.addareamsg.areamodel.f_adjustable_id = parseInt(obj.f_adjustable_id[0])
|
|
69
|
+
}
|
|
70
|
+
if (obj.f_adjustable_id != null && obj.f_adjustable_id != '' && !(obj.f_adjustable_id instanceof Array)) {
|
|
71
|
+
this.$refs.addareamsg.areamodel.f_adjustable_id = parseInt(obj.f_adjustable_id)
|
|
72
|
+
}
|
|
73
|
+
// this.$refs.addareamsg.initdata(obj)
|
|
74
|
+
// this.$refs.addareamsg.initrow(obj)
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
refresh () {
|
|
78
|
+
this.areaShow = false
|
|
79
|
+
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
events: {
|
|
83
|
+
'shouAreaAllUser' (row) {
|
|
84
|
+
this.style = 'col-sm-3 form-group'
|
|
85
|
+
this.areaShow = 2
|
|
86
|
+
this.areaid = row.id
|
|
87
|
+
},
|
|
88
|
+
'add'(val) {
|
|
89
|
+
this.style = 'col-sm-3 form-group'
|
|
90
|
+
this.areaShow = 1
|
|
91
|
+
this.$refs.addareamsg.cleardara()
|
|
92
|
+
this.$refs.addareamsg.operation = 'add'
|
|
93
|
+
this.$refs.addareamsg.areatype = val
|
|
94
|
+
this.$refs.addareamsg.initdata()
|
|
95
|
+
},
|
|
96
|
+
'confirm'() {
|
|
97
|
+
this.style = 'col-sm-2 form-group'
|
|
98
|
+
this.areaShow = false
|
|
99
|
+
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
100
|
+
},
|
|
101
|
+
'cancel'() {
|
|
102
|
+
this.style = 'col-sm-2 form-group'
|
|
103
|
+
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
104
|
+
this.areaShow = 0
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
</script>
|
|
109
|
+
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex">
|
|
3
|
+
<criteria-paged :model="model" v-ref:paged>
|
|
4
|
+
<criteria partial='criteria' @condition-changed='$parent.selfSearch' v-ref:cri>
|
|
5
|
+
<div novalidate class="form-horizontal select-overspread container-fluid auto" partial>
|
|
6
|
+
<div class="row">
|
|
7
|
+
<div class="col-sm-4 form-group">
|
|
8
|
+
<label class="font_normal_body">客户编号</label>
|
|
9
|
+
<input type="text" class="input_search" style="width:60%" v-model="model.f_userinfo_code"
|
|
10
|
+
condition="f_userinfo_code = '{}'" placeholder="客户编号"/>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="col-sm-4 form-group">
|
|
13
|
+
<label class="font_normal_body">客户名称</label>
|
|
14
|
+
<input type="text" class="input_search" style="width:60%" v-model="model.f_user_name"
|
|
15
|
+
condition="f_user_name like '%{}%'" placeholder="客户名称"/>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="col-sm-4 form-group">
|
|
18
|
+
<label class="font_normal_body">楼栋</label>
|
|
19
|
+
<input type="text" class="input_search" style="width:60%" v-model="model.f_building"
|
|
20
|
+
condition="f_building = '{}'" placeholder="楼栋"/>
|
|
21
|
+
</div>
|
|
22
|
+
<div class="col-sm-4 form-group button-range">
|
|
23
|
+
<button class="button_search button_spacing" @click="search()">查询</button>
|
|
24
|
+
<button class="button_search button_spacing" v-if="$parent.$parent.permission"
|
|
25
|
+
@click="$parent.$parent.batchUpdateArea()">批量变更用户小区</button>
|
|
26
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.cancel()">返回</button>
|
|
27
|
+
</div>
|
|
28
|
+
</div>
|
|
29
|
+
</div>
|
|
30
|
+
</criteria>
|
|
31
|
+
<data-grid :model="model" partial='list' style="overflow: auto" :optional="true" class="list_area table_sy"
|
|
32
|
+
v-ref:grid>
|
|
33
|
+
<template partial='head'>
|
|
34
|
+
<th>
|
|
35
|
+
<nobr>客户编号</nobr>
|
|
36
|
+
</th>
|
|
37
|
+
<th>
|
|
38
|
+
<nobr>客户姓名</nobr>
|
|
39
|
+
</th>
|
|
40
|
+
<th>
|
|
41
|
+
<nobr>详细地址</nobr>
|
|
42
|
+
</th>
|
|
43
|
+
</template>
|
|
44
|
+
<template partial='body'>
|
|
45
|
+
<td style="text-align:center">
|
|
46
|
+
<nobr>{{ row.f_userinfo_code }}</nobr>
|
|
47
|
+
</td>
|
|
48
|
+
<td style="text-align:center">
|
|
49
|
+
<nobr>{{ row.f_user_name }}</nobr>
|
|
50
|
+
</td>
|
|
51
|
+
<td style="text-align:center">
|
|
52
|
+
<nobr>{{ row.f_address }}</nobr>
|
|
53
|
+
</td>
|
|
54
|
+
</template>
|
|
55
|
+
<template partial='foot'></template>
|
|
56
|
+
</data-grid>
|
|
57
|
+
</criteria-paged>
|
|
58
|
+
<modal :show.sync="batchUpdateAreaShow" v-ref:batchUpdateAreaShow
|
|
59
|
+
backdrop="false" class="batchUpdateAreaShow" @modal-close="batchUpdateAreaColse">
|
|
60
|
+
<header slot="modal-header" class="modal-header" style="text-align: center">
|
|
61
|
+
</header>
|
|
62
|
+
<article slot="modal-body" class="modal-body">
|
|
63
|
+
<div class="form-horizontal select-overspread container-fluid auto">
|
|
64
|
+
<validator name='v'>
|
|
65
|
+
<div class="col-sm-12 form-group" :class="[$v.f_area_id.required ? 'has-error' : 'has-success']">
|
|
66
|
+
<label class="font_normal_body col-sm-3">小区</label>
|
|
67
|
+
<input type="text" style="width:60%" class="input_search" v-show="false" v-model="updateModel.f_area_id"
|
|
68
|
+
v-validate:f_area_id='{required: true }'>
|
|
69
|
+
<v-select
|
|
70
|
+
:value.sync="updateModel.f_area_id" :value-single="true"
|
|
71
|
+
:options='areaslist' placeholder='请选择'
|
|
72
|
+
close-on-select search="true">
|
|
73
|
+
</v-select>
|
|
74
|
+
</div>
|
|
75
|
+
</validator>
|
|
76
|
+
</div>
|
|
77
|
+
</article>
|
|
78
|
+
<footer slot="modal-footer" class="modal-footer">
|
|
79
|
+
<div class="modal-footer">
|
|
80
|
+
<button type="button" class="btn btn-default" :disabled="!$v.valid"
|
|
81
|
+
@click='updateArea()'>确定
|
|
82
|
+
</button>
|
|
83
|
+
<button type="button" class="btn btn-default" @click='batchUpdateAreaColse'>取消</button>
|
|
84
|
+
</div>
|
|
85
|
+
</footer>
|
|
86
|
+
</modal>
|
|
87
|
+
</div>
|
|
88
|
+
</template>
|
|
89
|
+
|
|
90
|
+
<script>
|
|
91
|
+
import {PagedList, HttpResetClass} from 'vue-client'
|
|
92
|
+
|
|
93
|
+
export default {
|
|
94
|
+
data() {
|
|
95
|
+
return {
|
|
96
|
+
criteriaShow: false,
|
|
97
|
+
batchUpdateAreaShow: false,
|
|
98
|
+
batchRowList: [],
|
|
99
|
+
selectRowLen: 0,
|
|
100
|
+
updateModel: {
|
|
101
|
+
f_area_id: '',
|
|
102
|
+
f_area: ''
|
|
103
|
+
},
|
|
104
|
+
areaslist: [],
|
|
105
|
+
model: new PagedList('api/af-revenue/sql/address_singleTableOrderBy', 20, {
|
|
106
|
+
tablename: `'t_user_address ua left join t_userinfo ui on ua.f_userinfo_id = ui.f_userinfo_id'`,
|
|
107
|
+
items: `'f_userinfo_code,f_user_name,f_address,ua.id,f_building'`,
|
|
108
|
+
orderitem: `'f_address desc'`
|
|
109
|
+
})
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
title: '地址列表',
|
|
113
|
+
props: ['areaid'],
|
|
114
|
+
ready() {
|
|
115
|
+
this.search()
|
|
116
|
+
this.initareas()
|
|
117
|
+
},
|
|
118
|
+
methods: {
|
|
119
|
+
batchUpdateAreaColse () {
|
|
120
|
+
this.batchUpdateAreaShow = false
|
|
121
|
+
},
|
|
122
|
+
//初始化小区添加小区
|
|
123
|
+
async initareas(){
|
|
124
|
+
this.areaslist = []
|
|
125
|
+
let HttpReset = new HttpResetClass()
|
|
126
|
+
let req = await HttpReset.load('POST', 'api/af-revenue/sql/address_singleTableOrderBy?pageNo=1&pageSize=9999999', {
|
|
127
|
+
data: {
|
|
128
|
+
items: '*',
|
|
129
|
+
tablename: 't_area',
|
|
130
|
+
orderitem: 'id',
|
|
131
|
+
condition: '1=1'
|
|
132
|
+
}
|
|
133
|
+
}, {resolveMsg: null, rejectMsg: '获取小区失败!'})
|
|
134
|
+
let redata = []
|
|
135
|
+
req.data.forEach((row) => {
|
|
136
|
+
redata.push({
|
|
137
|
+
label: row.f_residential_area,
|
|
138
|
+
value: row.id,
|
|
139
|
+
data: row,
|
|
140
|
+
id: row.id
|
|
141
|
+
})
|
|
142
|
+
})
|
|
143
|
+
this.areaslist=redata
|
|
144
|
+
},
|
|
145
|
+
//根据名字找数据
|
|
146
|
+
findbyid(list,name){
|
|
147
|
+
var result
|
|
148
|
+
list.forEach((row, n) => {
|
|
149
|
+
if(name==row.id){
|
|
150
|
+
result= row.data
|
|
151
|
+
}
|
|
152
|
+
})
|
|
153
|
+
return result
|
|
154
|
+
},
|
|
155
|
+
batchUpdateArea() {
|
|
156
|
+
if (this.$refs.paged.$refs.grid.getRowData().length > 0) {
|
|
157
|
+
this.batchRowList = this.$refs.paged.$refs.grid.getRowData()
|
|
158
|
+
this.selectRowLen = this.batchRowList.length
|
|
159
|
+
this.batchUpdateAreaShow = true
|
|
160
|
+
} else {
|
|
161
|
+
this.$showAlert('请至少选择一项!', 'warning', 2000)
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
hidden() {
|
|
165
|
+
this.criteriaShow = !this.criteriaShow
|
|
166
|
+
},
|
|
167
|
+
cancel() {
|
|
168
|
+
this.$dispatch('cancel')
|
|
169
|
+
},
|
|
170
|
+
updateArea() {
|
|
171
|
+
let msg = {
|
|
172
|
+
resolveMsg: '批量修改用户小区成功!!!',
|
|
173
|
+
rejectMsg: '批量修改用户小区失败!!!'
|
|
174
|
+
}
|
|
175
|
+
let old_area = this.findbyid(this.areaslist,this.areaid).f_residential_area
|
|
176
|
+
this.updateModel.f_area = this.findbyid(this.areaslist,this.updateModel.f_area_id).f_residential_area
|
|
177
|
+
if (this.areaid == this.updateModel.f_area_id) {
|
|
178
|
+
this.$showAlert('您选择的小区与所勾选用户小区一致,请重新选择!!!', 'warning', 3000)
|
|
179
|
+
}else {
|
|
180
|
+
this.$showMessage(`您确定要将选中的${this.selectRowLen}位用户由${old_area}小区变更到${this.updateModel.f_area}小区吗?`, ['confirm', 'cancel']).then(async (res) => {
|
|
181
|
+
if (res === 'confirm') {
|
|
182
|
+
console.log('所选中的用户信息:=======' + JSON.stringify(this.batchRowList))
|
|
183
|
+
let data = {
|
|
184
|
+
selectRow: this.batchRowList,
|
|
185
|
+
f_operator: this.$login.f.name,
|
|
186
|
+
f_operatorid: this.$login.f.id,
|
|
187
|
+
f_orgid: this.$login.f.orgid,
|
|
188
|
+
f_orgname: this.$login.f.orgs,
|
|
189
|
+
f_depid: this.$login.f.depids,
|
|
190
|
+
f_depname: this.$login.f.deps,
|
|
191
|
+
model: this.updateModel
|
|
192
|
+
}
|
|
193
|
+
this.batchUpdateAreaShow = false
|
|
194
|
+
await this.$resetpost('api/af-revenue/logic/address_batchUpdateUserArea', {data: data}, msg)
|
|
195
|
+
this.$refs.paged.$refs.grid.selectInit()
|
|
196
|
+
this.search()
|
|
197
|
+
}
|
|
198
|
+
})
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
search() {
|
|
202
|
+
this.$refs.paged.$refs.cri.search()
|
|
203
|
+
},
|
|
204
|
+
selfSearch(args) {
|
|
205
|
+
args.condition = args.condition + `and f_residential_area_id = '${this.areaid}'`
|
|
206
|
+
this.model.search(args.condition, args.model)
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
events: {},
|
|
210
|
+
computed: {
|
|
211
|
+
permission () {
|
|
212
|
+
if (this.$login.r.find(value => value == '批量变更用户小区')) {
|
|
213
|
+
return true
|
|
214
|
+
}
|
|
215
|
+
return false
|
|
216
|
+
},
|
|
217
|
+
},
|
|
218
|
+
watch: {
|
|
219
|
+
'areaid'(val) {
|
|
220
|
+
if (val) {
|
|
221
|
+
this.search()
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
</script>
|