address-client 3.2.30 → 3.2.31
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/buildOutputCleanup/cache.properties +2 -2
- package/build/dev-server.js +2 -2
- package/package.json +1 -1
- package/src/components/AddressModel.vue +95 -95
- package/src/components/BatchOrders.vue +328 -329
- package/src/filiale/dongguan/AddStreetOrPcd.vue +422 -0
- package/src/filiale/dongguan/sale.js +7 -0
- package/src/filiale/macheng/AddressList.vue +299 -48
- package/src/filiale/zhongyi/AddAreaMsg.vue +757 -757
- package/src/filiale/zhongyi/sale.js +12 -12
- package/src/main.js +21 -21
- package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/.gradle/7.1/dependencies-accessors/gc.properties +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.bin +0 -0
- package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
- package/.gradle/7.1/fileChanges/last-build.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.bin +0 -0
- package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
- package/.gradle/7.1/gc.properties +0 -0
- package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/.gradle/checksums/checksums.lock +0 -0
- package/.gradle/vcs-1/gc.properties +0 -0
- package/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/gradle/wrapper/gradle-wrapper.properties +0 -5
- package/gradlew +0 -185
- package/gradlew.bat +0 -89
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
2
|
-
gradle.version=
|
|
1
|
+
#Mon Dec 07 15:35:10 CST 2020
|
|
2
|
+
gradle.version=5.2.1
|
package/build/dev-server.js
CHANGED
|
@@ -10,7 +10,7 @@ var proxy = httpProxy.createProxyServer()
|
|
|
10
10
|
|
|
11
11
|
// Define HTTP proxies to your custom API backend
|
|
12
12
|
// https://github.com/chimurai/http-proxy-middleware
|
|
13
|
-
var str = 'http://127.0.0.1:
|
|
13
|
+
var str = 'http://127.0.0.1:8090', str2= 'http://192.168.50.4:8400'
|
|
14
14
|
var proxyTable = {
|
|
15
15
|
|
|
16
16
|
'/rs/logic/getLogin': {
|
|
@@ -39,7 +39,7 @@ var proxyTable = {
|
|
|
39
39
|
},
|
|
40
40
|
'/rs': {
|
|
41
41
|
// target: 'http://192.168.50.199:8300'
|
|
42
|
-
target:
|
|
42
|
+
target: str
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
|
package/package.json
CHANGED
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<modal :show.sync="isshow" :width='width' v-ref:modal backdrop="false">
|
|
3
|
-
<header slot="modal-header" class="modal-header">
|
|
4
|
-
<button type="button" class="close" @click="closeTree"><span>×</span></button>
|
|
5
|
-
<h4 class="modal-title">地址管理</h4>
|
|
6
|
-
</header>
|
|
7
|
-
<article slot="modal-body" class="modal-body">
|
|
8
|
-
<div class="from-group" style="height: 450px;overflow: auto;">
|
|
9
|
-
<address-tree :f_location="f_location" :isquery="isquery" :isinspect="true" :isbasch="isbasch" v-ref:addresstree></address-tree>
|
|
10
|
-
<!--<address-select v-if="isselect" :f_location="f_location" v-ref:addressSelect :show="showType" :value="value" @re-ref="selectclick"></address-select>-->
|
|
11
|
-
</div>
|
|
12
|
-
</article>
|
|
13
|
-
<footer slot="modal-footer">
|
|
14
|
-
<button type="button" class="btn btn-success" @click='confirm'>确认</button>
|
|
15
|
-
</footer>
|
|
16
|
-
</modal>
|
|
17
|
-
</template>
|
|
18
|
-
|
|
19
|
-
<script>
|
|
20
|
-
export default {
|
|
21
|
-
name: "AddressModel",
|
|
22
|
-
title: '地址管理弹窗',
|
|
23
|
-
props: {
|
|
24
|
-
// 地址查询方式
|
|
25
|
-
isquery: {
|
|
26
|
-
type: Boolean,
|
|
27
|
-
default: true,
|
|
28
|
-
},
|
|
29
|
-
//位置信息
|
|
30
|
-
f_location: {
|
|
31
|
-
type: Object,
|
|
32
|
-
default: {
|
|
33
|
-
f_locationId: '1535',
|
|
34
|
-
f_locationType: 't_organization',
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
//是否显示
|
|
38
|
-
isshow: {
|
|
39
|
-
type: Boolean,
|
|
40
|
-
default : false,
|
|
41
|
-
},
|
|
42
|
-
// 是否选中
|
|
43
|
-
isselect: {
|
|
44
|
-
type: Boolean,
|
|
45
|
-
default: false,
|
|
46
|
-
},
|
|
47
|
-
// 默认显示地址
|
|
48
|
-
value:{
|
|
49
|
-
type: Object
|
|
50
|
-
},
|
|
51
|
-
// 下拉选择 || 树选择
|
|
52
|
-
showType: {
|
|
53
|
-
type: Boolean,
|
|
54
|
-
default: false
|
|
55
|
-
},
|
|
56
|
-
// 是否显示批量添加
|
|
57
|
-
isbasch: {
|
|
58
|
-
type: Boolean,
|
|
59
|
-
default: true,
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
data(){
|
|
63
|
-
return{
|
|
64
|
-
width: '90%'
|
|
65
|
-
}
|
|
66
|
-
},
|
|
67
|
-
methods:{
|
|
68
|
-
confirm(){
|
|
69
|
-
this.$emit('addressno')
|
|
70
|
-
},
|
|
71
|
-
// 关闭 弹窗
|
|
72
|
-
closeTree() {
|
|
73
|
-
this.isshow = false
|
|
74
|
-
this.$emit('addressno')
|
|
75
|
-
}
|
|
76
|
-
// 选中
|
|
77
|
-
// selectclick(newobj, address) {
|
|
78
|
-
// this.$emit('re-ref', newobj, address)
|
|
79
|
-
// }
|
|
80
|
-
},
|
|
81
|
-
watch:{
|
|
82
|
-
//显示改变且为true
|
|
83
|
-
'isshow'(val){
|
|
84
|
-
if(val){
|
|
85
|
-
//刷新数据
|
|
86
|
-
this.$refs.addresstree.init()
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
</script>
|
|
92
|
-
|
|
93
|
-
<style scoped>
|
|
94
|
-
|
|
95
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<modal :show.sync="isshow" :width='width' v-ref:modal backdrop="false">
|
|
3
|
+
<header slot="modal-header" class="modal-header">
|
|
4
|
+
<button type="button" class="close" @click="closeTree"><span>×</span></button>
|
|
5
|
+
<h4 class="modal-title">地址管理</h4>
|
|
6
|
+
</header>
|
|
7
|
+
<article slot="modal-body" class="modal-body">
|
|
8
|
+
<div class="from-group" style="height: 450px;overflow: auto;">
|
|
9
|
+
<address-tree :f_location="f_location" :isquery="isquery" :isinspect="true" :isbasch="isbasch" v-ref:addresstree></address-tree>
|
|
10
|
+
<!--<address-select v-if="isselect" :f_location="f_location" v-ref:addressSelect :show="showType" :value="value" @re-ref="selectclick"></address-select>-->
|
|
11
|
+
</div>
|
|
12
|
+
</article>
|
|
13
|
+
<footer slot="modal-footer">
|
|
14
|
+
<button type="button" class="btn btn-success" @click='confirm'>确认</button>
|
|
15
|
+
</footer>
|
|
16
|
+
</modal>
|
|
17
|
+
</template>
|
|
18
|
+
|
|
19
|
+
<script>
|
|
20
|
+
export default {
|
|
21
|
+
name: "AddressModel",
|
|
22
|
+
title: '地址管理弹窗',
|
|
23
|
+
props: {
|
|
24
|
+
// 地址查询方式
|
|
25
|
+
isquery: {
|
|
26
|
+
type: Boolean,
|
|
27
|
+
default: true,
|
|
28
|
+
},
|
|
29
|
+
//位置信息
|
|
30
|
+
f_location: {
|
|
31
|
+
type: Object,
|
|
32
|
+
default: {
|
|
33
|
+
f_locationId: '1535',
|
|
34
|
+
f_locationType: 't_organization',
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
//是否显示
|
|
38
|
+
isshow: {
|
|
39
|
+
type: Boolean,
|
|
40
|
+
default : false,
|
|
41
|
+
},
|
|
42
|
+
// 是否选中
|
|
43
|
+
isselect: {
|
|
44
|
+
type: Boolean,
|
|
45
|
+
default: false,
|
|
46
|
+
},
|
|
47
|
+
// 默认显示地址
|
|
48
|
+
value:{
|
|
49
|
+
type: Object
|
|
50
|
+
},
|
|
51
|
+
// 下拉选择 || 树选择
|
|
52
|
+
showType: {
|
|
53
|
+
type: Boolean,
|
|
54
|
+
default: false
|
|
55
|
+
},
|
|
56
|
+
// 是否显示批量添加
|
|
57
|
+
isbasch: {
|
|
58
|
+
type: Boolean,
|
|
59
|
+
default: true,
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
data(){
|
|
63
|
+
return{
|
|
64
|
+
width: '90%'
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
methods:{
|
|
68
|
+
confirm(){
|
|
69
|
+
this.$emit('addressno')
|
|
70
|
+
},
|
|
71
|
+
// 关闭 弹窗
|
|
72
|
+
closeTree() {
|
|
73
|
+
this.isshow = false
|
|
74
|
+
this.$emit('addressno')
|
|
75
|
+
}
|
|
76
|
+
// 选中
|
|
77
|
+
// selectclick(newobj, address) {
|
|
78
|
+
// this.$emit('re-ref', newobj, address)
|
|
79
|
+
// }
|
|
80
|
+
},
|
|
81
|
+
watch:{
|
|
82
|
+
//显示改变且为true
|
|
83
|
+
'isshow'(val){
|
|
84
|
+
if(val){
|
|
85
|
+
//刷新数据
|
|
86
|
+
this.$refs.addresstree.init()
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
</script>
|
|
92
|
+
|
|
93
|
+
<style scoped>
|
|
94
|
+
|
|
95
|
+
</style>
|