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.
huazhiyu/pages/GoodsOn/GoodsOn.vue

56 lines
1.3 KiB

1 year ago
<template>
<view class="page">
1 year ago
1 year ago
<view class="goods-list">
1 year ago
<view class="list" v-for="(item,index) in 1" :key="index">
1 year ago
<view class="check" :style="isEdit?'display: flex':'display: none'">
<text class="iconfont icon-check"></text>
</view>
<view class="thumb">
1 year ago
<image src="/static/image/x.png" mode=""></image>
1 year ago
</view>
<view class="item">
<view class="title">
1 year ago
<text class="two-omit">珠宝</text>
1 year ago
</view>
<view class="price-more">
<view class="price">188.00</view>
1 year ago
<!-- <view class="depreciate" :style="!isEdit?'display: flex':'display: none'">
1 year ago
<text>比关注时降价300.00</text>
1 year ago
</view> -->
1 year ago
</view>
1 year ago
<!-- <view class="goods-btn">
1 year ago
<view class="btn">
<text>看相似</text>
<text>降价通知</text>
</view>
<view class="cart">
<text class="iconfont icon-cart"></text>
</view>
1 year ago
</view> -->
1 year ago
</view>
</view>
</view>
<view class="footer-btn" :style="isEdit?'display: flex':'display: none'">
<view class="btn">取消关注</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
isEdit: false,
};
},
methods:{
}
}
</script>
<style scoped lang="scss">
@import 'GoodsOn.scss';
</style>