123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <template>
- <view class="detail" @click="$emit('toDetail')">
- <view class="title">
- <view class="title-left">
- <image class="header-img"
- src="https://tse4-mm.cn.bing.net/th/id/OIP-C.uMf5AX3a6yYpIhpEkyDxiQAAAA?rs=1&pid=ImgDetMain"
- mode=""></image>
- <text>张三</text>
- <image class="right-325" src="../../../static/mine/325.png" mode=""></image>
- </view>
- <text class="order-status">待付款</text>
- </view>
- <view class="commodity-information">
- <view class="commodity-1">
- <image class="commodity-img"
- src="https://img11.360buyimg.com/jdcms/s460x460_jfs/t1/156939/24/43697/126104/6619de23F69802006/8432635baed61875.jpg.webp"
- mode=""></image>
- <view class="">
- <view class="commodity-2">
- <view class="commodity-title">
- OATLY 噢麦力 醇香燕麦…
- </view>
- <view class="commodity-price">
- <text style="font-size: 20rpx;">¥</text>
- <text>133</text>.
- <text style="font-size: 20rpx;">22</text>
- </view>
- </view>
- <view class="commodity-3">
- <view class="specifications">
- 【醇香】250ml*3
- </view>
- <view style="font-size: 24rpx;">
- x1
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="price">
- <text>需付款</text>
- <text style="font-size: 20rpx;">¥</text>
- <text>133</text>.
- <text style="font-size: 20rpx;">22</text>
- </view>
- <view class="btn-list">
- <button class="status-1">取消订单</button><button class="status-2">继续付款</button>
- </view>
- </view>
- </template>
- <script>
- import textRight from '../../accountSecurity/component/textRight.vue'
- export default {
- components: {
- textRight
- },
- data() {
- return {
- }
- },
- }
- </script>
- <style scoped lang="scss">
- .detail {
- padding: 28rpx 20rpx;
- background-color: #fff;
- border-radius: 16rpx;
- margin-top: 28rpx;
- .title {
- display: flex;
- justify-content: space-between;
- .title-left {
- display: flex;
- font-size: 32rpx;
- align-items: center;
- .header-img {
- width: 36rpx;
- height: 36rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .right-325 {
- width: 32rpx;
- height: 32rpx;
- }
- }
- .order-status {
- color: #f83224;
- font-size: 26rpx;
- }
- }
- .commodity-information {
- margin-top: 28rpx;
- .commodity-1 {
- display: flex;
- .commodity-img {
- width: 180rpx;
- height: 180rpx;
- margin-right: 20rpx;
- border-radius: 10rpx;
- }
- .commodity-2 {
- display: flex;
- justify-content: space-between;
- .commodity-title {
- width: 328rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- margin-right: 38rpx;
- }
- }
- .commodity-3{
- display: flex;
- justify-content: space-between;
- margin-top: 20rpx;
- color: #777;
- .specifications{
- font-size: 28rpx;
- color: #777;
- }
- }
- }
- }
- .price{
- display: flex;
- justify-content: flex-end;
- font-size: 28rpx;
- align-items: flex-end;
- }
- .btn-list{
- display: flex;
- justify-content: flex-end;
- margin-top: 34rpx;
- .status-1{
- background-color: #fff;
- border-radius: 34rpx;
- margin: 0;
- padding: 0;
- font-size: 28rpx;
- color: #222;
- width: 168rpx;
- height: 68rpx;
- line-height: 68rpx;
- margin-right: 20rpx;
- border: 2rpx solid #979797;
- }
- .status-2{
- background-color: #ffffff;
- border-radius: 34rpx;
- margin: 0;
- padding: 0;
- font-size: 28rpx;
- color: #f83224;
- width: 168rpx;
- height: 68rpx;
- line-height: 68rpx;
- border: 2rpx solid #f83224;
- }
- }
- }
- </style>
|