address-client 3.2.92 → 3.2.93
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 +174 -174
- package/package.json +100 -100
- package/src/address.js +74 -74
- package/src/components/AddCommunityManageMsg.vue +220 -215
- package/src/components/AddStreetOrPcd.vue +320 -320
- package/src/components/CommunityAreaList.vue +87 -87
- package/src/components/CommunityManage.vue +78 -78
- package/src/components/CommunityManageList.vue +244 -244
- package/src/components/StreetList.vue +240 -240
- package/src/filiale/tongchuan/AddStreetOrPcd.vue +351 -351
- package/src/filiale/tongchuan/StreetList.vue +215 -215
- package/src/filiale/xinkang/AddAreaMsg.vue +780 -780
- package/src/filiale/xinkang/AreaList.vue +413 -413
- package/src/filiale/xinkang/sale.js +9 -9
- package/src/main.js +22 -22
|
@@ -1,244 +1,244 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="flex" @keyup.enter="search">
|
|
3
|
-
<criteria-paged :model="model" v-ref:paged @dblclick="handDblclick">
|
|
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="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">
|
|
8
|
-
<label class="font_normal_body">组织机构</label>
|
|
9
|
-
<res-select restype='organization'
|
|
10
|
-
@res-select="$parent.$parent.getorg"
|
|
11
|
-
:initresid='$parent.$parent.curorgid'>
|
|
12
|
-
</res-select>
|
|
13
|
-
</div>
|
|
14
|
-
<div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">
|
|
15
|
-
<label class="font_normal_body">社区名称</label>
|
|
16
|
-
<input type="text" class="input_search" style="width:60%" v-model="model.f_community_name"
|
|
17
|
-
condition="f_community_name like '%{}%'" placeholder="社区名称"/>
|
|
18
|
-
</div>
|
|
19
|
-
<div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">
|
|
20
|
-
<label class="font_normal_body">街道/区县</label>
|
|
21
|
-
<input type="text" class="input_search" style="width:60%" v-model="model.f_street"
|
|
22
|
-
condition="f_street like '%{}%'" placeholder="街道/区县"/>
|
|
23
|
-
</div>
|
|
24
|
-
<div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">
|
|
25
|
-
<label class="font_normal_body">社区负责人</label>
|
|
26
|
-
<v-select :value.sync="model.f_community_director"
|
|
27
|
-
:value-single="true"
|
|
28
|
-
:options='directors'
|
|
29
|
-
placeholder='请选择'
|
|
30
|
-
condition="f_community_director = '{}'"
|
|
31
|
-
close-on-select
|
|
32
|
-
search="true">
|
|
33
|
-
</v-select>
|
|
34
|
-
</div>
|
|
35
|
-
<div class="col-sm-4 form-group button-range">
|
|
36
|
-
<button class="button_search button_spacing" @click="search()" >查询</button>
|
|
37
|
-
<button class="button_new button_spacing" style="width: max-content;" @click="$parent.$parent.add()">添加社区</button>
|
|
38
|
-
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
39
|
-
<export-excel :data="$parent.$parent.getCondition"
|
|
40
|
-
:field="$parent.$parent.getfield"
|
|
41
|
-
sqlurl="rs/logic/exportfile"
|
|
42
|
-
sql-name="manage_getCommunityManageList"
|
|
43
|
-
template-name='社区信息查询导出'
|
|
44
|
-
:choose-col="true"></export-excel>
|
|
45
|
-
<div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
|
|
46
|
-
</div>
|
|
47
|
-
</div>
|
|
48
|
-
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
49
|
-
<!-- <div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">-->
|
|
50
|
-
<!-- <label class="font_normal_body">省  份</label>-->
|
|
51
|
-
<!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_province"-->
|
|
52
|
-
<!-- condition="f_province like '%{}%'" placeholder="省份"-->
|
|
53
|
-
<!-- :size="model.f_province ? model.f_province.length*2 : 6"/>-->
|
|
54
|
-
<!-- </div>-->
|
|
55
|
-
<!-- <div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">-->
|
|
56
|
-
<!-- <label class="font_normal_body">城  市</label>-->
|
|
57
|
-
<!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_city"-->
|
|
58
|
-
<!-- condition="f_city like '%{}%'" placeholder="城市"-->
|
|
59
|
-
<!-- :size="model.f_city ? model.f_city.length*2 : 6"/>-->
|
|
60
|
-
<!-- </div>-->
|
|
61
|
-
<!-- <div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">-->
|
|
62
|
-
<!-- <label class="font_normal_body">区  县</label>-->
|
|
63
|
-
<!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_district"-->
|
|
64
|
-
<!-- condition="f_district like '%{}%'" placeholder="区县"-->
|
|
65
|
-
<!-- :size="model.f_district ? model.f_district.length*2 : 6"/>-->
|
|
66
|
-
<!-- </div>-->
|
|
67
|
-
</div>
|
|
68
|
-
</div>
|
|
69
|
-
</criteria>
|
|
70
|
-
<data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
|
|
71
|
-
<template partial='head'>
|
|
72
|
-
<tr>
|
|
73
|
-
<th><nobr>序号</nobr></th>
|
|
74
|
-
<th><nobr>街道/区县</nobr></th>
|
|
75
|
-
<th><nobr>社区名称</nobr></th>
|
|
76
|
-
<th><nobr>社区负责人</nobr></th>
|
|
77
|
-
<th><nobr>负责人电话</nobr></th>
|
|
78
|
-
<th><nobr>分公司</nobr></th>
|
|
79
|
-
<th title="改社区下现有的小区数量"><nobr>小区数量</nobr></th>
|
|
80
|
-
<th><nobr>备注</nobr></th>
|
|
81
|
-
<th><nobr>操作</nobr></th>
|
|
82
|
-
</tr>
|
|
83
|
-
</template>
|
|
84
|
-
<template partial='body'>
|
|
85
|
-
<tr>
|
|
86
|
-
<td style="text-align:center"><nobr>{{$index + 1}}</nobr></td>
|
|
87
|
-
<td style="text-align:center"><nobr>{{row.f_street}}</nobr></td>
|
|
88
|
-
<td style="text-align:center"><nobr>{{row.f_community_name}}</nobr></td>
|
|
89
|
-
<td style="text-align:center"><nobr>{{row.f_community_director}}</nobr></td>
|
|
90
|
-
<td style="text-align:center"><nobr>{{row.f_director_phone}}</nobr></td>
|
|
91
|
-
<td style="text-align:center"><nobr>{{row.f_orgname}}</nobr></td>
|
|
92
|
-
<td style="text-align:center"><nobr><span @click="$parent.$parent.$parent.dealmsg(row)"><a>{{row.areanum}}</a></span></nobr></td>
|
|
93
|
-
<td style="text-align:center"><nobr>{{row.f_comments}}</nobr></td>
|
|
94
|
-
<td style="text-align:center">
|
|
95
|
-
<nobr>
|
|
96
|
-
<button v-if="!row.communityid"
|
|
97
|
-
type="button"
|
|
98
|
-
name="button"
|
|
99
|
-
class="btn btn-danger"
|
|
100
|
-
style="padding: 5px 12px"
|
|
101
|
-
@click.stop="$parent.$parent.$parent.delete(row)">
|
|
102
|
-
删除
|
|
103
|
-
</button>
|
|
104
|
-
</nobr>
|
|
105
|
-
</td>
|
|
106
|
-
</tr>
|
|
107
|
-
</template>
|
|
108
|
-
<template partial='foot'></template>
|
|
109
|
-
</data-grid>
|
|
110
|
-
</criteria-paged>
|
|
111
|
-
</div>
|
|
112
|
-
</template>
|
|
113
|
-
|
|
114
|
-
<script>
|
|
115
|
-
import { PagedList } from 'vue-client'
|
|
116
|
-
let readyGen = async function (self) {
|
|
117
|
-
self.getfield = self.config.excelHeaders
|
|
118
|
-
}
|
|
119
|
-
export default {
|
|
120
|
-
data () {
|
|
121
|
-
return {
|
|
122
|
-
criteriaShow: false,
|
|
123
|
-
model: new PagedList('rs/sql/address_getCommunityManageList',20,{orderitem: this.orderitem?'"' + this.orderitem + ' "':`'f_community_name desc'`}),
|
|
124
|
-
addflag: false,
|
|
125
|
-
getfield: {},
|
|
126
|
-
//排序
|
|
127
|
-
orderitem:'f_community_name desc',
|
|
128
|
-
addtitle:'',
|
|
129
|
-
// 公司下拉
|
|
130
|
-
curorgid: [this.$login.f.orgid],
|
|
131
|
-
f_orgid: '',
|
|
132
|
-
config: {
|
|
133
|
-
// 导出列要和查询列相同
|
|
134
|
-
excelHeaders: {
|
|
135
|
-
'f_street': '街道/区县',
|
|
136
|
-
'f_community_name': '社区名称',
|
|
137
|
-
'f_community_director': '社区负责人',
|
|
138
|
-
'f_director_phone': '负责人电话',
|
|
139
|
-
'f_orgname': '分公司',
|
|
140
|
-
'areanum': '小区数量',
|
|
141
|
-
'f_comments': '备注'
|
|
142
|
-
}
|
|
143
|
-
},
|
|
144
|
-
orderFields: {
|
|
145
|
-
f_operate_date: 'no'
|
|
146
|
-
},
|
|
147
|
-
}
|
|
148
|
-
},
|
|
149
|
-
title: '社区管理',
|
|
150
|
-
ready(){
|
|
151
|
-
readyGen(this)
|
|
152
|
-
this.search()
|
|
153
|
-
},
|
|
154
|
-
methods: {
|
|
155
|
-
handDblclick(row){
|
|
156
|
-
console.log('row',row)
|
|
157
|
-
this.$dispatch("child-dblclick",row)
|
|
158
|
-
},
|
|
159
|
-
dealmsg (row) {
|
|
160
|
-
this.$dispatch('shouAllArea',row)
|
|
161
|
-
},
|
|
162
|
-
hidden() {
|
|
163
|
-
this.criteriaShow = !this.criteriaShow
|
|
164
|
-
},
|
|
165
|
-
search () {
|
|
166
|
-
this.$refs.paged.$refs.cri.search()
|
|
167
|
-
},
|
|
168
|
-
async delete(row){
|
|
169
|
-
if(row.id >= 0 ){
|
|
170
|
-
var id = row.id
|
|
171
|
-
let useraredss = await this.$resetpost('rs/sql/address_singleTable',
|
|
172
|
-
{data: {
|
|
173
|
-
items: 'id',
|
|
174
|
-
tablename: 't_area',
|
|
175
|
-
condition: `f_community_id = ${id}`}
|
|
176
|
-
},
|
|
177
|
-
{resolveMsg: null, rejectMsg: null})
|
|
178
|
-
if(useraredss.data.length>0){
|
|
179
|
-
this.$showAlert('该社区下已有小区信息,无法删除!','warning',1000)
|
|
180
|
-
}else{
|
|
181
|
-
this.$resetdelete('rs/entity/t_community', {id: id}, {resolveMsg: '删除成功', rejectMsg: '删除失败'}).then((res) => {
|
|
182
|
-
this.$dispatch('cancel')
|
|
183
|
-
})
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
},
|
|
187
|
-
add(val){
|
|
188
|
-
if (this.f_filialeids) {
|
|
189
|
-
this.$refs.paged.$refs.grid.selectStore.selected = null
|
|
190
|
-
this.$dispatch('add',val)
|
|
191
|
-
} else {
|
|
192
|
-
this.$showAlert('请先选择左上角的所在分公司', 'warning', 2000)
|
|
193
|
-
}
|
|
194
|
-
},
|
|
195
|
-
selfSearch (args) {
|
|
196
|
-
if (!this.f_orgid) {
|
|
197
|
-
this.getorg([this.$login.f.orgid])
|
|
198
|
-
}
|
|
199
|
-
args.condition = `${args.condition}`
|
|
200
|
-
this.model.search(args.condition, args.model)
|
|
201
|
-
},
|
|
202
|
-
//清空
|
|
203
|
-
clear(){
|
|
204
|
-
this.$refs.paged.$refs.cri.model = {}
|
|
205
|
-
},
|
|
206
|
-
getorg (val) {
|
|
207
|
-
this.f_orgid = this.$login.convertToIn(val)
|
|
208
|
-
this.f_filialeids = val[0]
|
|
209
|
-
}
|
|
210
|
-
},
|
|
211
|
-
computed: {
|
|
212
|
-
directors() {
|
|
213
|
-
return [{label: '全部', value: ''}, ...this.$appdata.getParam('社区负责人')]
|
|
214
|
-
},
|
|
215
|
-
getCondition() {
|
|
216
|
-
return {
|
|
217
|
-
condition: `${this.$refs.paged.$refs.cri.condition}`,
|
|
218
|
-
orderitem: this.orderitem ? `${this.orderitem}` : " id desc"
|
|
219
|
-
}
|
|
220
|
-
}
|
|
221
|
-
},
|
|
222
|
-
events:{
|
|
223
|
-
'sort' (field, rule) {
|
|
224
|
-
// 将所有排序方式设为不排序,实现相互排斥
|
|
225
|
-
console.log("field",field, rule)
|
|
226
|
-
for (let key in this.orderFields) {
|
|
227
|
-
if (key === field) {
|
|
228
|
-
this.orderFields[key] = rule
|
|
229
|
-
} else {
|
|
230
|
-
this.orderFields[key] = 'no'
|
|
231
|
-
}
|
|
232
|
-
}
|
|
233
|
-
// 如果新规则不排序,还原为默认排序
|
|
234
|
-
if (rule === 'no') {
|
|
235
|
-
this.model.paramSource.orderitem = `'${this.orderitem}'`
|
|
236
|
-
} else {
|
|
237
|
-
this.model.paramSource.orderitem = `'${field} ${rule}'`
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
this.search()
|
|
241
|
-
},
|
|
242
|
-
},
|
|
243
|
-
}
|
|
244
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="flex" @keyup.enter="search">
|
|
3
|
+
<criteria-paged :model="model" v-ref:paged @dblclick="handDblclick">
|
|
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="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">
|
|
8
|
+
<label class="font_normal_body">组织机构</label>
|
|
9
|
+
<res-select restype='organization'
|
|
10
|
+
@res-select="$parent.$parent.getorg"
|
|
11
|
+
:initresid='$parent.$parent.curorgid'>
|
|
12
|
+
</res-select>
|
|
13
|
+
</div>
|
|
14
|
+
<div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">
|
|
15
|
+
<label class="font_normal_body">社区名称</label>
|
|
16
|
+
<input type="text" class="input_search" style="width:60%" v-model="model.f_community_name"
|
|
17
|
+
condition="f_community_name like '%{}%'" placeholder="社区名称"/>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">
|
|
20
|
+
<label class="font_normal_body">街道/区县</label>
|
|
21
|
+
<input type="text" class="input_search" style="width:60%" v-model="model.f_street"
|
|
22
|
+
condition="f_street like '%{}%'" placeholder="街道/区县"/>
|
|
23
|
+
</div>
|
|
24
|
+
<div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">
|
|
25
|
+
<label class="font_normal_body">社区负责人</label>
|
|
26
|
+
<v-select :value.sync="model.f_community_director"
|
|
27
|
+
:value-single="true"
|
|
28
|
+
:options='$parent.$parent.$parent.directors'
|
|
29
|
+
placeholder='请选择'
|
|
30
|
+
condition="f_community_director = '{}'"
|
|
31
|
+
close-on-select
|
|
32
|
+
search="true">
|
|
33
|
+
</v-select>
|
|
34
|
+
</div>
|
|
35
|
+
<div class="col-sm-4 form-group button-range">
|
|
36
|
+
<button class="button_search button_spacing" @click="search()" >查询</button>
|
|
37
|
+
<button class="button_new button_spacing" style="width: max-content;" @click="$parent.$parent.add()">添加社区</button>
|
|
38
|
+
<button class="button_clear button_spacing" @click="$parent.$parent.clear()">清空</button>
|
|
39
|
+
<export-excel :data="$parent.$parent.getCondition"
|
|
40
|
+
:field="$parent.$parent.getfield"
|
|
41
|
+
sqlurl="rs/logic/exportfile"
|
|
42
|
+
sql-name="manage_getCommunityManageList"
|
|
43
|
+
template-name='社区信息查询导出'
|
|
44
|
+
:choose-col="true"></export-excel>
|
|
45
|
+
<div style="float: right" class="button_spacing" :class="{'button_shrink_top':$parent.$parent.criteriaShow,'button_shrink_bottom':!$parent.$parent.criteriaShow}" @click="$parent.$parent.hidden()"></div>
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
<div class="row" v-show="$parent.$parent.criteriaShow">
|
|
49
|
+
<!-- <div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">-->
|
|
50
|
+
<!-- <label class="font_normal_body">省  份</label>-->
|
|
51
|
+
<!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_province"-->
|
|
52
|
+
<!-- condition="f_province like '%{}%'" placeholder="省份"-->
|
|
53
|
+
<!-- :size="model.f_province ? model.f_province.length*2 : 6"/>-->
|
|
54
|
+
<!-- </div>-->
|
|
55
|
+
<!-- <div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">-->
|
|
56
|
+
<!-- <label class="font_normal_body">城  市</label>-->
|
|
57
|
+
<!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_city"-->
|
|
58
|
+
<!-- condition="f_city like '%{}%'" placeholder="城市"-->
|
|
59
|
+
<!-- :size="model.f_city ? model.f_city.length*2 : 6"/>-->
|
|
60
|
+
<!-- </div>-->
|
|
61
|
+
<!-- <div class="form-group" :class="{'col-sm-3':$parent.$parent.$parent.communityManageShow,'col-sm-2':!$parent.$parent.$parent.communityManageShow}">-->
|
|
62
|
+
<!-- <label class="font_normal_body">区  县</label>-->
|
|
63
|
+
<!-- <input type="text" style="width:60%" class="input_search" v-model="model.f_district"-->
|
|
64
|
+
<!-- condition="f_district like '%{}%'" placeholder="区县"-->
|
|
65
|
+
<!-- :size="model.f_district ? model.f_district.length*2 : 6"/>-->
|
|
66
|
+
<!-- </div>-->
|
|
67
|
+
</div>
|
|
68
|
+
</div>
|
|
69
|
+
</criteria>
|
|
70
|
+
<data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
|
|
71
|
+
<template partial='head'>
|
|
72
|
+
<tr>
|
|
73
|
+
<th><nobr>序号</nobr></th>
|
|
74
|
+
<th><nobr>街道/区县</nobr></th>
|
|
75
|
+
<th><nobr>社区名称</nobr></th>
|
|
76
|
+
<th><nobr>社区负责人</nobr></th>
|
|
77
|
+
<th><nobr>负责人电话</nobr></th>
|
|
78
|
+
<th><nobr>分公司</nobr></th>
|
|
79
|
+
<th title="改社区下现有的小区数量"><nobr>小区数量</nobr></th>
|
|
80
|
+
<th><nobr>备注</nobr></th>
|
|
81
|
+
<th><nobr>操作</nobr></th>
|
|
82
|
+
</tr>
|
|
83
|
+
</template>
|
|
84
|
+
<template partial='body'>
|
|
85
|
+
<tr>
|
|
86
|
+
<td style="text-align:center"><nobr>{{$index + 1}}</nobr></td>
|
|
87
|
+
<td style="text-align:center"><nobr>{{row.f_street}}</nobr></td>
|
|
88
|
+
<td style="text-align:center"><nobr>{{row.f_community_name}}</nobr></td>
|
|
89
|
+
<td style="text-align:center"><nobr>{{row.f_community_director}}</nobr></td>
|
|
90
|
+
<td style="text-align:center"><nobr>{{row.f_director_phone}}</nobr></td>
|
|
91
|
+
<td style="text-align:center"><nobr>{{row.f_orgname}}</nobr></td>
|
|
92
|
+
<td style="text-align:center"><nobr><span @click="$parent.$parent.$parent.dealmsg(row)"><a>{{row.areanum}}</a></span></nobr></td>
|
|
93
|
+
<td style="text-align:center"><nobr>{{row.f_comments}}</nobr></td>
|
|
94
|
+
<td style="text-align:center">
|
|
95
|
+
<nobr>
|
|
96
|
+
<button v-if="!row.communityid"
|
|
97
|
+
type="button"
|
|
98
|
+
name="button"
|
|
99
|
+
class="btn btn-danger"
|
|
100
|
+
style="padding: 5px 12px"
|
|
101
|
+
@click.stop="$parent.$parent.$parent.delete(row)">
|
|
102
|
+
删除
|
|
103
|
+
</button>
|
|
104
|
+
</nobr>
|
|
105
|
+
</td>
|
|
106
|
+
</tr>
|
|
107
|
+
</template>
|
|
108
|
+
<template partial='foot'></template>
|
|
109
|
+
</data-grid>
|
|
110
|
+
</criteria-paged>
|
|
111
|
+
</div>
|
|
112
|
+
</template>
|
|
113
|
+
|
|
114
|
+
<script>
|
|
115
|
+
import { PagedList } from 'vue-client'
|
|
116
|
+
let readyGen = async function (self) {
|
|
117
|
+
self.getfield = self.config.excelHeaders
|
|
118
|
+
}
|
|
119
|
+
export default {
|
|
120
|
+
data () {
|
|
121
|
+
return {
|
|
122
|
+
criteriaShow: false,
|
|
123
|
+
model: new PagedList('rs/sql/address_getCommunityManageList',20,{orderitem: this.orderitem?'"' + this.orderitem + ' "':`'f_community_name desc'`}),
|
|
124
|
+
addflag: false,
|
|
125
|
+
getfield: {},
|
|
126
|
+
//排序
|
|
127
|
+
orderitem:'f_community_name desc',
|
|
128
|
+
addtitle:'',
|
|
129
|
+
// 公司下拉
|
|
130
|
+
curorgid: [this.$login.f.orgid],
|
|
131
|
+
f_orgid: '',
|
|
132
|
+
config: {
|
|
133
|
+
// 导出列要和查询列相同
|
|
134
|
+
excelHeaders: {
|
|
135
|
+
'f_street': '街道/区县',
|
|
136
|
+
'f_community_name': '社区名称',
|
|
137
|
+
'f_community_director': '社区负责人',
|
|
138
|
+
'f_director_phone': '负责人电话',
|
|
139
|
+
'f_orgname': '分公司',
|
|
140
|
+
'areanum': '小区数量',
|
|
141
|
+
'f_comments': '备注'
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
orderFields: {
|
|
145
|
+
f_operate_date: 'no'
|
|
146
|
+
},
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
title: '社区管理',
|
|
150
|
+
ready(){
|
|
151
|
+
readyGen(this)
|
|
152
|
+
this.search()
|
|
153
|
+
},
|
|
154
|
+
methods: {
|
|
155
|
+
handDblclick(row){
|
|
156
|
+
console.log('row',row)
|
|
157
|
+
this.$dispatch("child-dblclick",row)
|
|
158
|
+
},
|
|
159
|
+
dealmsg (row) {
|
|
160
|
+
this.$dispatch('shouAllArea',row)
|
|
161
|
+
},
|
|
162
|
+
hidden() {
|
|
163
|
+
this.criteriaShow = !this.criteriaShow
|
|
164
|
+
},
|
|
165
|
+
search () {
|
|
166
|
+
this.$refs.paged.$refs.cri.search()
|
|
167
|
+
},
|
|
168
|
+
async delete(row){
|
|
169
|
+
if(row.id >= 0 ){
|
|
170
|
+
var id = row.id
|
|
171
|
+
let useraredss = await this.$resetpost('rs/sql/address_singleTable',
|
|
172
|
+
{data: {
|
|
173
|
+
items: 'id',
|
|
174
|
+
tablename: 't_area',
|
|
175
|
+
condition: `f_community_id = ${id}`}
|
|
176
|
+
},
|
|
177
|
+
{resolveMsg: null, rejectMsg: null})
|
|
178
|
+
if(useraredss.data.length>0){
|
|
179
|
+
this.$showAlert('该社区下已有小区信息,无法删除!','warning',1000)
|
|
180
|
+
}else{
|
|
181
|
+
this.$resetdelete('rs/entity/t_community', {id: id}, {resolveMsg: '删除成功', rejectMsg: '删除失败'}).then((res) => {
|
|
182
|
+
this.$dispatch('cancel')
|
|
183
|
+
})
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
add(val){
|
|
188
|
+
if (this.f_filialeids) {
|
|
189
|
+
this.$refs.paged.$refs.grid.selectStore.selected = null
|
|
190
|
+
this.$dispatch('add',val)
|
|
191
|
+
} else {
|
|
192
|
+
this.$showAlert('请先选择左上角的所在分公司', 'warning', 2000)
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
selfSearch (args) {
|
|
196
|
+
if (!this.f_orgid) {
|
|
197
|
+
this.getorg([this.$login.f.orgid])
|
|
198
|
+
}
|
|
199
|
+
args.condition = `${args.condition}`
|
|
200
|
+
this.model.search(args.condition, args.model)
|
|
201
|
+
},
|
|
202
|
+
//清空
|
|
203
|
+
clear(){
|
|
204
|
+
this.$refs.paged.$refs.cri.model = {}
|
|
205
|
+
},
|
|
206
|
+
getorg (val) {
|
|
207
|
+
this.f_orgid = this.$login.convertToIn(val)
|
|
208
|
+
this.f_filialeids = val[0]
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
computed: {
|
|
212
|
+
directors() {
|
|
213
|
+
return [{label: '全部', value: ''}, ...this.$appdata.getParam('社区负责人')]
|
|
214
|
+
},
|
|
215
|
+
getCondition() {
|
|
216
|
+
return {
|
|
217
|
+
condition: `${this.$refs.paged.$refs.cri.condition}`,
|
|
218
|
+
orderitem: this.orderitem ? `${this.orderitem}` : " id desc"
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
events:{
|
|
223
|
+
'sort' (field, rule) {
|
|
224
|
+
// 将所有排序方式设为不排序,实现相互排斥
|
|
225
|
+
console.log("field",field, rule)
|
|
226
|
+
for (let key in this.orderFields) {
|
|
227
|
+
if (key === field) {
|
|
228
|
+
this.orderFields[key] = rule
|
|
229
|
+
} else {
|
|
230
|
+
this.orderFields[key] = 'no'
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
// 如果新规则不排序,还原为默认排序
|
|
234
|
+
if (rule === 'no') {
|
|
235
|
+
this.model.paramSource.orderitem = `'${this.orderitem}'`
|
|
236
|
+
} else {
|
|
237
|
+
this.model.paramSource.orderitem = `'${field} ${rule}'`
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
this.search()
|
|
241
|
+
},
|
|
242
|
+
},
|
|
243
|
+
}
|
|
244
|
+
</script>
|