diff --git a/supplier/pages/order/index.vue b/supplier/pages/order/index.vue index f2c23a4..5727bd9 100644 --- a/supplier/pages/order/index.vue +++ b/supplier/pages/order/index.vue @@ -13,16 +13,21 @@ :refresher-triggered="tabItem.isRefresher" @refresherrefresh="onRefresherrefresh"> - - 订单状态 - {{ item.state }} + + 报价单号 + {{ item.q_sn }} - - 批次号 {{ item.batch_sn }} + + 批次号 + {{ item.batch_sn }} - - 报价单号 {{ item.q_sn }} - {{ item.deadline }} + + 订单状态 + {{ item.state }} + + + 创建时间 + {{ item.deadline_text }} @@ -164,41 +169,31 @@ padding: 0 20rpx; box-sizing: border-box; margin-bottom: 30rpx; - .upper{ - width: 100%; + .item{ padding: 20rpx 0; - // border-bottom: 1rpx solid #e5e5e5; box-sizing: border-box; - .order-btn{ - width: max-content; - height: 62rpx; - border-radius: 32rpx; - // border: 2rpx solid #777777; - // padding: 0 20rpx; - line-height: 60rpx; - font-size: 28rpx; - } - // 已通过 - .quoted-price{ - color: #777777; - } - // 待发起 - .wait{ - color: #1833F2; - } - // 待审核 - .passed{ - color: #0BCE5F; - } - // 未通过 - .refuse{ - color: #FF0000; + width: 100%; + font-size: 28rpx; + &:last-child{ + border-bottom: none; } } - .lower{ - padding: 20rpx 0; - font-size: 24rpx; - color: #777777; - } + } + + // 已通过 + .quoted-price{ + color: #777777; + } + // 待发起 + .wait{ + color: #1833F2; + } + // 待审核 + .passed{ + color: #0BCE5F; + } + // 未通过 + .refuse{ + color: #FF0000; }