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.
 
 
 
 

65 lines
1.4 KiB

<template>
<view class="article-box">
<view class="headline">楚牛电商一季度卖了300亿原因竟是这</view>
<view class="information-box ">
<image src="../../../static/images/cart.png" mode=""></image>
<view class="acea-row">
<view class="name">云快讯</view>
<view class="">203 </view>
<view>3小时前</view>
</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;
}
.information-box{
width: 278rpx;
height: 72rpx;
}
.information-box image{
width: 72rpx;
height: 72rpx;
margin-right: 20rpx;
}
.name{
// width: 180rpx;
// height: 40rpx;
}
</style>