Blame view

src/views/home/notice/index.vue 1.28 KB
be966eff   jack   1.添加文件
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
  <template>
    <div class="notice">
      <p style="text-align:right;padding-bottom:10px;margin:0;line-height:40px;"><el-button size="small" icon="el-ump-qingchu">全部标记已读</el-button></p>
      <div class="notice-list">
        <div class="title">
          <el-badge value="未读" class="item">
            <b>我是标题</b>
          </el-badge>
          <span style="float:right">2019/12/25 10:29</span>
        </div>
        <div class="content">
          我是消息详细内容,此段文字仅用来占位,我是消息详细内容,此段文字仅用来占位,我是消息详细内容,此段文字仅用来占位,我是消息详细内容,此段文字仅用来占位,我是消息详细内容,此段文字仅用来占位,我是消息详细内容,此段文字仅用来占位,我是消息详细内容,此段文字仅用来占位,我是消息详细内容,此段文字仅用来占位我是消息详细内容,此段文
        </div>
        <span style="float:right">展开 <i class="el-icon-caret-bottom" /></span>
        <div style="clear:both" />
      </div>
    </div>
  </template>
  <script>
  export default {
    name: 'Notice'
  }
  </script>
  <style scoped>
  .notice{
      max-width: 1100px;
      background: #fff;
      margin:0 auto;
      margin-top:15px;
    }
    b{
        padding-right:10px;
    }
  </style>