zhangmeng
2024-04-19 e3ba120cb766a17e098e58d11c39ffc600a3070c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<template>
  <view v-if="list && list.length > 0">
    <u-cell v-for="(item, index) in list" :key="index" :isLink="true" :border="true" @click="$emit('click', item)">
      <u-avatar slot="icon" :bg-color="item.noticeType == 2 ? '#2979ff' : '#19be6b'" :text="item.noticeType == 2 ? '公' : '通'" shape="square"></u-avatar>
      <view slot="title" class="notice-record-title">{{item.noticeTitle}}</view>
      <view slot="label" class="notice-record-desc">
        <view style="display: flex;">
          <u-icon name="clock" size="12"></u-icon>
          <text>{{item.createTime}}</text>
        </view>
        <view style="display: flex; margin-left: 16px;">
          <u-icon name="account" size="12"></u-icon>
          <text>{{item.remark}}</text>
        </view>
      </view>
    </u-cell>
    <!-- <u-loadmore :status="status" /> -->
  </view>
  <u-empty v-else></u-empty>
</template>
 
<script>
export default {
  props: {
    list: {
      type: Array,
      default: []
    },
    status: String
  }
}
</script>
 
<style lang="scss" scoped>
/deep/.u-cell__body {
  padding: 8px 0 !important;
}
.notice-record {
  display: flex;
  padding: 16px 0;
 
  &-content {
    margin-left: 8px;
  }
 
  &-title {
    font-size: 18px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
 
  &-title .read {
    color: #ccc;
  }
 
  &-desc {
    padding: 4px 0;
    font-size: 12px;
    color: #909399;
    display: flex;
  }
}
</style>