odc.xiaohui
2023-04-07 f693c859cdaf607c2a146ef89a7a2ce0d9476d1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<view class="content">
    <van-empty class="empty" description="暂无数据" wx:if="{{causeList.length === 0}}"></van-empty>
    <view class="lists" wx:for="{{causeList}}" wx:key="id">
            <view class="item2">
               <image class="icon" src="../../../../icon/notice.png"></image>
               <span class="content">群公告</span>
               <view class="item">{{item.ctime}}</view>
            </view>
            
            <view class="item3">{{item.text}}</view>
          
            <!-- <van-button type="info" bind:click="causeListAdd">添加</van-button> -->
        </view>
</view>