address-client 3.2.2 → 3.2.3-zk

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.
Files changed (66) hide show
  1. package/.gradle/buildOutputCleanup/cache.properties +2 -2
  2. package/build/dev-server.js +133 -125
  3. package/package.json +2 -2
  4. package/src/address.js +55 -55
  5. package/src/components/AddAreaMsg.vue +675 -669
  6. package/src/components/AddressList.vue +391 -611
  7. package/src/components/AddressManage.vue +110 -117
  8. package/src/components/AreaList.vue +137 -135
  9. package/src/components/AreaManage.vue +101 -100
  10. package/src/components/CityList.vue +133 -133
  11. package/src/components/StreetList.vue +210 -210
  12. package/src/components/UserAddress.vue +905 -896
  13. package/src/main.js +21 -21
  14. package/yarn-error.log +7619 -0
  15. package/.gradle/3.5/file-changes/last-build.bin +0 -0
  16. package/.gradle/3.5/taskHistory/taskHistory.lock +0 -0
  17. package/.gradle/buildOutputCleanup/built.bin +0 -0
  18. package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
  19. package/AddressClient.iml +0 -13
  20. package/src/filiale/WEINAN/AddAreaMsg.vue +0 -656
  21. package/src/filiale/WEINAN/AddressList.vue +0 -351
  22. package/src/filiale/WEINAN/AddressManage.vue +0 -122
  23. package/src/filiale/WEINAN/AreaList.vue +0 -275
  24. package/src/filiale/WEINAN/UserAddress.vue +0 -783
  25. package/src/filiale/WEINAN/sale.js +0 -16
  26. package/src/filiale/gaomi/AddressList.vue +0 -430
  27. package/src/filiale/gaomi/UserAddress.vue +0 -832
  28. package/src/filiale/gaomi/sale.js +0 -14
  29. package/src/filiale/gongyi/AddAreaMsg.vue +0 -640
  30. package/src/filiale/gongyi/AreaManage.vue +0 -100
  31. package/src/filiale/gongyi/UserAddress.vue +0 -751
  32. package/src/filiale/gongyi/sale.js +0 -14
  33. package/src/filiale/jingwei/UserAddress.vue +0 -764
  34. package/src/filiale/jingwei/sale.js +0 -12
  35. package/src/filiale/macheng/AddAreaMsg.vue +0 -635
  36. package/src/filiale/macheng/AddStreetOrPcd.vue +0 -231
  37. package/src/filiale/macheng/AddressList.vue +0 -306
  38. package/src/filiale/macheng/AreaList.vue +0 -279
  39. package/src/filiale/macheng/CityManage.vue +0 -76
  40. package/src/filiale/macheng/StreetList.vue +0 -186
  41. package/src/filiale/macheng/UserAddress.vue +0 -743
  42. package/src/filiale/macheng/sale.js +0 -17
  43. package/src/filiale/rongcheng/AddressList.vue +0 -363
  44. package/src/filiale/rongcheng/UserAddress.vue +0 -799
  45. package/src/filiale/rongcheng/sale.js +0 -11
  46. package/src/filiale/shaoguan/AddAreaMsg.vue +0 -631
  47. package/src/filiale/shaoguan/UserAddress.vue +0 -764
  48. package/src/filiale/shaoguan/sale.js +0 -11
  49. package/src/filiale/tongchuan/AddAreaMsg.vue +0 -635
  50. package/src/filiale/tongchuan/AddStreetOrPcd.vue +0 -308
  51. package/src/filiale/tongchuan/AddressList.vue +0 -379
  52. package/src/filiale/tongchuan/AreaList.vue +0 -315
  53. package/src/filiale/tongchuan/AreaManage.vue +0 -100
  54. package/src/filiale/tongchuan/CityList.vue +0 -133
  55. package/src/filiale/tongchuan/StreetList.vue +0 -208
  56. package/src/filiale/tongchuan/UserAddress.vue +0 -822
  57. package/src/filiale/tongchuan/sale.js +0 -19
  58. package/src/filiale/wuhai/UserAddress.vue +0 -795
  59. package/src/filiale/wuhai/sale.js +0 -12
  60. package/src/filiale/zhoukou/AddAreaMsg.vue +0 -673
  61. package/src/filiale/zhoukou/AddressList.vue +0 -391
  62. package/src/filiale/zhoukou/AddressManage.vue +0 -115
  63. package/src/filiale/zhoukou/AreaList.vue +0 -319
  64. package/src/filiale/zhoukou/AreaManage.vue +0 -100
  65. package/src/filiale/zhoukou/UserAddress.vue +0 -925
  66. package/src/filiale/zhoukou/sale.js +0 -23
