|
@@ -0,0 +1,214 @@
|
|
1
|
+<template>
|
|
2
|
+ <div class="c-share" v-if="show" @click="close">
|
|
3
|
+ <div class="c-share__content" @click.stop>
|
|
4
|
+
|
|
5
|
+ <div class="c-share__division">地址选择</div>
|
|
6
|
+ <ul class="c-list">
|
|
7
|
+ <li class="c-list__item" @click="tabClick('import')">
|
|
8
|
+ <div class="c-list__content">
|
|
9
|
+ <img
|
|
10
|
+ class="c-list__icon"
|
|
11
|
+ src="/static/share/icon_2.jpg"
|
|
12
|
+ alt
|
|
13
|
+ />
|
|
14
|
+ <div class="c-list__text">从微信导入</div>
|
|
15
|
+ </div>
|
|
16
|
+ </li>
|
|
17
|
+ <li class="c-list__item" @click="tabClick('add')">
|
|
18
|
+ <div class="c-list__content">
|
|
19
|
+ <img
|
|
20
|
+ class="c-list__icon"
|
|
21
|
+ src="/static/share/icon_3.jpg"
|
|
22
|
+ alt
|
|
23
|
+ />
|
|
24
|
+ <div class="c-list__text">添加地址</div>
|
|
25
|
+ </div>
|
|
26
|
+ </li>
|
|
27
|
+ </ul>
|
|
28
|
+ </div>
|
|
29
|
+ </div>
|
|
30
|
+</template>
|
|
31
|
+
|
|
32
|
+<script>
|
|
33
|
+export default {
|
|
34
|
+ name: "AddressSelect",
|
|
35
|
+ props: {
|
|
36
|
+ hideMany: {
|
|
37
|
+ type: Boolean,
|
|
38
|
+ default: false
|
|
39
|
+ },
|
|
40
|
+ },
|
|
41
|
+ // 数据
|
|
42
|
+ data() {
|
|
43
|
+ return {
|
|
44
|
+ show: false,
|
|
45
|
+ price: "",
|
|
46
|
+ callback: "",
|
|
47
|
+
|
|
48
|
+ distribution: false,
|
|
49
|
+ vip: false,
|
|
50
|
+ };
|
|
51
|
+ },
|
|
52
|
+
|
|
53
|
+ // 函数
|
|
54
|
+ methods: {
|
|
55
|
+ // 打开
|
|
56
|
+ open(callback) {
|
|
57
|
+ const self = this;
|
|
58
|
+
|
|
59
|
+ self.show = true;
|
|
60
|
+ // self.price = price
|
|
61
|
+ // self.distribution = distribution
|
|
62
|
+ // self.vip = vip
|
|
63
|
+ self.callback = callback;
|
|
64
|
+ },
|
|
65
|
+
|
|
66
|
+ // 关闭
|
|
67
|
+ close() {
|
|
68
|
+ const self = this;
|
|
69
|
+
|
|
70
|
+ self.show = false;
|
|
71
|
+
|
|
72
|
+ if (self.fn.getType(self.callback) === "function") {
|
|
73
|
+ self.callback();
|
|
74
|
+ }
|
|
75
|
+ },
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+ // 点击
|
|
79
|
+ tabClick(type){
|
|
80
|
+ self.$emit("share", type);
|
|
81
|
+ }
|
|
82
|
+ },
|
|
83
|
+
|
|
84
|
+ // 数据计算
|
|
85
|
+ computed: {},
|
|
86
|
+
|
|
87
|
+ // 数据监听
|
|
88
|
+ watch: {},
|
|
89
|
+};
|
|
90
|
+</script>
|
|
91
|
+
|
|
92
|
+<style lang="scss" scoped>
|
|
93
|
+.c-share {
|
|
94
|
+ position: fixed;
|
|
95
|
+ top: 0;
|
|
96
|
+ left: 0;
|
|
97
|
+ z-index: 995;
|
|
98
|
+ width: 100%;
|
|
99
|
+ height: 100%;
|
|
100
|
+ background-color: rgba(0, 0, 0, 0.4);
|
|
101
|
+
|
|
102
|
+ &__content {
|
|
103
|
+ position: absolute;
|
|
104
|
+ bottom: 0;
|
|
105
|
+ left: 0;
|
|
106
|
+ z-index: 100;
|
|
107
|
+ width: 100%;
|
|
108
|
+ background-color: #fff;
|
|
109
|
+ border-radius: px(16) px(16) 0 0;
|
|
110
|
+ }
|
|
111
|
+
|
|
112
|
+ &__box {
|
|
113
|
+ display: flex;
|
|
114
|
+ flex-direction: column;
|
|
115
|
+ align-items: center;
|
|
116
|
+ }
|
|
117
|
+
|
|
118
|
+ &__top {
|
|
119
|
+ display: flex;
|
|
120
|
+ justify-content: center;
|
|
121
|
+ align-items: center;
|
|
122
|
+ width: px(230);
|
|
123
|
+ height: px(230);
|
|
124
|
+ margin-top: px(-115);
|
|
125
|
+ border-radius: 50%;
|
|
126
|
+ background-color: #ef4a37;
|
|
127
|
+ }
|
|
128
|
+
|
|
129
|
+ &__icon {
|
|
130
|
+ width: px(137);
|
|
131
|
+ height: px(134);
|
|
132
|
+ }
|
|
133
|
+ &__vip {
|
|
134
|
+ margin-top: px(80);
|
|
135
|
+ color: #f8662a;
|
|
136
|
+ }
|
|
137
|
+ &__title {
|
|
138
|
+ font-size: px(42);
|
|
139
|
+ margin-top: px(30);
|
|
140
|
+ color: #333;
|
|
141
|
+ &.mt {
|
|
142
|
+ margin-top: px(80);
|
|
143
|
+ }
|
|
144
|
+ }
|
|
145
|
+
|
|
146
|
+ &__price {
|
|
147
|
+ margin-top: px(70);
|
|
148
|
+ }
|
|
149
|
+
|
|
150
|
+ &__division {
|
|
151
|
+ display: flex;
|
|
152
|
+ justify-content: space-between;
|
|
153
|
+ align-items: center;
|
|
154
|
+ margin-top: px(60);
|
|
155
|
+ font-size: px(34);
|
|
156
|
+ color: #999;
|
|
157
|
+
|
|
158
|
+ &:before,
|
|
159
|
+ &:after {
|
|
160
|
+ content: "";
|
|
161
|
+ display: block;
|
|
162
|
+ width: px(460);
|
|
163
|
+ height: px(3);
|
|
164
|
+ background-color: #e7e7e7;
|
|
165
|
+ }
|
|
166
|
+ }
|
|
167
|
+}
|
|
168
|
+
|
|
169
|
+.c-price {
|
|
170
|
+ display: flex;
|
|
171
|
+ align-items: baseline;
|
|
172
|
+
|
|
173
|
+ &__sign {
|
|
174
|
+ font-size: px(26);
|
|
175
|
+ color: #f8662a;
|
|
176
|
+ }
|
|
177
|
+
|
|
178
|
+ &__text {
|
|
179
|
+ font-size: px(54);
|
|
180
|
+ color: #f8662a;
|
|
181
|
+ }
|
|
182
|
+}
|
|
183
|
+
|
|
184
|
+.c-list {
|
|
185
|
+ display: flex;
|
|
186
|
+ justify-content: space-around;
|
|
187
|
+ height: px(345);
|
|
188
|
+ padding-top: px(70);
|
|
189
|
+
|
|
190
|
+ &__item {
|
|
191
|
+ flex: 1;
|
|
192
|
+ }
|
|
193
|
+
|
|
194
|
+ &__content {
|
|
195
|
+ display: flex;
|
|
196
|
+ flex-direction: column;
|
|
197
|
+ align-items: center;
|
|
198
|
+ }
|
|
199
|
+
|
|
200
|
+ &__icon {
|
|
201
|
+ width: px(100);
|
|
202
|
+ height: px(100);
|
|
203
|
+ margin-bottom: px(20);
|
|
204
|
+ }
|
|
205
|
+
|
|
206
|
+ &__text {
|
|
207
|
+ display: flex;
|
|
208
|
+ flex-direction: column;
|
|
209
|
+ align-items: center;
|
|
210
|
+ font-size: px(32);
|
|
211
|
+ color: #999;
|
|
212
|
+ }
|
|
213
|
+}
|
|
214
|
+</style>
|