MrShi
21 小时以前 56d7ebbc6297c306ec7197f29737a59703ca4bda
mini-program/pages/message/message.vue
@@ -7,23 +7,30 @@
         </view>
      </view>
      <view class="list">
         <view class="list-item" v-for="(item, index) in noticeList" :key="index">
            <view class="list-item-a">
               <text>{{item.title}}</text>
               <view class="dian" v-if="item.status == 0"></view>
            </view>
            <view class="list-item-b">
               {{item.content}}
            </view>
            <view class="list-item-xian"></view>
            <view class="list-item-c">
               <text>{{item.createDate}}</text>
               <view class="list-item-c-to">
                  <text>查看详情</text>
                  <image src="/static/icon/ic_ar2@2x.png" mode="widthFix"></image>
         <template v-if="noticeList.length > 0">
            <view class="list-item" v-for="(item, index) in noticeList" :key="index">
               <view class="list-item-a">
                  <text>{{item.title}}</text>
                  <view class="dian" v-if="item.status == 0"></view>
               </view>
               <view class="list-item-b">
                  {{item.content}}
               </view>
               <view class="list-item-xian"></view>
               <view class="list-item-c">
                  <text>{{item.createDate}}</text>
                  <view class="list-item-c-to">
                     <text>查看详情</text>
                     <image src="/static/icon/ic_ar2@2x.png" mode="widthFix"></image>
                  </view>
               </view>
            </view>
         </view>
         </template>
         <template v-else>
            <view class="wushuju">
               <image src="/static/images/default_nodata_white.png" mode="widthFix"></image>
            </view>
         </template>
      </view>
   </view>
</template>
@@ -87,6 +94,17 @@
         width: 100%;
         padding: 22rpx 30rpx;
         box-sizing: border-box;
         .wushuju {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 200rpx;
            image {
               width: 320rpx;
               height: 320rpx;
            }
         }
         .list-item {
            width: 100%;
            padding: 30rpx;