This commit is contained in:
2022-07-08 17:29:23 +08:00
parent f164377cc1
commit f03e2c78c4
4 changed files with 165 additions and 136 deletions

View File

@@ -10,6 +10,9 @@
<view class="item--content">
<view class="title">{{goodsInfo.goods_name}}</view>
<view class="sub_title" v-if="goodsInfo.shop">{{goodsInfo.shop.name}}</view>
<view class="unit" v-if="goodsInfo.unit">
{{goodsInfo.unit}}
</view>
<view class="price">{{goodsInfo.price || '0'}}
<view class="price-type">
<text> DT积分</text>
@@ -22,7 +25,7 @@
<view class="block info-box">
<view class="info-item">
<view class="label">申请类型</view>
<view class="nowrap info-item-title" >我要退款无需退货</view>
<view class="nowrap info-item-title">我要退款无需退货</view>
</view>
<view class="info-item">
<view class="label">申请原因</view>
@@ -82,8 +85,8 @@
params = {
title: this.ttext,
remark: this.remark,
pictures: [],
type:1,
pictures: [],
type: 1,
};
if (this.ttext === '请选择申请原因') {
uni.showToast({
@@ -179,6 +182,7 @@
}
}
}
.goods-item {
background-color: #Fff;
width: 100%;
@@ -219,6 +223,12 @@
// @extend .ellipsis-1;
}
&>.unit {
color: #999;
font-size: 26rpx;
padding-top: 10rpx;
}
&>.price {
padding-top: 10rpx;
display: flex;