mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:13:26 +08:00
uniapp【优化】: 优化支付结果页面状态icon为主题色红色,页面容器属性mode设置类型
This commit is contained in:
@@ -20,7 +20,7 @@
|
|||||||
.price {
|
.price {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 40rpx;
|
font-size: 40rpx;
|
||||||
color: #ff7159;
|
color: #D33123;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
.desc {
|
.desc {
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
margin-top: 50rpx;
|
margin-top: 50rpx;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
line-height: 80rpx;
|
line-height: 80rpx;
|
||||||
background-color: #5ac725;
|
background-color: #D33123;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 200px;
|
border-radius: 200px;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<view class="layout-result-box">
|
<view class="layout-result-box">
|
||||||
<view class="item-box" v-if="state.status && state.paymentInfo?.status === OrderPayStatusEnum.yes">
|
<view class="item-box" v-if="state.status && state.paymentInfo?.status === OrderPayStatusEnum.yes">
|
||||||
<view class="icon">
|
<view class="icon">
|
||||||
<uv-icon name="checkmark-circle-fill" color="#5ac725" size="90"></uv-icon>
|
<uv-icon name="checkmark-circle-fill" color="#D33123" size="90"></uv-icon>
|
||||||
</view>
|
</view>
|
||||||
<view class="title">支付成功</view>
|
<view class="title">支付成功</view>
|
||||||
<view class="price">¥{{ state.paymentInfo?.money || '' }}</view>
|
<view class="price">¥{{ state.paymentInfo?.money || '' }}</view>
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="btn" @click="goOrderDetail()">查看详情</view>
|
<view class="btn" @click="goOrderDetail()">查看详情</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="item-box" v-if="state.status && state.paymentInfo?.status === OrderPayStatusEnum.no">
|
<view class="item-box" v-else>
|
||||||
<view class="icon">
|
<view class="icon">
|
||||||
<uv-icon name="close-circle-fill" color="#D33123" size="80"></uv-icon>
|
<uv-icon name="close-circle-fill" color="#D33123" size="80"></uv-icon>
|
||||||
</view>
|
</view>
|
||||||
|
|||||||
Reference in New Issue
Block a user