This commit is contained in:
kbing1981 2024-07-03 15:26:53 +08:00
parent e07afc1a7a
commit 54413ee587
3 changed files with 33 additions and 20 deletions

View File

@ -80,8 +80,7 @@
<span>-{{couponDataList}}</span>
</view>
<span v-else >选择优惠劵</span>
<image class="fuwu-img" src="../../static/images/my/jiantou.png" mode=""></image>
</view>
</view>
</view>
</view>

View File

@ -15,7 +15,7 @@
</view>
<view class="u-flex-1 margin-left-sm" style="display: flex;flex-direction: column;justify-content: space-around;">
<view class="flex head-title-right">
<view class="margin-right-xs text-df u-skeleton-fillet head-title">
<view class="margin-right-xs u-skeleton-fillet head-title">
{{order.ordersPackageList[0].title}}
</view>
<view class="zhuangtai">
@ -65,7 +65,7 @@
</view>
<view class="fei-view-list-z">
<span>总金额</span>
<span style="color: #FF3939;font-size: 29rpx;">{{order.payMoney}}</span>
<span style="color: #FF3939;font-weight: bold;font-size: 32rpx; ">{{order.payMoney}}</span>
</view>
</view>
</view>
@ -99,7 +99,7 @@
</view>
<radio-group name="openWay" style="margin-left: 45upx;" @tap='selectWay(item)'>
<label class="tui-radio">
<radio color="#096f4b" :checked="openWay === item.id ? true : false" />
<radio color="#019c88" :checked="openWay === item.id ? true : false" />
</label>
</radio-group>
</view>
@ -1286,8 +1286,9 @@
text-overflow: ellipsis;
}
.fei-view-list span,.fei-view-list-z span{
font-weight: bold;
font-size: 25rpx;
font-size: 28rpx;
height: 60rpx;
line-height: 60rpx;
}
.fei-view-list-z{
height: 65rpx;
@ -1300,6 +1301,7 @@
}
.fei-view-list span:nth-child(2){
color: #333333;
font-weight: bold;
}
.fei-view-list,.fei-view-list-z{
width: 100%;
@ -1318,7 +1320,7 @@
width: 100%;
text-align: center;
font-weight: bold;
font-size: 29rpx;
font-size: 30rpx;
color: #333333;
padding-bottom: 10px;
margin-bottom: 10px;
@ -1422,9 +1424,9 @@
}
.pay-title{
font-weight: bold;
font-size: 28rpx;
font-size: 32rpx;
color: #333333;
margin-bottom: 5px;
margin-bottom: 8px;
}
page {
background: #f7f7f7;
@ -1591,11 +1593,12 @@
width: 90%;
margin: 0 auto;
text-align: center;
background: linear-gradient(to right, #223845, #00a85b);
background: linear-gradient(90deg, #019C88, #28BA92, #35C495);
height: 80rpx;
border-radius: 60rpx;
color: #ffffff;
line-height: 80rpx;
font-size: 34rpx;
}
.serverAddress {

View File

@ -21,8 +21,9 @@
<image :src="item.packageImg" mode="" class="item-img"></image>
<view class="item-view">
<view class="item-view-title">
{{item.title}}
<view class="view-cata">
<view class="item-view-title">{{item.title}}</view>
<span class="xiaoer item-view-biao">{{item.classifyName}}</span>
</view>
<view class="item-view-bottom-qian">
<span></span>
@ -36,8 +37,7 @@
</view>
<view class="item-view-bottom">
<view class="item-view-xiangmu">
<span class="xiaoer item-view-biao">{{item.classifyName}}</span>
<span>已售{{item.sales}}w+ <!-- | 好评{{item.esteemRate}}% --></span>
<span>已售</span><span>{{item.sales}}w+</span><!-- | 好评{{item.esteemRate}}% -->
</view>
<view class="item-view-bottom-btn">
查看
@ -218,7 +218,7 @@
}
.item-view-jianjie{
font-weight: 400;
font-size: 22rpx;
font-size: 26rpx;
color: #848484;
margin:5px 0px;
display: -webkit-box;
@ -228,8 +228,8 @@
text-overflow: ellipsis;
}
.item-view-biao{
padding: 1px 2px;
border-radius: 6rpx;
padding: 1px 5px;
border-radius: 15rpx 3rpx 15rpx 3rpx;
}
.tuina{
background-color:#d1f2df;
@ -250,7 +250,11 @@
.item-view-xiangmu span:nth-child(2){
font-weight: normal;
color: #666666;
margin-left: 5px;
}
.item-view-xiangmu span:nth-child(1){
font-weight: normal;
color: #999;
margin-right: 5rpx;
}
.item-view-xiangmu{
width: 100%;
@ -258,11 +262,14 @@
flex-direction: row;
font-weight: 400;
font-size: 25rpx;
align-items: flex-end;
}
.item-view-title{
width: 80%;
font-weight: bold;
font-size: 32rpx;
color: #333333;
text-overflow: ellipsis;
}
.item-view{
width: 55%;
@ -423,5 +430,9 @@
position: fixed;
z-index: 999;
}
.view-cata{
display: flex;
flex-direction: row;
align-items: center;
}
</style>