@@ -1,100 +1,101 @@
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'(){
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='小区'
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
+ this.$refs.addareamsg.areamodel.f_residential_area_id = obj.val.id
58
+ if (obj.val.f_meter_book != null && obj.val.f_meter_book != '' && obj.val.f_meter_book instanceof Array) {
59
+ this.$refs.addareamsg.areamodel.f_meter_book = parseInt(obj.val.f_meter_book[0])
60
+ }
61
+ if (obj.val.f_meter_book != null && obj.val.f_meter_book != '' && !(obj.val.f_meter_book instanceof Array)) {
62
+ this.$refs.addareamsg.areamodel.f_meter_book = parseInt(obj.val.f_meter_book)
63
+ }
64
+ if (obj.val.f_adjustable_id != null && obj.val.f_adjustable_id != '' && obj.val.f_adjustable_id instanceof Array) {
65
+ this.$refs.addareamsg.areamodel.f_adjustable_id = parseInt(obj.val.f_adjustable_id[0])
66
+ }
67
+ if (obj.val.f_adjustable_id != null && obj.val.f_adjustable_id != '' && !(obj.val.f_adjustable_id instanceof Array)) {
68
+ this.$refs.addareamsg.areamodel.f_adjustable_id = parseInt(obj.val.f_adjustable_id)
69
+ }
70
+ // this.$refs.addareamsg.initdata(obj.val)
71
+ // this.$refs.addareamsg.initrow(obj.val)
72
+ }
73
+ },
74
+ refresh() {
75
+ this.areaShow = false
76
+ this.$refs.arealist.$refs.paged.$refs.cri.search()
77
+ }
78
+ },
79
+ events:{
80
+ 'add'(){
81
+ this.style='col-sm-3 form-group'
82
+ this.areaShow=true
83
+ this.$refs.addareamsg.cleardara()
84
+ this.$refs.addareamsg.operation='add'
85
+ this.$refs.addareamsg.areatype='小区'
86
+ this.$refs.addareamsg.initdata()
87
+ },
88
+ 'confirm' () {
89
+ this.style='col-sm-2 form-group'
90
+ this.areaShow = false
91
+ this.$refs.arealist.$refs.paged.$refs.cri.search()
92
+ },
93
+ 'cancel' () {
94
+ this.style='col-sm-2 form-group'
95
+ this.$refs.arealist.$refs.paged.$refs.cri.search()
96
+ this.areaShow = false
97
+ }
98
+ }
99
+ }
100
+ </script>
101
+
@@ -1,133 +1,133 @@
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-6 form-group">
8
- <label class="font_normal_body">省份</label>
9
- <input type="text" class="input_search" v-model="model.f_province"
10
- condition="f_province like '%{}%'" placeholder="省份"
11
- :size="model.f_province ? model.f_province.length*2 : 6"/>
12
- </div>
13
- <div class="col-sm-4 form-group button-range">
14
- <button class="button_search button_spacing" @click="search()" >查询</button>
15
- </div>
16
- </div>
17
- </div>
18
- </criteria>
19
- <data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
20
- <template partial='head'>
21
- <tr>
22
- <th><nobr>序号</nobr></th>
23
- <th><nobr>省份</nobr></th>
24
- <th><nobr>城市</nobr></th>
25
- <th><nobr>区/县</nobr></th>
26
- <th><nobr>省市区编码</nobr></th>
27
- <th title="该区域下现有的街道数"><nobr>街道数量</nobr></th>
28
- <th><nobr>操作</nobr></th>
29
- </tr>
30
- </template>
31
- <template partial='body'>
32
- <tr @click="$parent.$parent.changestyle()">
33
- <td style="text-align:center"><nobr>{{$index + 1}}</nobr></td>
34
- <td style="text-align:center"><nobr>{{row.f_province}}</nobr></td>
35
- <td style="text-align:center"><nobr>{{row.f_city}}</nobr></td>
36
- <td style="text-align:center"><nobr>{{row.f_district}}</nobr></td>
37
- <td style="text-align:center"><nobr>{{row.f_pcd_number}}</nobr></td>
38
- <td style="text-align:center"><nobr>{{row.streenum}}</nobr></td>
39
- <td style="text-align:center"><nobr>
40
- <button v-if="row.streenum === 0" type="button" name="button" class="btn btn-danger"
41
- style="padding: 5px 12px"
42
- @click.stop="$parent.$parent.$parent.delete(row)">删除</button>
43
- </nobr></td>
44
- </tr>
45
- </template>
46
- <template partial='foot'></template>
47
- </data-grid>
48
- </criteria-paged>
49
- </div>
50
- </template>
51
-
52
- <script>
53
- import { PagedList } from 'vue-client'
54
- let readyGen = async function (self) {
55
- self.getfield = self.config.excelHeaders
56
- }
57
- export default {
58
- data () {
59
- return {
60
- model: new PagedList('rs/sql/address_getcitylist',20),
61
- addflag: false,
62
- getfield: {},
63
- f_orgid: ''
64
- }
65
- },
66
- props:{
67
- f_filialeids:{
68
- type: String
69
- }
70
- },
71
- ready(){
72
- readyGen(this)
73
- this.search()
74
- },
75
- methods: {
76
- search () {
77
- this.$refs.paged.$refs.cri.search()
78
- },
79
- async delete(row){
80
- if(row.id >= 0 ){
81
- var id = row.id
82
- let useraredss = await this.$resetpost('rs/sql/address_singleTable',
83
- {data: {
84
- items: 'f_pcd_id',
85
- tablename: 't_street',
86
- condition: `f_pcd_id='${id}'`}
87
- },
88
- {resolveMsg: null, rejectMsg: null})
89
- if(useraredss.data.length>0){
90
- this.$showAlert('该区县下已有街道信息,无法删除!','warning',1000)
91
- }else{
92
- this.$resetdelete('rs/entity/t_pcd', {id: id}, {resolveMsg: '删除成功', rejectMsg: '删除失败'}).then((res) => {
93
- this.$dispatch('cancel')
94
- })
95
- }
96
- }
97
- },
98
- add(val){
99
- if (this.f_filialeids) {
100
- this.$refs.paged.$refs.grid.selectStore.selected = null
101
- this.$dispatch('add',val)
102
- } else {
103
- this.$showAlert('请先选择左上角的所在分公司', 'warning', 2000)
104
- }
105
- },
106
- modify(val){
107
- this.$refs.paged.$refs.grid.selectStore.selected = null
108
- this.$dispatch('modify',val)
109
- },
110
- selfSearch (args) {
111
- if (!this.f_orgid) {
112
- this.getorg([this.$login.f.orgid])
113
- }
114
- args.condition = `${args.condition} and p.f_filialeid in ${this.f_orgid}`
115
- this.model.search(args.condition, args.model)
116
- },
117
- //清空
118
- clear(){
119
- this.$refs.paged.$refs.cri.model = {}
120
- },
121
- getorg (val) {
122
- this.f_orgid = this.$login.convertToIn(val)
123
- this.f_filialeids = val[0]
124
- }
125
- },
126
- computed: {
127
- getCondition() {
128
- return {
129
- condition: `${this.$refs.paged.$refs.cri.condition}` + `and p.f_filialeid = '${this.f_filialeids}'`}
130
- }
131
- }
132
- }
133
- </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-6 form-group">
8
+ <label class="font_normal_body">省份</label>
9
+ <input type="text" class="input_search" v-model="model.f_province"
10
+ condition="f_province like '%{}%'" placeholder="省份"
11
+ :size="model.f_province ? model.f_province.length*2 : 6"/>
12
+ </div>
13
+ <div class="col-sm-4 form-group button-range">
14
+ <button class="button_search button_spacing" @click="search()" >查询</button>
15
+ </div>
16
+ </div>
17
+ </div>
18
+ </criteria>
19
+ <data-grid :model="model" partial='list' class="list_area table_sy" v-ref:grid>
20
+ <template partial='head'>
21
+ <tr>
22
+ <th><nobr>序号</nobr></th>
23
+ <th><nobr>省份</nobr></th>
24
+ <th><nobr>城市</nobr></th>
25
+ <th><nobr>区/县</nobr></th>
26
+ <th><nobr>省市区编码</nobr></th>
27
+ <th title="该区域下现有的街道数"><nobr>街道数量</nobr></th>
28
+ <th><nobr>操作</nobr></th>
29
+ </tr>
30
+ </template>
31
+ <template partial='body'>
32
+ <tr @click="$parent.$parent.changestyle()">
33
+ <td style="text-align:center"><nobr>{{$index + 1}}</nobr></td>
34
+ <td style="text-align:center"><nobr>{{row.f_province}}</nobr></td>
35
+ <td style="text-align:center"><nobr>{{row.f_city}}</nobr></td>
36
+ <td style="text-align:center"><nobr>{{row.f_district}}</nobr></td>
37
+ <td style="text-align:center"><nobr>{{row.f_pcd_number}}</nobr></td>
38
+ <td style="text-align:center"><nobr>{{row.streenum}}</nobr></td>
39
+ <td style="text-align:center"><nobr>
40
+ <button v-if="row.streenum === 0" type="button" name="button" class="btn btn-danger"
41
+ style="padding: 5px 12px"
42
+ @click.stop="$parent.$parent.$parent.delete(row)">删除</button>
43
+ </nobr></td>
44
+ </tr>
45
+ </template>
46
+ <template partial='foot'></template>
47
+ </data-grid>
48
+ </criteria-paged>
49
+ </div>
50
+ </template>
51
+
52
+ <script>
53
+ import { PagedList } from 'vue-client'
54
+ let readyGen = async function (self) {
55
+ self.getfield = self.config.excelHeaders
56
+ }
57
+ export default {
58
+ data () {
59
+ return {
60
+ model: new PagedList('rs/sql/address_getcitylist',20),
61
+ addflag: false,
62
+ getfield: {},
63
+ f_orgid: ''
64
+ }
65
+ },
66
+ props:{
67
+ f_filialeids:{
68
+ type: String
69
+ }
70
+ },
71
+ ready(){
72
+ readyGen(this)
73
+ this.search()
74
+ },
75
+ methods: {
76
+ search () {
77
+ this.$refs.paged.$refs.cri.search()
78
+ },
79
+ async delete(row){
80
+ if(row.id >= 0 ){
81
+ var id = row.id
82
+ let useraredss = await this.$resetpost('rs/sql/address_singleTable',
83
+ {data: {
84
+ items: 'f_pcd_id',
85
+ tablename: 't_street',
86
+ condition: `f_pcd_id='${id}'`}
87
+ },
88
+ {resolveMsg: null, rejectMsg: null})
89
+ if(useraredss.data.length>0){
90
+ this.$showAlert('该区县下已有街道信息,无法删除!','warning',1000)
91
+ }else{
92
+ this.$resetdelete('rs/entity/t_pcd', {id: id}, {resolveMsg: '删除成功', rejectMsg: '删除失败'}).then((res) => {
93
+ this.$dispatch('cancel')
94
+ })
95
+ }
96
+ }
97
+ },
98
+ add(val){
99
+ if (this.f_filialeids) {
100
+ this.$refs.paged.$refs.grid.selectStore.selected = null
101
+ this.$dispatch('add',val)
102
+ } else {
103
+ this.$showAlert('请先选择左上角的所在分公司', 'warning', 2000)
104
+ }
105
+ },
106
+ modify(val){
107
+ this.$refs.paged.$refs.grid.selectStore.selected = null
108
+ this.$dispatch('modify',val)
109
+ },
110
+ selfSearch (args) {
111
+ if (!this.f_orgid) {
112
+ this.getorg([this.$login.f.orgid])
113
+ }
114
+ args.condition = `${args.condition} and p.f_filialeid in ${this.f_orgid}`
115
+ this.model.search(args.condition, args.model)
116
+ },
117
+ //清空
118
+ clear(){
119
+ this.$refs.paged.$refs.cri.model = {}
120
+ },
121
+ getorg (val) {
122
+ this.f_orgid = this.$login.convertToIn(val)
123
+ this.f_filialeids = val[0]
124
+ }
125
+ },
126
+ computed: {
127
+ getCondition() {
128
+ return {
129
+ condition: `${this.$refs.paged.$refs.cri.condition}` + `and p.f_filialeid = '${this.f_filialeids}'`}
130
+ }
131
+ }
132
+ }
133
+ </script>