123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <view class="page">
- <view class="goods-detail">
- <view class="order-num">
- <text>订单号:</text>
- <text>Cbz20220809122323456</text>
- </view>
- <view class="detail">
- <image class="order-img"
- src="https://img12.360buyimg.com/jdcms/s460x460_jfs/t1/226637/16/19995/180517/66696f86Fa90c7d49/3bc094e1eb7aeb12.jpg.avif"
- mode=""></image>
- <view class="detail-right">
- <view class="title-price">
- <view class="title">
- OATLY噢麦力 咖啡大师…
- </view>
- <view class="price">
- <text style="font-size: 20rpx;">¥</text>
- <text>133</text>.
- <text style="font-size: 20rpx;">22</text>
- </view>
- </view>
- <view class="specifications">
- <view class="title">
- 咖啡大师燕麦奶250ml*6瓶
- </view>
- <text>x1</text>
- </view>
- </view>
- </view>
- <view class="address">
- <view class="name-address">
- 张**,***********,河北省保定区莲池区未来石*********
- </view>
- <image class="eye-icon" src="../../static/mine/347.png" mode=""></image>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- },
- mounted() {
- uni.setNavigationBarTitle({
- title: "立即发货"
- })
- }
- }
- </script>
- <style lang="scss" scoped>
- .page {
- padding: 20rpx 24rpx;
- .goods-detail {
- background-color: #fff;
- border-radius: 16rpx;
- padding: 26rpx 20rpx;
- .order-num {
- font-size: 26rpx;
- color: #333;
- }
- .detail {
- margin-top: 28rpx;
- display: flex;
- padding-bottom: 20rpx;
- border-bottom: 2rpx solid #F4F4F4;
- .order-img {
- width: 180rpx;
- height: 180rpx;
- border-radius: 10rpx;
- margin-right: 20rpx;
- }
- .detail-right {
- width: 70%;
- .title-price {
- display: flex;
- font-size: 28rpx;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 16rpx;
- .title {
- width: 330rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- .specifications {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 28rpx;
- color: #777;
- margin-top: 10rpx;
- .title {
- width: 330rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- }
- }
- }
- .address{
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 20rpx;
- .name-address{
- font-size: 26rpx;
- color: #333;
- width: 72%;
- }
- .eye-icon{
- width: 32rpx;
- height: 32rpx;
-
- }
- }
- }
- }
- </style>
|