..
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<view class="content">
|
||||
<view id="poster" class="poster">
|
||||
<view id="poster" :class="['poster', {'vip_bg': seekData.is_vip}]">
|
||||
<view class="top">
|
||||
<view class="top-cont">
|
||||
<image class="top-cont-img" src="https://cdn.douhuofalv.com/images/2023/04/24/a45643fc33ca42b7a430aee573a93da4.png" mode="widthFix"></image>
|
||||
@@ -13,6 +13,9 @@
|
||||
<view class="confirm-white">
|
||||
<view class="confirm-top">订单号 {{seekData.order_no}}</view>
|
||||
<view class="confirm-list">
|
||||
<view class="confirm-item" style="color: #CD7F32; font-weight: bold;" v-if="seekData.is_vip">
|
||||
<view class="confirm-item-label">VIP订单</view>
|
||||
</view>
|
||||
<view class="confirm-item" v-for="(item, index) in seekData.params">
|
||||
<view class="confirm-item-label">{{item.title}}</view>
|
||||
<view class="confirm-item-text" v-if="item.key == 'address'">{{item.value_text.province_name}}{{item.value_text.city}}</view>
|
||||
@@ -115,10 +118,16 @@
|
||||
height: 100%;
|
||||
overflow-y: scroll;
|
||||
position: fixed;
|
||||
&.vip_bg{
|
||||
background: linear-gradient(to bottom,#bf9960, #f9cd9e);
|
||||
}
|
||||
}
|
||||
|
||||
.poster {
|
||||
background-image: linear-gradient(to bottom,#041f79, #111e4b);
|
||||
&.vip_bg{
|
||||
background: linear-gradient(to bottom,#582700, #f9cd9e);
|
||||
}
|
||||
}
|
||||
|
||||
.top {
|
||||
|
||||
Reference in New Issue
Block a user