ShowAnnouncement.vue 3.3 KB
Newer Older
1 2
<template>
  <a-modal
3 4
    class="announcementCustomModal"
    :width="modelStyle.width"
5 6 7
    :visible="visible"
    :bodyStyle ="bodyStyle"
    @cancel="handleCancel"
8
    destroyOnClose>
9 10 11
    <template slot="title">
      <a-button icon="fullscreen" class="custom-btn" @click="handleClickToggleFullScreen"/>
    </template>
12 13 14 15
    <template slot="footer">
      <a-button key="back" @click="handleCancel">关闭</a-button>
      <a-button v-if="record.openType==='url'&&record.readFlag!=='1'" type="primary" @click="toHandle">去处理</a-button>
    </template>
16
    <a-card class="daily-article" :loading="loading">
17 18
      <a-card-meta
        :title="record.titile"
19 20
        :description="'发布人:'+record.sender + ' 发布时间: ' + record.sendTime">
      </a-card-meta>
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
      <a-divider />
      <span v-html="record.msgContent" class="article-content"></span>
    </a-card>
  </a-modal>
</template>

<script>
  export default {
    name: "SysAnnouncementModal",
    components: {
    },
    data () {
      return {
        title:"通知消息",
        record: {},
        labelCol: {
          xs: { span: 24 },
          sm: { span: 5 },
        },
        wrapperCol: {
          xs: { span: 24 },
          sm: { span: 16 },
        },
        visible: false,
        loading: false,
        bodyStyle:{
          padding: "0",
          height:(window.innerHeight*0.8)+"px",
49 50
          "overflow-y":"auto",

51
        },
52 53 54 55 56
        modelStyle:{
          width: '60%',
          style: { top: '20px' },
          fullScreen: false
        }
57 58 59 60 61 62 63 64 65 66 67 68
      }
    },
    created () {
    },
    methods: {
      detail (record) {
        this.visible = true;
        this.record = record;
      },
      handleCancel () {
        this.visible = false;
      },
69 70 71 72 73 74 75 76 77 78 79
      /** 切换全屏显示 */
      handleClickToggleFullScreen() {
        let mode = !this.modelStyle.fullScreen
        if (mode) {
          this.modelStyle.width = '100%'
          this.modelStyle.style.top = '20px'
        } else {
          this.modelStyle.width = '60%'
          this.modelStyle.style.top = '50px'
        }
        this.modelStyle.fullScreen = mode
80 81 82 83 84 85 86 87
      },
      toHandle(){
        if(this.record.openType==='url'&&this.record.readFlag!== '1'){
          this.visible = false;
          //链接跳转
          this.$router.push({path: this.record.openPage})
        }
      },
88 89 90 91
    }
  }
</script>

92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
<style lang="less">
  .announcementCustomModal{
    .ant-modal-header {
      border: none;
      display: inline-block;
      position: absolute;
      z-index: 1;
      right: 56px;
      padding: 0;
      .ant-modal-title{
        .custom-btn{
          width: 56px;
          height: 56px;
          border: none;
          box-shadow: none;
        }
      }
    }
    .daily-article{
      border-bottom: 0;
    }
  }
</style>
115 116
<style scoped lang="less">
  .daily-article {
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
    .article-button {
      font-size: 1.2rem !important;
    }
    .ant-card-body {
      padding: 18px !important;
    }
    .ant-card-head {
      padding: 0 1rem;
    }
    .ant-card-meta {
      margin-bottom: 1rem;
    }
    .article-content {
      p {
        word-wrap: break-word;
        word-break: break-all;
        text-overflow: initial;
        white-space: normal;
        font-size: .9rem !important;
        margin-bottom: .8rem;
      }
    }
139
  }
140
</style>