address-client 3.2.87 → 3.2.88-wn
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/filiale/WEINAN/AddAreaMsg.vue +743 -727
- package/src/filiale/qianneng/UserAddress.vue +3 -3
- package/src/filiale/rizhao/UserAddress.vue +3 -3
- package/src/main.js +22 -22
|
@@ -602,7 +602,7 @@
|
|
|
602
602
|
let HttpReset = new HttpResetClass()
|
|
603
603
|
let req = await HttpReset.load('POST', 'rs/sql/address_singleTableOrderBy', {
|
|
604
604
|
data: {
|
|
605
|
-
items: '
|
|
605
|
+
items: 'id,f_street',
|
|
606
606
|
tablename: 't_street',
|
|
607
607
|
orderitem: 'id',
|
|
608
608
|
condition: pconditon
|
|
@@ -628,7 +628,7 @@
|
|
|
628
628
|
let HttpReset = new HttpResetClass()
|
|
629
629
|
let req = await HttpReset.load('POST', 'rs/sql/address_singleTableOrderBy?pageNo=1&pageSize=9999999', {
|
|
630
630
|
data: {
|
|
631
|
-
items: '
|
|
631
|
+
items: 'f_street,f_residential_area,f_pcd_id,f_street_id,id,f_slice_area',
|
|
632
632
|
tablename: 't_area',
|
|
633
633
|
orderitem: 'id',
|
|
634
634
|
condition: pconditon
|
|
@@ -637,7 +637,7 @@
|
|
|
637
637
|
let redata = []
|
|
638
638
|
if (req.data.length === 0){
|
|
639
639
|
redata.push({
|
|
640
|
-
label: '
|
|
640
|
+
label: '无',
|
|
641
641
|
value: '',
|
|
642
642
|
data: '',
|
|
643
643
|
id: ''
|
|
@@ -622,7 +622,7 @@
|
|
|
622
622
|
this.initpcds(` f_filialeid = '${this.f_filialeids}' and id ='${selectArea.f_pcd_id}' `)
|
|
623
623
|
this.model.slice_area = selectArea.f_slice_area
|
|
624
624
|
// 拼接地址
|
|
625
|
-
this.model.f_address = `${selectArea.
|
|
625
|
+
this.model.f_address = `${selectArea.f_residential_area}`
|
|
626
626
|
}
|
|
627
627
|
this.$nextTick(() => {
|
|
628
628
|
this.$resetValidation()
|
|
@@ -638,7 +638,7 @@
|
|
|
638
638
|
street=item.label
|
|
639
639
|
}
|
|
640
640
|
})
|
|
641
|
-
this.model.f_address = street
|
|
641
|
+
// this.model.f_address = street
|
|
642
642
|
}
|
|
643
643
|
if(val){
|
|
644
644
|
//那就把[小区]重新组织一下
|
|
@@ -774,7 +774,7 @@
|
|
|
774
774
|
this.model.f_pcd=this.findbyid(this.pcdslist,this.model.f_pcd_id).f_pcd
|
|
775
775
|
this.model.f_street=this.findbyid(this.streetslist,this.model.f_street_id).f_street
|
|
776
776
|
this.model.f_residential_area=this.findbyid(this.areaslist,this.model.f_residential_area_id).f_residential_area
|
|
777
|
-
this.model.f_address = this.model.
|
|
777
|
+
this.model.f_address = this.model.f_residential_area + (this.model.f_building?this.model.f_building +this.model.f_building_suffix:'') + (this.model.f_unit?this.model.f_unit +this.model.f_unit_suffix:'') + (this.model.f_floor?this.model.f_floor +this.model.f_floor_suffix:'') + this.model.f_room + this.model.f_room_suffix
|
|
778
778
|
}
|
|
779
779
|
await this.$resetpost('rs/logic/address_updateuseraddress', this.model)
|
|
780
780
|
},
|
package/src/main.js
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import Vue from 'vue'
|
|
2
|
-
import App from './App'
|
|
3
|
-
import { all } from 'vue-client'
|
|
4
|
-
import { system } from 'system-clients'
|
|
5
|
-
import { ldap } from 'ldap-clients'
|
|
6
|
-
import address from './address'
|
|
7
|
-
|
|
8
|
-
Vue.config.silent = true
|
|
9
|
-
|
|
10
|
-
/** **************************通用组件******************************/
|
|
11
|
-
all()
|
|
12
|
-
address('')
|
|
13
|
-
system(false)
|
|
14
|
-
ldap()
|
|
15
|
-
// sale()
|
|
16
|
-
require('system-clients/src/styles/less/bootstrap.less')
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
new Vue({
|
|
20
|
-
el: 'body',
|
|
21
|
-
components: { App }
|
|
22
|
-
})
|
|
1
|
+
import Vue from 'vue'
|
|
2
|
+
import App from './App'
|
|
3
|
+
import { all } from 'vue-client'
|
|
4
|
+
import { system } from 'system-clients'
|
|
5
|
+
import { ldap } from 'ldap-clients'
|
|
6
|
+
import address from './address'
|
|
7
|
+
|
|
8
|
+
Vue.config.silent = true
|
|
9
|
+
|
|
10
|
+
/** **************************通用组件******************************/
|
|
11
|
+
all()
|
|
12
|
+
address('WEINAN')
|
|
13
|
+
system(false)
|
|
14
|
+
ldap()
|
|
15
|
+
// sale()
|
|
16
|
+
require('system-clients/src/styles/less/bootstrap.less')
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
new Vue({
|
|
20
|
+
el: 'body',
|
|
21
|
+
components: { App }
|
|
22
|
+
})
|