123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <template>
- <!-- 添加包裹 -->
- <view class="back">
- <view class="box">
- <view class="boxitem u-flex">
- <text class="name">快递单号</text>
- <input style="flex: 1;" type="text" placeholder="输入快递单号,快速添加到我的包裹" />
- </view>
- </view>
- <view class="box">
- <view class="boxitem u-flex">
- <text class="name">快递公司</text>
- <input style="flex: 1;" type="text" placeholder="输入快递公司名称" />
- </view>
- </view>
- <view class="box">
- <view class="boxitem u-flex">
- <text class="name">包裹重量</text>
- <input style="flex: 1;" type="text" placeholder="请输入包裹重量" />
- <text>kg</text>
- </view>
- </view>
- <view class="btn">
- 添加到包裹列表
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss" scoped>
- .btn {
- width: 686rpx;
- height: 88rpx;
- background: #F83224;
- border-radius: 44rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- line-height: 88rpx;
- text-align: center;
- font-style: normal;
- margin-top: 94rpx;
- }
- .back {
- box-sizing: border-box;
- padding: 20rpx 24rpx;
- }
- .box {
- padding: 0 28rpx;
- box-sizing: border-box;
- width: 702rpx;
- // height: 324rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- .boxitem {
- height: 100rpx;
- width: 646rpx;
- border-bottom: 2rpx solid rgba(151, 151, 151, 0.1);
- box-sizing: border-box;
- }
- .name {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #222222;
- line-height: 42rpx;
- text-align: left;
- font-style: normal;
- margin-right: 44rpx;
- }
- }
- </style>
|