Files
yshopb2c-uniapp/components/sh-activity-goods.vue

41 lines
869 B
Vue
Raw Normal View History

2020-09-03 02:58:31 +08:00
<template>
2020-09-03 11:43:50 +08:00
<view class="min-goods" @tap="jump('/pages/activity/GroupDetails/index', { id: detail.id })">
2020-09-03 02:58:31 +08:00
<view class="img-box">
<view class="tag" >{{ detail.people}}人团</view>
<image class="img" :src="detail.image" mode="widthFix"></image>
</view>
<view class="price-box">
<view class="y-f">
<text class="seckill-current">{{ detail.price }}</text>
<text class="original">销量{{ detail.sales }}{{detail.unitName}}</text>
2020-09-03 02:58:31 +08:00
</view>
</view>
<view class="title"><slot name="titleText"></slot></view>
</view>
</template>
<script>
export default {
components: {},
data() {
return {};
},
props: {
detail: Object
},
computed: {},
methods: {
// 路由跳转
2020-09-03 11:43:50 +08:00
jump(path, query) {
this.$yrouter.push({
path,
query
});
2020-09-03 02:58:31 +08:00
}
}
};
</script>
<style lang="scss">
</style>