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.
49 lines
1.1 KiB
49 lines
1.1 KiB
|
|
<template> |
|
<view class="article-box"> |
|
<view class="headline">楚牛电商一季度卖了300亿,原因竟是这?</view> |
|
<view class=""> |
|
<image src="../../../static/images/cart.png" mode=""></image> |
|
<view class="">云快讯</view> |
|
<view class="">203 </view> |
|
<view>3小时前</view> |
|
</view> |
|
<view class="statement">转载声明:本文由云快讯收录,观点仅代表作者本人。不代表云快讯立场,云快讯不对所包含的准确性,可靠性或完整性提供任何明示,请自行承担任何责任。</view> |
|
<image src="../../../static/images/gd1.png" mode="" class="article-bg1"></image> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import { getCategory , getProducts, getArticle} from "@/api/store"; |
|
export default{ |
|
data() { |
|
return{ |
|
id:this.id, |
|
} |
|
}, |
|
methods:{ |
|
}, |
|
onLoad: function (option) { |
|
this.id= this.$yroute.query.id; |
|
console.log(this.id) |
|
|
|
} |
|
|
|
|
|
} |
|
</script> |
|
|
|
<style lang="less"> |
|
.article-box{ |
|
width: 100%; |
|
min-height: 100vh; |
|
background: #F5F6F7; |
|
padding: 0 40rpx; |
|
} |
|
.headline{ |
|
font-size: 32rpx; |
|
color: #333333; |
|
padding-top: 30rpx; |
|
margin-bottom: 60rpx; |
|
} |
|
</style>
|
|
|