address-client 3.2.19 → 3.2.22
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 → 4.4/fileChanges}/last-build.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.lock +0 -0
- package/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/package.json +1 -1
- package/src/components/AddAreaMsg.vue +2 -2
- package/src/components/AreaList.vue +435 -430
- package/src/components/CityList.vue +133 -133
- package/src/components/CityManage.vue +76 -76
- package/src/filiale/WEINAN/AddAreaMsg.vue +656 -656
- package/src/filiale/WEINAN/AreaList.vue +390 -390
- package/src/filiale/macheng/AreaList.vue +279 -279
- package/src/filiale/qianneng/AddAreaMsg.vue +743 -0
- package/src/filiale/qianneng/AddStreetOrPcd.vue +318 -0
- package/src/filiale/qianneng/AreaList.vue +9 -9
- package/src/filiale/qianneng/UserAddress.vue +9 -2
- package/src/filiale/qianneng/sale.js +5 -1
- package/src/filiale/shanggao/AddAreaMsg.vue +12 -6
- package/src/filiale/shanggao/AddStreetOrPcd.vue +312 -312
- package/src/filiale/shanggao/AddressList.vue +613 -0
- package/src/filiale/shanggao/AreaList.vue +436 -431
- package/src/filiale/shanggao/BuildingList.vue +129 -129
- package/src/filiale/shanggao/StreetList.vue +240 -240
- package/src/filiale/shanggao/UserAddress.vue +953 -929
- package/src/filiale/shanggao/sale.js +1 -0
- 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 +22 -21
- package/.gradle/3.5/taskHistory/taskHistory.lock +0 -0
- package/.gradle/buildOutputCleanup/built.bin +0 -0
- package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
- package/AddressClient.iml +0 -13
|
@@ -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>
|