address-client 3.2.9 → 3.2.10
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/3.5/file-changes/last-build.bin +0 -0
- package/.gradle/3.5/taskHistory/taskHistory.lock +0 -0
- package/.gradle/buildOutputCleanup/built.bin +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/.gradle/buildOutputCleanup/cache.properties.lock +1 -0
- package/AddressClient.iml +13 -0
- package/build/dev-server.js +125 -126
- package/package.json +1 -1
- package/src/address.js +57 -57
- package/src/components/AddAreaMsg.vue +743 -743
- package/src/components/AddressModel.vue +95 -95
- package/src/components/AreaManage.vue +100 -100
- package/src/components/BuildingList.vue +129 -129
- package/src/components/CityList.vue +133 -133
- package/src/components/StreetList.vue +37 -7
- package/src/filiale/WEINAN/AddAreaMsg.vue +656 -656
- package/src/filiale/WEINAN/AreaList.vue +2 -2
- package/src/filiale/gongyi/AddAreaMsg.vue +651 -651
- package/src/filiale/qianneng/AreaList.vue +431 -431
- package/src/filiale/qianneng/CityManage.vue +81 -0
- package/src/filiale/qianneng/UserAddress.vue +970 -932
- package/src/filiale/qianneng/sale.js +14 -12
- package/src/filiale/rongcheng/AddressList.vue +363 -363
- package/src/filiale/tongchuan/AreaList.vue +315 -315
- package/src/filiale/tongchuan/CityList.vue +133 -133
- package/src/filiale/tongchuan/StreetList.vue +208 -208
- package/src/filiale/tongchuan/sale.js +19 -19
- package/src/main.js +21 -21
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<modal :show.sync="isshow" :width='width' v-ref:modal backdrop="false">
|
|
3
|
-
<header slot="modal-header" class="modal-header">
|
|
4
|
-
<button type="button" class="close" @click="closeTree"><span>×</span></button>
|
|
5
|
-
<h4 class="modal-title">地址管理</h4>
|
|
6
|
-
</header>
|
|
7
|
-
<article slot="modal-body" class="modal-body">
|
|
8
|
-
<div class="from-group" style="height: 450px;overflow: auto;">
|
|
9
|
-
<address-tree :f_location="f_location" :isquery="isquery" :isinspect="true" :isbasch="isbasch" v-ref:addresstree></address-tree>
|
|
10
|
-
<!--<address-select v-if="isselect" :f_location="f_location" v-ref:addressSelect :show="showType" :value="value" @re-ref="selectclick"></address-select>-->
|
|
11
|
-
</div>
|
|
12
|
-
</article>
|
|
13
|
-
<footer slot="modal-footer">
|
|
14
|
-
<button type="button" class="btn btn-success" @click='confirm'>确认</button>
|
|
15
|
-
</footer>
|
|
16
|
-
</modal>
|
|
17
|
-
</template>
|
|
18
|
-
|
|
19
|
-
<script>
|
|
20
|
-
export default {
|
|
21
|
-
name: "AddressModel",
|
|
22
|
-
title: '地址管理弹窗',
|
|
23
|
-
props: {
|
|
24
|
-
// 地址查询方式
|
|
25
|
-
isquery: {
|
|
26
|
-
type: Boolean,
|
|
27
|
-
default: true,
|
|
28
|
-
},
|
|
29
|
-
//位置信息
|
|
30
|
-
f_location: {
|
|
31
|
-
type: Object,
|
|
32
|
-
default: {
|
|
33
|
-
f_locationId: '1535',
|
|
34
|
-
f_locationType: 't_organization',
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
//是否显示
|
|
38
|
-
isshow: {
|
|
39
|
-
type: Boolean,
|
|
40
|
-
default : false,
|
|
41
|
-
},
|
|
42
|
-
// 是否选中
|
|
43
|
-
isselect: {
|
|
44
|
-
type: Boolean,
|
|
45
|
-
default: false,
|
|
46
|
-
},
|
|
47
|
-
// 默认显示地址
|
|
48
|
-
value:{
|
|
49
|
-
type: Object
|
|
50
|
-
},
|
|
51
|
-
// 下拉选择 || 树选择
|
|
52
|
-
showType: {
|
|
53
|
-
type: Boolean,
|
|
54
|
-
default: false
|
|
55
|
-
},
|
|
56
|
-
// 是否显示批量添加
|
|
57
|
-
isbasch: {
|
|
58
|
-
type: Boolean,
|
|
59
|
-
default: true,
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
data(){
|
|
63
|
-
return{
|
|
64
|
-
width: '90%'
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
methods:{
|
|
68
|
-
confirm(){
|
|
69
|
-
this.$emit('addressno')
|
|
70
|
-
},
|
|
71
|
-
// 关闭 弹窗
|
|
72
|
-
closeTree() {
|
|
73
|
-
this.isshow = false
|
|
74
|
-
this.$emit('addressno')
|
|
75
|
-
}
|
|
76
|
-
// 选中
|
|
77
|
-
// selectclick(newobj, address) {
|
|
78
|
-
// this.$emit('re-ref', newobj, address)
|
|
79
|
-
// }
|
|
80
|
-
},
|
|
81
|
-
watch:{
|
|
82
|
-
//显示改变且为true
|
|
83
|
-
'isshow'(val){
|
|
84
|
-
if(val){
|
|
85
|
-
//刷新数据
|
|
86
|
-
this.$refs.addresstree.init()
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
</script>
|
|
92
|
-
|
|
93
|
-
<style scoped>
|
|
94
|
-
|
|
95
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<modal :show.sync="isshow" :width='width' v-ref:modal backdrop="false">
|
|
3
|
+
<header slot="modal-header" class="modal-header">
|
|
4
|
+
<button type="button" class="close" @click="closeTree"><span>×</span></button>
|
|
5
|
+
<h4 class="modal-title">地址管理</h4>
|
|
6
|
+
</header>
|
|
7
|
+
<article slot="modal-body" class="modal-body">
|
|
8
|
+
<div class="from-group" style="height: 450px;overflow: auto;">
|
|
9
|
+
<address-tree :f_location="f_location" :isquery="isquery" :isinspect="true" :isbasch="isbasch" v-ref:addresstree></address-tree>
|
|
10
|
+
<!--<address-select v-if="isselect" :f_location="f_location" v-ref:addressSelect :show="showType" :value="value" @re-ref="selectclick"></address-select>-->
|
|
11
|
+
</div>
|
|
12
|
+
</article>
|
|
13
|
+
<footer slot="modal-footer">
|
|
14
|
+
<button type="button" class="btn btn-success" @click='confirm'>确认</button>
|
|
15
|
+
</footer>
|
|
16
|
+
</modal>
|
|
17
|
+
</template>
|
|
18
|
+
|
|
19
|
+
<script>
|
|
20
|
+
export default {
|
|
21
|
+
name: "AddressModel",
|
|
22
|
+
title: '地址管理弹窗',
|
|
23
|
+
props: {
|
|
24
|
+
// 地址查询方式
|
|
25
|
+
isquery: {
|
|
26
|
+
type: Boolean,
|
|
27
|
+
default: true,
|
|
28
|
+
},
|
|
29
|
+
//位置信息
|
|
30
|
+
f_location: {
|
|
31
|
+
type: Object,
|
|
32
|
+
default: {
|
|
33
|
+
f_locationId: '1535',
|
|
34
|
+
f_locationType: 't_organization',
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
//是否显示
|
|
38
|
+
isshow: {
|
|
39
|
+
type: Boolean,
|
|
40
|
+
default : false,
|
|
41
|
+
},
|
|
42
|
+
// 是否选中
|
|
43
|
+
isselect: {
|
|
44
|
+
type: Boolean,
|
|
45
|
+
default: false,
|
|
46
|
+
},
|
|
47
|
+
// 默认显示地址
|
|
48
|
+
value:{
|
|
49
|
+
type: Object
|
|
50
|
+
},
|
|
51
|
+
// 下拉选择 || 树选择
|
|
52
|
+
showType: {
|
|
53
|
+
type: Boolean,
|
|
54
|
+
default: false
|
|
55
|
+
},
|
|
56
|
+
// 是否显示批量添加
|
|
57
|
+
isbasch: {
|
|
58
|
+
type: Boolean,
|
|
59
|
+
default: true,
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
data(){
|
|
63
|
+
return{
|
|
64
|
+
width: '90%'
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
methods:{
|
|
68
|
+
confirm(){
|
|
69
|
+
this.$emit('addressno')
|
|
70
|
+
},
|
|
71
|
+
// 关闭 弹窗
|
|
72
|
+
closeTree() {
|
|
73
|
+
this.isshow = false
|
|
74
|
+
this.$emit('addressno')
|
|
75
|
+
}
|
|
76
|
+
// 选中
|
|
77
|
+
// selectclick(newobj, address) {
|
|
78
|
+
// this.$emit('re-ref', newobj, address)
|
|
79
|
+
// }
|
|
80
|
+
},
|
|
81
|
+
watch:{
|
|
82
|
+
//显示改变且为true
|
|
83
|
+
'isshow'(val){
|
|
84
|
+
if(val){
|
|
85
|
+
//刷新数据
|
|
86
|
+
this.$refs.addresstree.init()
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
</script>
|
|
92
|
+
|
|
93
|
+
<style scoped>
|
|
94
|
+
|
|
95
|
+
</style>
|
|
@@ -1,100 +1,100 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div id="unit" class="flex-row" :class="{'binary':areaShow}">
|
|
3
|
-
<div :class="{'basic-main':!areaShow,'binary-left':areaShow}">
|
|
4
|
-
<area-list @select-changed="selected" v-ref:arealist :style="style" :f_filialeids.sync="f_filialeids"></area-list>
|
|
5
|
-
</div>
|
|
6
|
-
<div v-show="areaShow" 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>
|
|
13
|
-
</template>
|
|
14
|
-
|
|
15
|
-
<script>
|
|
16
|
-
export default {
|
|
17
|
-
title: '小区管理',
|
|
18
|
-
components:{
|
|
19
|
-
},
|
|
20
|
-
data () {
|
|
21
|
-
return {
|
|
22
|
-
//分公司id串
|
|
23
|
-
width:'100%',
|
|
24
|
-
f_filialeids: this.$login.f.f_orgids,
|
|
25
|
-
areaShow:false,
|
|
26
|
-
areatype:'小区',
|
|
27
|
-
arearow:{},
|
|
28
|
-
style:'col-sm-2 form-group'
|
|
29
|
-
}
|
|
30
|
-
},
|
|
31
|
-
ready(){
|
|
32
|
-
|
|
33
|
-
},
|
|
34
|
-
props:{
|
|
35
|
-
|
|
36
|
-
},
|
|
37
|
-
methods:{
|
|
38
|
-
selected(obj){
|
|
39
|
-
this.style='col-sm-3 form-group'
|
|
40
|
-
if(obj.val&&obj.val.id){
|
|
41
|
-
console.log('对比分公司', obj.val.f_filialeid, this.f_filialeids)
|
|
42
|
-
if (obj.val.f_filialeid != this.f_filialeids) {
|
|
43
|
-
this.refresh()
|
|
44
|
-
return
|
|
45
|
-
}
|
|
46
|
-
this.areaShow = true
|
|
47
|
-
this.$refs.addareamsg.cleardara()
|
|
48
|
-
this.$refs.addareamsg.operation='modify'
|
|
49
|
-
this.$refs.addareamsg.areatype='小区'
|
|
50
|
-
this.$refs.addareamsg.areamodel=Object.assign({},obj.val)
|
|
51
|
-
if (obj.val.f_slice_area) {
|
|
52
|
-
this.$refs.addareamsg.areamodel.slice_area = [{
|
|
53
|
-
name: this.$refs.addareamsg.areamodel.f_slice_area,
|
|
54
|
-
code: this.$refs.addareamsg.areamodel.f_area_code
|
|
55
|
-
}]
|
|
56
|
-
}
|
|
57
|
-
if (obj.val.f_meter_book != null && obj.val.f_meter_book != '' && obj.val.f_meter_book instanceof Array) {
|
|
58
|
-
this.$refs.addareamsg.areamodel.f_meter_book = parseInt(obj.val.f_meter_book[0])
|
|
59
|
-
}
|
|
60
|
-
if (obj.val.f_meter_book != null && obj.val.f_meter_book != '' && !(obj.val.f_meter_book instanceof Array)) {
|
|
61
|
-
this.$refs.addareamsg.areamodel.f_meter_book = parseInt(obj.val.f_meter_book)
|
|
62
|
-
}
|
|
63
|
-
if (obj.val.f_adjustable_id != null && obj.val.f_adjustable_id != '' && obj.val.f_adjustable_id instanceof Array) {
|
|
64
|
-
this.$refs.addareamsg.areamodel.f_adjustable_id = parseInt(obj.val.f_adjustable_id[0])
|
|
65
|
-
}
|
|
66
|
-
if (obj.val.f_adjustable_id != null && obj.val.f_adjustable_id != '' && !(obj.val.f_adjustable_id instanceof Array)) {
|
|
67
|
-
this.$refs.addareamsg.areamodel.f_adjustable_id = parseInt(obj.val.f_adjustable_id)
|
|
68
|
-
}
|
|
69
|
-
// this.$refs.addareamsg.initdata(obj.val)
|
|
70
|
-
// this.$refs.addareamsg.initrow(obj.val)
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
refresh() {
|
|
74
|
-
this.areaShow = false
|
|
75
|
-
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
76
|
-
}
|
|
77
|
-
},
|
|
78
|
-
events:{
|
|
79
|
-
'add'(val){
|
|
80
|
-
this.style='col-sm-3 form-group'
|
|
81
|
-
this.areaShow=true
|
|
82
|
-
this.$refs.addareamsg.cleardara()
|
|
83
|
-
this.$refs.addareamsg.operation='add'
|
|
84
|
-
this.$refs.addareamsg.areatype=val
|
|
85
|
-
this.$refs.addareamsg.initdata()
|
|
86
|
-
},
|
|
87
|
-
'confirm' () {
|
|
88
|
-
this.style='col-sm-2 form-group'
|
|
89
|
-
this.areaShow = false
|
|
90
|
-
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
91
|
-
},
|
|
92
|
-
'cancel' () {
|
|
93
|
-
this.style='col-sm-2 form-group'
|
|
94
|
-
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
95
|
-
this.areaShow = false
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
</script>
|
|
100
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<div id="unit" class="flex-row" :class="{'binary':areaShow}">
|
|
3
|
+
<div :class="{'basic-main':!areaShow,'binary-left':areaShow}">
|
|
4
|
+
<area-list @select-changed="selected" v-ref:arealist :style="style" :f_filialeids.sync="f_filialeids"></area-list>
|
|
5
|
+
</div>
|
|
6
|
+
<div v-show="areaShow" 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>
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<script>
|
|
16
|
+
export default {
|
|
17
|
+
title: '小区管理',
|
|
18
|
+
components:{
|
|
19
|
+
},
|
|
20
|
+
data () {
|
|
21
|
+
return {
|
|
22
|
+
//分公司id串
|
|
23
|
+
width:'100%',
|
|
24
|
+
f_filialeids: this.$login.f.f_orgids,
|
|
25
|
+
areaShow:false,
|
|
26
|
+
areatype:'小区',
|
|
27
|
+
arearow:{},
|
|
28
|
+
style:'col-sm-2 form-group'
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
ready(){
|
|
32
|
+
|
|
33
|
+
},
|
|
34
|
+
props:{
|
|
35
|
+
|
|
36
|
+
},
|
|
37
|
+
methods:{
|
|
38
|
+
selected(obj){
|
|
39
|
+
this.style='col-sm-3 form-group'
|
|
40
|
+
if(obj.val&&obj.val.id){
|
|
41
|
+
console.log('对比分公司', obj.val.f_filialeid, this.f_filialeids)
|
|
42
|
+
if (obj.val.f_filialeid != this.f_filialeids) {
|
|
43
|
+
this.refresh()
|
|
44
|
+
return
|
|
45
|
+
}
|
|
46
|
+
this.areaShow = true
|
|
47
|
+
this.$refs.addareamsg.cleardara()
|
|
48
|
+
this.$refs.addareamsg.operation='modify'
|
|
49
|
+
this.$refs.addareamsg.areatype='小区'
|
|
50
|
+
this.$refs.addareamsg.areamodel=Object.assign({},obj.val)
|
|
51
|
+
if (obj.val.f_slice_area) {
|
|
52
|
+
this.$refs.addareamsg.areamodel.slice_area = [{
|
|
53
|
+
name: this.$refs.addareamsg.areamodel.f_slice_area,
|
|
54
|
+
code: this.$refs.addareamsg.areamodel.f_area_code
|
|
55
|
+
}]
|
|
56
|
+
}
|
|
57
|
+
if (obj.val.f_meter_book != null && obj.val.f_meter_book != '' && obj.val.f_meter_book instanceof Array) {
|
|
58
|
+
this.$refs.addareamsg.areamodel.f_meter_book = parseInt(obj.val.f_meter_book[0])
|
|
59
|
+
}
|
|
60
|
+
if (obj.val.f_meter_book != null && obj.val.f_meter_book != '' && !(obj.val.f_meter_book instanceof Array)) {
|
|
61
|
+
this.$refs.addareamsg.areamodel.f_meter_book = parseInt(obj.val.f_meter_book)
|
|
62
|
+
}
|
|
63
|
+
if (obj.val.f_adjustable_id != null && obj.val.f_adjustable_id != '' && obj.val.f_adjustable_id instanceof Array) {
|
|
64
|
+
this.$refs.addareamsg.areamodel.f_adjustable_id = parseInt(obj.val.f_adjustable_id[0])
|
|
65
|
+
}
|
|
66
|
+
if (obj.val.f_adjustable_id != null && obj.val.f_adjustable_id != '' && !(obj.val.f_adjustable_id instanceof Array)) {
|
|
67
|
+
this.$refs.addareamsg.areamodel.f_adjustable_id = parseInt(obj.val.f_adjustable_id)
|
|
68
|
+
}
|
|
69
|
+
// this.$refs.addareamsg.initdata(obj.val)
|
|
70
|
+
// this.$refs.addareamsg.initrow(obj.val)
|
|
71
|
+
}
|
|
72
|
+
},
|
|
73
|
+
refresh() {
|
|
74
|
+
this.areaShow = false
|
|
75
|
+
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
events:{
|
|
79
|
+
'add'(val){
|
|
80
|
+
this.style='col-sm-3 form-group'
|
|
81
|
+
this.areaShow=true
|
|
82
|
+
this.$refs.addareamsg.cleardara()
|
|
83
|
+
this.$refs.addareamsg.operation='add'
|
|
84
|
+
this.$refs.addareamsg.areatype=val
|
|
85
|
+
this.$refs.addareamsg.initdata()
|
|
86
|
+
},
|
|
87
|
+
'confirm' () {
|
|
88
|
+
this.style='col-sm-2 form-group'
|
|
89
|
+
this.areaShow = false
|
|
90
|
+
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
91
|
+
},
|
|
92
|
+
'cancel' () {
|
|
93
|
+
this.style='col-sm-2 form-group'
|
|
94
|
+
this.$refs.arealist.$refs.paged.$refs.cri.search()
|
|
95
|
+
this.areaShow = false
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
</script>
|
|
100
|
+
|
|
@@ -1,129 +1,129 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex" @keyup.enter="search">
|
|
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
|
-
<v-select :value.sync="model.f_residential_area_id"
|
|
10
|
-
class="select_list select"
|
|
11
|
-
v-model="model.f_residential_area_id"
|
|
12
|
-
style="width: 60%"
|
|
13
|
-
multiple
|
|
14
|
-
condition="f_residential_area_id in {}"
|
|
15
|
-
:options='$parent.$parent.areaslist' placeholder='选择小区'
|
|
16
|
-
close-on-select>
|
|
17
|
-
</v-select>
|
|
18
|
-
</div>
|
|
19
|
-
<div class="col-sm-4 form-group">
|
|
20
|
-
<label class="font_normal_body">楼栋</label>
|
|
21
|
-
<input style="width:60%" type="text" class="input_search" v-model="model.f_province" condition="f_building like '%{}%'" placeholder="楼栋"/>
|
|
22
|
-
</div>
|
|
23
|
-
<div class="col-sm-4 form-group button-range">
|
|
24
|
-
<button class="button_search button_spacing" @click="search()" >查询</button>
|
|
25
|
-
</div>
|
|
26
|
-
</div>
|
|
27
|
-
</div>
|
|
28
|
-
</criteria>
|
|
29
|
-
<data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
|
|
30
|
-
<template partial='head'>
|
|
31
|
-
<tr>
|
|
32
|
-
<th><nobr>序号</nobr></th>
|
|
33
|
-
<th><nobr>小区</nobr></th>
|
|
34
|
-
<th><nobr>楼栋</nobr></th>
|
|
35
|
-
<th title="该楼栋下现有的地址数"><nobr>地址数量</nobr></th>
|
|
36
|
-
<th><nobr>操作</nobr></th>
|
|
37
|
-
</tr>
|
|
38
|
-
</template>
|
|
39
|
-
<template partial='body'>
|
|
40
|
-
<tr @click="$parent.$parent.changestyle()">
|
|
41
|
-
<td style="text-align:center"><nobr>{{$index + 1}}</nobr></td>
|
|
42
|
-
<td style="text-align:center"><nobr>{{row.f_residential_area}}</nobr></td>
|
|
43
|
-
<td style="text-align:center"><nobr>{{row.f_building}}</nobr></td>
|
|
44
|
-
<td style="text-align:center"><nobr>{{row.addresnum}}</nobr></td>
|
|
45
|
-
<td style="text-align:center"><nobr>
|
|
46
|
-
<button v-if="row.addresnum === 0" type="button" name="button" class="btn btn-danger"
|
|
47
|
-
style="padding: 5px 12px"
|
|
48
|
-
@click.stop="$parent.$parent.$parent.delete(row)">删除</button>
|
|
49
|
-
</nobr></td>
|
|
50
|
-
</tr>
|
|
51
|
-
</template>
|
|
52
|
-
<template partial='foot'></template>
|
|
53
|
-
</data-grid>
|
|
54
|
-
</criteria-paged>
|
|
55
|
-
</div>
|
|
56
|
-
</template>
|
|
57
|
-
|
|
58
|
-
<script>
|
|
59
|
-
import { PagedList } from 'vue-client'
|
|
60
|
-
let readyGen = async function (self) {
|
|
61
|
-
self.getfield = self.config.excelHeaders
|
|
62
|
-
}
|
|
63
|
-
export default {
|
|
64
|
-
data () {
|
|
65
|
-
return {
|
|
66
|
-
model: new PagedList('rs/sql/address_getbuildinglist',20),
|
|
67
|
-
addflag: false,
|
|
68
|
-
getfield: {},
|
|
69
|
-
f_orgid: ''
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
props:{
|
|
73
|
-
areaslist: {
|
|
74
|
-
type: Array
|
|
75
|
-
},
|
|
76
|
-
f_filialeids:{
|
|
77
|
-
type: String
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
|
-
ready(){
|
|
81
|
-
readyGen(this)
|
|
82
|
-
this.search()
|
|
83
|
-
},
|
|
84
|
-
methods: {
|
|
85
|
-
search () {
|
|
86
|
-
this.$refs.paged.$refs.cri.search()
|
|
87
|
-
},
|
|
88
|
-
async delete(row){
|
|
89
|
-
if(row.id >= 0 ){
|
|
90
|
-
let useraredss = await this.$resetpost('rs/logic/address_deletebuilding', {id: row.id}, {resolveMsg: '删除成功', rejectMsg: null})
|
|
91
|
-
this.search()
|
|
92
|
-
}
|
|
93
|
-
},
|
|
94
|
-
add(val){
|
|
95
|
-
if (this.f_filialeids) {
|
|
96
|
-
this.$refs.paged.$refs.grid.selectStore.selected = null
|
|
97
|
-
this.$dispatch('add',val)
|
|
98
|
-
} else {
|
|
99
|
-
this.$showAlert('请先选择左上角的所在分公司', 'warning', 2000)
|
|
100
|
-
}
|
|
101
|
-
},
|
|
102
|
-
modify(val){
|
|
103
|
-
this.$refs.paged.$refs.grid.selectStore.selected = null
|
|
104
|
-
this.$dispatch('modify',val)
|
|
105
|
-
},
|
|
106
|
-
selfSearch (args) {
|
|
107
|
-
if (!this.f_orgid) {
|
|
108
|
-
this.getorg([this.$login.f.orgid])
|
|
109
|
-
}
|
|
110
|
-
args.condition = `${args.condition} and f_filialeid in ${this.f_orgid}`
|
|
111
|
-
this.model.search(args.condition, args.model)
|
|
112
|
-
},
|
|
113
|
-
//清空
|
|
114
|
-
clear(){
|
|
115
|
-
this.$refs.paged.$refs.cri.model = {}
|
|
116
|
-
},
|
|
117
|
-
getorg (val) {
|
|
118
|
-
this.f_orgid = this.$login.convertToIn(val)
|
|
119
|
-
this.f_filialeids = val[0]
|
|
120
|
-
}
|
|
121
|
-
},
|
|
122
|
-
computed: {
|
|
123
|
-
getCondition() {
|
|
124
|
-
return {
|
|
125
|
-
condition: `${this.$refs.paged.$refs.cri.condition}` + `and p.f_filialeid = '${this.f_filialeids}'`}
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex" @keyup.enter="search">
|
|
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
|
+
<v-select :value.sync="model.f_residential_area_id"
|
|
10
|
+
class="select_list select"
|
|
11
|
+
v-model="model.f_residential_area_id"
|
|
12
|
+
style="width: 60%"
|
|
13
|
+
multiple
|
|
14
|
+
condition="f_residential_area_id in {}"
|
|
15
|
+
:options='$parent.$parent.areaslist' placeholder='选择小区'
|
|
16
|
+
close-on-select>
|
|
17
|
+
</v-select>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="col-sm-4 form-group">
|
|
20
|
+
<label class="font_normal_body">楼栋</label>
|
|
21
|
+
<input style="width:60%" type="text" class="input_search" v-model="model.f_province" condition="f_building like '%{}%'" placeholder="楼栋"/>
|
|
22
|
+
</div>
|
|
23
|
+
<div class="col-sm-4 form-group button-range">
|
|
24
|
+
<button class="button_search button_spacing" @click="search()" >查询</button>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
</criteria>
|
|
29
|
+
<data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
|
|
30
|
+
<template partial='head'>
|
|
31
|
+
<tr>
|
|
32
|
+
<th><nobr>序号</nobr></th>
|
|
33
|
+
<th><nobr>小区</nobr></th>
|
|
34
|
+
<th><nobr>楼栋</nobr></th>
|
|
35
|
+
<th title="该楼栋下现有的地址数"><nobr>地址数量</nobr></th>
|
|
36
|
+
<th><nobr>操作</nobr></th>
|
|
37
|
+
</tr>
|
|
38
|
+
</template>
|
|
39
|
+
<template partial='body'>
|
|
40
|
+
<tr @click="$parent.$parent.changestyle()">
|
|
41
|
+
<td style="text-align:center"><nobr>{{$index + 1}}</nobr></td>
|
|
42
|
+
<td style="text-align:center"><nobr>{{row.f_residential_area}}</nobr></td>
|
|
43
|
+
<td style="text-align:center"><nobr>{{row.f_building}}</nobr></td>
|
|
44
|
+
<td style="text-align:center"><nobr>{{row.addresnum}}</nobr></td>
|
|
45
|
+
<td style="text-align:center"><nobr>
|
|
46
|
+
<button v-if="row.addresnum === 0" type="button" name="button" class="btn btn-danger"
|
|
47
|
+
style="padding: 5px 12px"
|
|
48
|
+
@click.stop="$parent.$parent.$parent.delete(row)">删除</button>
|
|
49
|
+
</nobr></td>
|
|
50
|
+
</tr>
|
|
51
|
+
</template>
|
|
52
|
+
<template partial='foot'></template>
|
|
53
|
+
</data-grid>
|
|
54
|
+
</criteria-paged>
|
|
55
|
+
</div>
|
|
56
|
+
</template>
|
|
57
|
+
|
|
58
|
+
<script>
|
|
59
|
+
import { PagedList } from 'vue-client'
|
|
60
|
+
let readyGen = async function (self) {
|
|
61
|
+
self.getfield = self.config.excelHeaders
|
|
62
|
+
}
|
|
63
|
+
export default {
|
|
64
|
+
data () {
|
|
65
|
+
return {
|
|
66
|
+
model: new PagedList('rs/sql/address_getbuildinglist',20),
|
|
67
|
+
addflag: false,
|
|
68
|
+
getfield: {},
|
|
69
|
+
f_orgid: ''
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
props:{
|
|
73
|
+
areaslist: {
|
|
74
|
+
type: Array
|
|
75
|
+
},
|
|
76
|
+
f_filialeids:{
|
|
77
|
+
type: String
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
ready(){
|
|
81
|
+
readyGen(this)
|
|
82
|
+
this.search()
|
|
83
|
+
},
|
|
84
|
+
methods: {
|
|
85
|
+
search () {
|
|
86
|
+
this.$refs.paged.$refs.cri.search()
|
|
87
|
+
},
|
|
88
|
+
async delete(row){
|
|
89
|
+
if(row.id >= 0 ){
|
|
90
|
+
let useraredss = await this.$resetpost('rs/logic/address_deletebuilding', {id: row.id}, {resolveMsg: '删除成功', rejectMsg: null})
|
|
91
|
+
this.search()
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
add(val){
|
|
95
|
+
if (this.f_filialeids) {
|
|
96
|
+
this.$refs.paged.$refs.grid.selectStore.selected = null
|
|
97
|
+
this.$dispatch('add',val)
|
|
98
|
+
} else {
|
|
99
|
+
this.$showAlert('请先选择左上角的所在分公司', 'warning', 2000)
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
modify(val){
|
|
103
|
+
this.$refs.paged.$refs.grid.selectStore.selected = null
|
|
104
|
+
this.$dispatch('modify',val)
|
|
105
|
+
},
|
|
106
|
+
selfSearch (args) {
|
|
107
|
+
if (!this.f_orgid) {
|
|
108
|
+
this.getorg([this.$login.f.orgid])
|
|
109
|
+
}
|
|
110
|
+
args.condition = `${args.condition} and f_filialeid in ${this.f_orgid}`
|
|
111
|
+
this.model.search(args.condition, args.model)
|
|
112
|
+
},
|
|
113
|
+
//清空
|
|
114
|
+
clear(){
|
|
115
|
+
this.$refs.paged.$refs.cri.model = {}
|
|
116
|
+
},
|
|
117
|
+
getorg (val) {
|
|
118
|
+
this.f_orgid = this.$login.convertToIn(val)
|
|
119
|
+
this.f_filialeids = val[0]
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
computed: {
|
|
123
|
+
getCondition() {
|
|
124
|
+
return {
|
|
125
|
+
condition: `${this.$refs.paged.$refs.cri.condition}` + `and p.f_filialeid = '${this.f_filialeids}'`}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
</script>
|