address-client 3.2.34 → 3.2.35
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
CHANGED
|
@@ -19,6 +19,12 @@ var proxyTable = {
|
|
|
19
19
|
changeOrigin:true
|
|
20
20
|
// target: 'http://127.0.0.1:8080'
|
|
21
21
|
},
|
|
22
|
+
'/webapps':{
|
|
23
|
+
target: str3,
|
|
24
|
+
secure:true,
|
|
25
|
+
changeOrigin:true
|
|
26
|
+
// target: 'http://127.0.0.1:8080'
|
|
27
|
+
},
|
|
22
28
|
'/rs/logic/getLogin': {
|
|
23
29
|
target: str3,
|
|
24
30
|
secure:true,
|
package/package.json
CHANGED
|
@@ -122,6 +122,17 @@
|
|
|
122
122
|
close-on-select>
|
|
123
123
|
</v-select>
|
|
124
124
|
</div>
|
|
125
|
+
<div :class="$parent.$parent.style">
|
|
126
|
+
<label class="font_normal_body">地区类型</label>
|
|
127
|
+
<v-select
|
|
128
|
+
class="select_list select"
|
|
129
|
+
:value.sync="model.f_iscity"
|
|
130
|
+
v-model="model.f_iscity"
|
|
131
|
+
:options='$parent.$parent.iscity' placeholder='地区类型'
|
|
132
|
+
condition="a.f_iscity = '{}'"
|
|
133
|
+
close-on-select>
|
|
134
|
+
</v-select>
|
|
135
|
+
</div>
|
|
125
136
|
<div :class="$parent.$parent.style" >
|
|
126
137
|
<label class="font_normal_body">状  态</label>
|
|
127
138
|
<v-select :value.sync="model.f_state"
|
|
@@ -154,6 +165,7 @@
|
|
|
154
165
|
<th v-show="!$parent.$parent.$parent.$parent.useraddressShow"><nobr>楼层</nobr></th>
|
|
155
166
|
<th v-show="!$parent.$parent.$parent.$parent.useraddressShow"><nobr>门牌号</nobr></th>
|
|
156
167
|
<th><nobr>详细地址</nobr></th>
|
|
168
|
+
<th><nobr>地区类型</nobr></th>
|
|
157
169
|
<th><nobr>地址状态</nobr></th>
|
|
158
170
|
<th><nobr>状态</nobr></th>
|
|
159
171
|
<th><nobr>入户证号</nobr></th>
|
|
@@ -172,6 +184,7 @@
|
|
|
172
184
|
<td v-show="!$parent.$parent.$parent.$parent.useraddressShow" style="text-align:center"><nobr>{{row.f_floor}}{{row.f_floor_suffix}}</nobr></td>
|
|
173
185
|
<td v-show="!$parent.$parent.$parent.$parent.useraddressShow" style="text-align:center"><nobr>{{row.f_room}}{{row.f_room_suffix}}</nobr></td>
|
|
174
186
|
<td style="text-align:center"><nobr>{{row.f_address}}</nobr></td>
|
|
187
|
+
<td style="text-align:center"><nobr>{{row.f_iscity}}</nobr></td>
|
|
175
188
|
<td style="text-align:center"><nobr>{{row.f_address_state}}</nobr></td>
|
|
176
189
|
<td style="text-align:center"><nobr>{{row.f_state ==='作废'?'作废':'有效'}}</nobr></td>
|
|
177
190
|
<td style="text-align:center"><nobr>{{row.f_enter_number}}</nobr></td>
|
|
@@ -279,11 +292,13 @@
|
|
|
279
292
|
'f_floor':'楼层',
|
|
280
293
|
'f_room':'门牌号',
|
|
281
294
|
'f_address':'详细地址',
|
|
295
|
+
'f_iscity':'地区类型',
|
|
282
296
|
'f_address_state':'地址状态',
|
|
283
297
|
'f_create_date':'时间',
|
|
284
298
|
'f_state':'状态'
|
|
285
299
|
},
|
|
286
300
|
},
|
|
301
|
+
iscity:[{label:'市区',value:'市区'},{label:'乡镇',value:'乡镇'},{label:'全部',value:''}],
|
|
287
302
|
isbusy:false,
|
|
288
303
|
addflag: false,
|
|
289
304
|
addtitle:'',
|
|
@@ -120,12 +120,11 @@
|
|
|
120
120
|
<input type="text" style="width:20%" v-model="model.f_floor_suffix" class="input_search"
|
|
121
121
|
/>
|
|
122
122
|
</div>
|
|
123
|
-
<div v-if="!usertype" class="col-sm-6"
|
|
123
|
+
<div v-if="!usertype" class="col-sm-6 form-group"
|
|
124
124
|
:class="[$v.f_room.required ? 'has-error' : 'has-success']">
|
|
125
125
|
<label for="f_address" class="font_normal_body">   门 牌 号</label>
|
|
126
126
|
<input type="text" style="width:40%" v-model="model.f_room" class="input_search" placeholder="门牌号"
|
|
127
127
|
v-validate:f_room='{required: true }'/>
|
|
128
|
-
<input type="text" style="width:auto;margin-top: -9px;margin-left: 105px" v-model="model.f_room_suffix" placeholder="特殊信息" class="input_search"/>
|
|
129
128
|
</div>
|
|
130
129
|
<div class="col-sm-6 form-group">
|
|
131
130
|
<label class="font_normal_body">   地址状态</label>
|
|
@@ -136,6 +135,10 @@
|
|
|
136
135
|
close-on-select>
|
|
137
136
|
</v-select>
|
|
138
137
|
</div>
|
|
138
|
+
<div v-if="!usertype" class="col-sm-6 form-group">
|
|
139
|
+
<label for="f_address" class="font_normal_body">   地址杂项</label>
|
|
140
|
+
<input type="text" style="width:60%" v-model="model.f_room_suffix" placeholder="地址杂项" class="input_search"/>
|
|
141
|
+
</div>
|
|
139
142
|
<div v-if="!usertype" class="col-sm-8 form-group ">
|
|
140
143
|
<label class="font_normal_body">   经 纬 度</label>
|
|
141
144
|
<input type="text" style="width:30%" v-model="model.f_lng" class="input_search" placeholder="经度"/>
|
|
@@ -147,14 +150,14 @@
|
|
|
147
150
|
:class="[$v.f_address.required ? 'has-error' : 'has-success']">
|
|
148
151
|
<label for="f_address" class="font_normal_body">   详细地址</label>
|
|
149
152
|
<input type="text" style="width:80%" v-model="model.f_address" class="input_search" placeholder="详细地址"
|
|
150
|
-
v-validate:f_address='{required: true }'/>
|
|
153
|
+
v-validate:f_address='{required: true }' disabled="true"/>
|
|
151
154
|
</div>
|
|
152
155
|
|
|
153
156
|
<div v-if="usertype" class="col-sm-12 form-group "
|
|
154
157
|
:class="[$v.f_address.required ? 'has-error' : 'has-success']">
|
|
155
158
|
<label for="f_address" class="font_normal_body">   详细地址</label>
|
|
156
159
|
<input type="text" style="width:80%" v-model="model.f_address" class="input_search" placeholder="详细地址"
|
|
157
|
-
v-validate:f_address='{required: true }'/>
|
|
160
|
+
v-validate:f_address='{required: true }' disabled="true"/>
|
|
158
161
|
</div>
|
|
159
162
|
<div v-if="usertype" class="col-sm-8 form-group ">
|
|
160
163
|
<label class="font_normal_body">   经 纬 度</label>
|