You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.0 KiB
47 lines
1.0 KiB
<template>
|
|
<view class="mall_order_product_cn">
|
|
<view class="padding-30 radius-20 bg-ff">
|
|
<view class="item margin-top-50 flex align-start" v-for="(item,index) in list" :key="index">
|
|
<image class="jc-image-180 radius-10" :src="item.product_cover_img" mode="aspectFill"></image>
|
|
<view class="margin-left-30 flex-one">
|
|
<view class="line-height-35 text-24 text-cut-one">
|
|
{{item.product_name}}
|
|
</view>
|
|
<view class="margin-top-20 line-30 height-60 text-cut-two text-22 text-80">
|
|
{{item.product_sku_name}}
|
|
</view>
|
|
<view class="margin-top-25 flex align-center justify-between">
|
|
<text class="text-price text-32 text-bold text-main">{{item.product_price}}</text>
|
|
<text class="text-24 text-4d">x{{item.number}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
list: {
|
|
type: Array,
|
|
default: []
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.item:first-child {
|
|
margin-top: 0 !important;
|
|
}
|
|
</style>
|