-
zhangwei
2024-08-29 447e19fa298ae11a1c3a3fa2d2ff3a1a8dba0501
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<template>
    <view class="wrap">
        <view class="top">
            <view class="item">
                <view class="left">收货人</view>
                <input type="text" placeholder-class="line" placeholder="请填写收货人姓名" />
            </view>
            <view class="item">
                <view class="left">手机号码</view>
                <input type="text" placeholder-class="line" placeholder="请填写收货人手机号" />
            </view>
            <view class="item" @tap="showRegionPicker">
                <view class="left">所在地区</view>
                <input disabled type="text" placeholder-class="line" placeholder="省市区县、乡镇等" />
            </view>
            <view class="item address">
                <view class="left">详细地址</view>
                <textarea type="text" placeholder-class="line" placeholder="街道、楼牌等" />
            </view>
            <!-- <view class="site-clipboard">
                <textarea placeholder-class="line" value="" placeholder="粘贴文本,可自动识别姓名和地址等" />
                <view class="clipboard">
                    地址粘贴板
                    <up-icon name="arrow-down" class="icon" :size="20"></up-icon>
                </view>
            </view> -->
        </view>
        <view class="bottom">
            <view class="tag">
                <view class="left">标签</view>
                <view class="right">
                    <text class="tags">家</text>
                    <text class="tags">公司</text>
                    <text class="tags">学校</text>
                    <view class="tags plus"><up-icon size="22" name="plus"></up-icon></view>
                </view>
            </view>
            <view class="default">
                <view class="left">
                    <view class="set">设置默认地址</view>
                    <view class="tips">提醒:每次下单会默认推荐该地址</view>
                </view>
                <view class="right"><switch color="red" @change="setDefault" /></view>
            </view>
        </view>
        <up-picker mode="region" ref="uPicker" v-model="show" />
    </view>
</template>
 
<script>
export default {
    data() {
        return {
            show: false
        };
    },
    methods: {
        setDefault() {},
        showRegionPicker() {
            this.show = true;
        }
    }
};
</script>
 
<style lang="scss" scoped>
:v-deep(.line) {
    color: $u-light-color;
    font-size: 28rpx;
}
.wrap {
    background-color: #f2f2f2;
    .top {
        background-color: #ffffff;
        border-top: solid 2rpx $u-border-color;
        padding: 22rpx;
        .item {
            display: flex;
            font-size: 32rpx;
            line-height: 100rpx;
            align-items: center;
            border-bottom: solid 2rpx $u-border-color;
            .left {
                width: 180rpx;
            }
            input {
                text-align: left;
            }
        }
        
        .address {
            padding: 20rpx 0;
            textarea {
                // width: 100%;
                height: 150rpx;
                background-color: #f7f7f7;
                line-height: 60rpx;
                margin: 40rpx auto;
                padding: 20rpx;
            }
        }
        .site-clipboard {
            padding-right: 40rpx;
            textarea {
                // width: 100%;
                height: 150rpx;
                background-color: #f7f7f7;
                line-height: 60rpx;
                margin: 40rpx auto;
                padding: 20rpx;
            }
            .clipboard {
                display: flex;
                justify-content: center;
                align-items: center;
                font-size: 26rpx;
                color: $u-tips-color;
                height: 80rpx;
                .icon {
                    margin-top: 6rpx;
                    margin-left: 10rpx;
                }
            }
        }
    }
    .bottom {
        margin-top: 20rpx;
        padding: 40rpx;
        padding-right: 0;
        background-color: #ffffff;
        font-size: 28rpx;
        .tag {
            display: flex;
            .left {
                width: 160rpx;
            }
            .right {
                display: flex;
                flex-wrap: wrap;
                .tags {
                    width: 140rpx;
                    padding: 16rpx 8rpx;
                    border: solid 2rpx $u-border-color;
                    text-align: center;
                    border-radius: 50rpx;
                    margin: 0 10rpx 20rpx;
                    display: flex;
                    font-size: 28rpx;
                    align-items: center;
                    justify-content: center;
                    color: $u-content-color;
                    line-height: 1;
                }
                .plus {
                    //padding: 10rpx 0;
                }
            }
        }
        .default {
            margin-top: 50rpx;
            display: flex;
            justify-content: space-between;
            border-bottom: solid 2rpx $u-border-color;
            line-height: 64rpx;
            .tips {
                font-size: 24rpx;
            }
            .right {
            }
        }
    }
}
</style>