This commit is contained in:
2020-08-11 09:36:03 +08:00
parent 003bc07c6b
commit a22b3fba71
4 changed files with 15 additions and 10 deletions

View File

@@ -1,11 +1,11 @@
<template>
<view class="notice">
<view v-for="(item,index) in notice" :key="index">
<view v-for="(item,index) in notice" :key="index" @click="gotoInfo(index)">
<view class="time_notice">{{ item.addtime }}</view>
<view class="notice_view">
<image :src="item.picture" mode="aspectFill" ></image>
<view class="text_view u-line-2">{{ item.content }}</view>
<view class="notice_list" @click="gotoInfo(index)">
<view class="notice_list">
<text>查看详情</text>
<u-icon name="arrow-right" color="#666"></u-icon>
</view>