<template> <view class= 'news'> <view class='news_item'> <image src='http://demo.dtcms.net/upload/201504/20/thumb_201504200046589514.jpg'></image> <view class='right'> <view class='tit'> woshi yieg biaoti </view> <view class='info'> <text>发表时间:2020-09-16</text> <text>浏览:</text> </view> </view> </view> </view></template><script> export default { data() { return { newslist:[] } }, methods: { async getNews (){ const res = await this.$myRequest({ url:'/api/getnewslist' }) this.newslist = res.data.message } }, onLoad(){ this.getNews() } }</script><style lang='scss'>.news{ .news_item{ display: flex; padding:10rpx 20rpx; border-bottom:1px solid $shop-color; image{ min-width:200rpx; max-width: 200rpx; height:75rpx; border:1px dashed #007AFF; } .right{ margin-left:15rpx; display: flex; flex-direction: column; justify-content: space-between; .tit{ font-size: 33rpx; } .info{ font-size: 25rpx; text:nth-child(2){ margin-left:30rpx; } } } }}</style>