123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- <template>
- <view class="page">
- <view class="address">
- <view class="address-top">
- <text space="emsp" class="top_left_text">跨境中转仓库地址 {{" "}}</text>
- <text class="top_right_text">请先将包裹寄往这个地址~</text>
- </view>
- <view class="address-content">
- <image class="address-icon" src="../../static/mine/346.png" mode=""></image>
- <view class="">
- <view class="warehouse-phone">
- <text class="warehouse-name">贝德福德郡FBA仓库</text>
- <text class="phone" space="emsp">{{" "}} 18292882813</text>
- </view>
- <view class="detail">
- 上海市上海市宝山区杨行镇联谊路190号
- </view>
- </view>
- </view>
- </view>
- <view class="express">
- <view class="_input-1 _input-2">
- <view class="_label">快递单号</view>
- <u--input placeholder="请输入快递单号" border="none" clearable></u--input>
- </view>
- <view class="_input-1">
- <view class="_label">快递公司</view>
- <u--input placeholder="请输入快递公司名称" border="none" clearable></u--input>
- </view>
- </view>
- <view class="footer">
- <button class="btn-2">保存</button>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- },
- mounted() {
- uni.setNavigationBarTitle({
- title: "寄快递"
- })
- }
- }
- </script>
- <style lang="scss" scoped>
- .page {
- padding: 20rpx 24rpx;
- position: relative;
- .address {
- padding: 0 20rpx;
- background-color: #fff;
- border-radius: 16rpx;
- .address-top {
- height: 96rpx;
- line-height: 96rpx;
- border-bottom: 2rpx solid rgba(151, 151, 151, .1);
- .top_left_text {
- font-size: 28rpx;
- color: #222;
- font-weight: 600;
- }
- .top_right_text {
- font-size: 24rpx;
- color: #F83224;
- }
- }
- .address-content {
- display: flex;
- align-items: center;
- padding: 22rpx 0 32rpx;
- .address-icon {
- width: 28rpx;
- height: 28rpx;
- margin-right: 24rpx;
- }
- .warehouse-phone {
- display: flex;
- align-items: center;
- margin-bottom: 14rpx;
- .warehouse-name {
- font-size: 30rpx;
- font-weight: 600;
- color: #222222;
- }
- .phone {
- color: #555555;
- font-size: 24rpx;
- }
- }
- .detail {
- font-size: 26rpx;
- color: #777777;
- }
- }
- }
- .express {
- border-radius: 16rpx;
- background-color: #fff;
- padding: 0 20rpx;
- margin-top: 20rpx;
- ._input-1 {
- display: flex;
- align-items: center;
- height: 100rpx;
- ._label{
- font-size: 28rpx;
- color: #222;
- margin-right: 32rpx;
- }
- }
- ._input-2{
- border-bottom: 2rpx solid rgba(151, 151, 151, .1);
- }
- }
- .footer {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 95%;
- background-color: #fff;
- height: 126rpx;
- justify-content: center;
- padding: 20rpx;
- .btn-2 {
- height: 76rpx;
- padding: 0;
- margin: 0;
- font-size: 28rpx;
- color: #fff;
- min-width: 188rpx;
- background-color: #f83224;
- border-radius: 38rpx;
- box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255,21,21,0.5);
- }
- }
- }
- </style>
|