多规格增加

This commit is contained in:
2022-07-08 16:16:13 +08:00
parent d3185b6e26
commit 49cf009ec7
12 changed files with 2403 additions and 1547 deletions

View File

@@ -23,7 +23,13 @@
<view class="order--flex" @click="$Router.push({ name: 'StoreGoods', params: {id: item.items[0].goods_id}})">
<image class="order--cover" :src="item.items[0].cover" mode="aspectFill"></image>
<view class="order--title">{{item.items[0].goods_name}}</view>
<view class="order--title">
{{item.items[0].goods_name}}
<view class="unit">
{{item.items[0].sku.unit}}
</view>
</view>
<view class="order--count">
<view class="order--price">{{item.items[0].price}}<text>DT积分</text></view>
<view class="order--sum">{{item.items[0].qty}}</view>
@@ -85,7 +91,7 @@
getOrder() {
refunds({
page: this.page
}).then(res => {
}).then(res => {
if (res.page.current === 1) {
this.array = []
}
@@ -234,6 +240,11 @@
padding-left: $margin;
font-size: 28rpx;
line-height: 40rpx;
}
.unit{
color:#999;
font-size: 26rpx;
padding-top: 10rpx;
}
.order--count {