licp
2024-04-23 91b0174402dc5c993a3fc506d89bae7ba1e0ce99
src/view/notice.vue
@@ -4,11 +4,11 @@
  title="消息通知"
  :visible.sync="drawer"
  :direction="direction"
  :before-close="handleClose" style="height: 100vh;">
  :before-close="handleClose" style="height: 100vh;z-index: 9999999;">
    <div class="head">
      <div class="head-search">
        <label>消息类型:</label>
        <el-select v-model="type" placeholder="请选择" style="width: 150px;" size="small">
        <el-select v-model="type" placeholder="请选择" style="width: 150px;" size="small" @change="handleType">
        <el-option
          v-for="item in options"
          :key="item.value"
@@ -17,56 +17,74 @@
        </el-option>
      </el-select>
      </div>
      <el-dropdown style="margin-right: 20px;">
      <el-dropdown style="margin-right: 20px;" v-if="list.length>0" @command="handleDropdownAll">
        <span class="el-dropdown-link">
          <span class="more">&middot;&middot;&middot;</span>
        </span>
        <el-dropdown-menu slot="dropdown">
          <el-dropdown-item>
          <el-dropdown-item command="1">
            <i class="el-icon-check"></i>
            <span>标记所有消息为已读</span>
          </el-dropdown-item>
          <el-dropdown-item>
          <el-dropdown-item  command="2">
            <i class="el-icon-delete"></i>
            <span>删除所有已读消息</span>
          </el-dropdown-item>
        </el-dropdown-menu>
      </el-dropdown>
    </div>
    <div class="notice-content">
    <div class="notice-content" @scroll="scrollFn" v-loading="loading">
      <div class="notice-content-item" v-for="(m,i) in list" :key="i">
        <div class="btns">
          <el-dropdown style="margin-right: 20px;" trigger="click" @command="handleDropdown">
        <div class="btns" v-if="m">
          <el-dropdown style="margin-right: 20px;" trigger="click" @command="e=>handleDropdown(e,m)" v-if="m.messageType==2||m.messageType==3">
            <span class="el-dropdown-link">
              <span class="more" style="line-height: 26px;display: inline-block;">&middot;&middot;&middot;</span>
            </span>
            <el-dropdown-menu slot="dropdown">
              <el-dropdown-item v-for="(n,j) in dropdownList" :key="j" :command="n.value">
            <el-dropdown-menu slot="dropdown" v-if="m.messageType==2">
              <el-dropdown-item v-for="(n,j) in dropdownList0" :key="j" :command="n.value">
                {{ n.label }}
              </el-dropdown-item>
            </el-dropdown-menu>
            <el-dropdown-menu slot="dropdown" v-if="m.messageType==3">
              <el-dropdown-item v-for="(n,j) in dropdownList1" :key="j" :command="n.value">
                {{ n.label }}
              </el-dropdown-item>
            </el-dropdown-menu>
          </el-dropdown>
          <i class="el-icon-close" style="cursor: pointer;"></i>
          <i class="el-icon-close" style="cursor: pointer;" @click="handleDel(m)"></i>
        </div>
        <div class="content">
          <img :src="`../../static/img/notice-${m.type}.svg`" alt="" style="width: 50px;margin-right: 18px;">
          <img :src="`../../static/img/notice-${m.messageType}.svg`" alt="" style="width: 50px;margin-right: 18px;">
          <div class="content-info">
            <h4 style="font-weight: normal;margin-bottom: 4px;display: flex;align-items: center;justify-content: space-between;">
              <span>{{ m.title }}</span>
              <span class="time" style="color: #999999;font-size: 12px;">{{ m.time }}</span>
              <span>{{ m.theme }}<el-tag :type="!m.messageStatus?'danger':'success'" size="small" v-if="m.messageType==1||m.messageType==2||m.messageType==3" style="margin-left: 8px;">{{ !m.messageStatus?'未处理':'已处理' }}</el-tag></span>
              <span class="time" style="color: #999999;font-size: 12px;">{{ m.createTime }}</span>
            </h4>
            <p style="color: #999999;font-size: 14px;margin-bottom: 6px;" class="ellipsis-multiline">{{ m.content }}</p>
            <el-tag type="danger" size="small" v-if="m.status==0&&m.type==2" style="margin-bottom: 4px;">已拒绝</el-tag>
            <el-tag type="success" size="small" v-if="m.status==1&&m.type==2" style="margin-bottom: 4px;">已接收</el-tag>
            <p style="color: #999999;font-size: 14px;margin-bottom: 6px;cursor: pointer;" class="ellipsis-multiline" @click="goNoticeDetail(m)">{{ m.content }}</p>
            <p style="font-size: 12px;color: #999999;display: flex;align-items: center;justify-content: space-between;">
              <span>发送人:{{m.sendUser}}</span>
              <span>收件人:{{ m.getUser }}</span>
              <span>发送人:{{m.createUser}}</span>
              <span>收件人:{{ m.consigneeUser }}</span>
            </p>
          </div>
        </div>
        <div class="new-notice" v-if="m.isRead==0">
        <div class="new-notice" v-if="!m.viewStatus">
          <span>new</span>
        </div>
      </div>
      <div v-if="list.length<1&&!loading&&!isLoding" style="color:#909399;font-size:14px;text-align: center;margin-top:200px" >暂无数据</div>
      <div v-if="list.length>0">
        <el-button
          v-if="isLoding"
          type="text"
          style="display: flex; margin: 0 auto; color: #909399"
          ><i class="el-icon-loading" style="font-size:20px"></i
        ></el-button>
         <el-button
          type="text"
          v-if="finishLoding"
          style="display: flex; margin: 0 auto; color: #909399"
          >已经没有更多啦~</el-button
        >
      </div>
    </div>
  </el-drawer>
@@ -74,6 +92,7 @@
</template>
<script>
export default {
  data(){
    return{
@@ -81,144 +100,81 @@
      direction:'rtl',
      options:[],
      type:'0',
      list:[
      list:[],
      dropdownList0:[
        {
          type:1,
          title:'标题',
          content:'内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容',
          time:'2019-08-07 15:34:26',
          status:0,//消息状态:拒绝、接收
          isRead:0,//是否已读
          sendUser:'小明',
          getUser:'李华',
        },
        {
          type:2,
          title:'标题',
          content:'内容',
          time:'2019-08-07 15:34:26',
          status:1,//消息状态:拒绝、接收
          isRead:1,//是否已读
          sendUser:'小明',
          getUser:'李华',
        },
        {
          type:3,
          title:'标题',
          content:'内容',
          time:'2019-08-07 15:34:26',
          status:1,//消息状态:拒绝、接收
          isRead:0,//是否已读
          sendUser:'小明',
          getUser:'李华',
        },
        {
          type:4,
          title:'标题',
          content:'内容',
          time:'2019-08-07 15:34:26',
          status:1,//消息状态:拒绝、接收
          isRead:0,//是否已读
          sendUser:'小明',
          getUser:'李华',
        },
        {
          type:5,
          title:'标题',
          content:'内容',
          time:'2019-08-07 15:34:26',
          status:1,//消息状态:拒绝、接收
          isRead:0,//是否已读
          sendUser:'小明',
          getUser:'李华',
        },
        {
          type:6,
          title:'标题',
          content:'内容',
          time:'2019-08-07 15:34:26',
          status:1,//消息状态:拒绝、接收
          isRead:1,//是否已读
          sendUser:'小明',
          getUser:'李华',
        },
        {
          type:6,
          title:'标题',
          content:'内容',
          time:'2019-08-07 15:34:26',
          status:1,//消息状态:拒绝、接收
          isRead:1,//是否已读
          sendUser:'小明',
          getUser:'李华',
        },
        {
          type:6,
          title:'标题',
          content:'内容',
          time:'2019-08-07 15:34:26',
          status:1,//消息状态:拒绝、接收
          isRead:1,//是否已读
          sendUser:'小明',
          getUser:'李华',
        },
        {
          type:6,
          title:'标题',
          content:'内容',
          time:'2019-08-07 15:34:26',
          status:1,//消息状态:拒绝、接收
          isRead:1,//是否已读
          sendUser:'小明',
          getUser:'李华',
        },
        {
          type:6,
          title:'标题',
          content:'内容',
          time:'2019-08-07 15:34:26',
          status:1,//消息状态:拒绝、接收
          isRead:1,//是否已读
          sendUser:'小明',
          getUser:'李华',
        },
      ],
      dropdownList:[
        {
          label:'拒绝',
          label:'通过',
          value:0
        },
        {
          label:'接收',
          label:'不通过',
          value:1
        },
        {
          label:'通过',
          label:'查看更多',
          value:4
        },
      ],
      dropdownList1:[
        {
          label:'批准',
          value:2
        },
        {
          label:'不通过',
          label:'不批准',
          value:3
        },
        {
          label:'批准',
          label:'查看更多',
          value:4
        },
        {
          label:'不批准',
          value:5
        },
        {
          label:'查看更多',
          value:6
        },
      ]
      ],
      currentPage:1,
      pageSize: 16, // 一页16条
      total: null,
      loading: false, // 组件loading的展示,默认为true
      isLoding: false, // 加载中,loading图标,默认为true
      finishLoding: false // 加载完成,显示已经没有更多了
    }
  },
  mounted(){
    this.getTypeDicts();
    this.currentPage = 1;
    this.list = [];
    this.refresh();
  },
  methods:{
    refresh(){
      if(this.currentPage>1){
        this.isLoding = true
      }else{
        this.loading = true
      }
      if(this.list.length==0){
        window.addEventListener("scroll", this.throttle(this.scrollFn, 20000));
      }
      let type = this.type==0?null:this.type;
      this.$axios.get(this.$api.informationNotification.page+'?size='+this.pageSize+'&current='+this.currentPage+(type?'&messageType='+type:'')).then(res => {
        if(res.code === 201){
          return
        }
        let list = res.data.records;
        this.total = res.data.total;
        if(list.length==0){
          this.finishLoding = true;
        }else{
          if(list.length<this.pageSize){
            this.finishLoding = true;
          }
          this.list = this.list.concat(list)
          if(this.total==this.list.length){
            this.finishLoding = true;
          }
        }
        this.loading = false
        this.isLoding = false;
      })
    },
    open(){
      this.drawer = true;
    },
@@ -233,26 +189,105 @@
        this.options = data;
      })
    },
    goNoticeDetail(){
      this.drawer = false;
      this.$parent.addTab({
         v: "消息详情",
         i: "el-icon-s-tools",
         u: "notice-detail",
      k:35,
         p: "abcd"
      },29);
    goNoticeDetail(row){
      this.$axios.put(this.$api.informationNotification.triggerModificationStatusToRead+'/'+row.id).then(res => {
        this.drawer = false;
        this.$parent.addTab({
          v: "消息详情",
          i: "el-icon-s-tools",
          u: "notice-detail",
          k:35,
          p: "abcd"
        },29);
        this.list = [];
        this.currentPage = 1;
        this.refresh();
      })
    },
    handleDropdown(e){
    handleDropdown(e,row){
      switch(e){
        case 0:
          break;
        case 6:
          this.goNoticeDetail()
        case 4:
          this.goNoticeDetail(row)
          break;
      }
    },
    handleDel(row){
      this.$confirm('是否删除当前数据?', "警告", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning"
      }).then(() => {
        this.$axios.delete(this.$api.informationNotification.deleteDataBasedOnId+'?id='+row.id).then(res => {
          if (res.code === 201) {
            return
          }
          this.$message.success('删除成功')
          this.list = [];
          this.currentPage = 1;
          this.refresh()
        }).catch(e => {
          this.$message.error('删除失败')
        })
      }).catch(() => {})
    },
    // 滚动触底加载
    scrollFn() {
      let clientHeight = document.documentElement.clientHeight - 18; //可视区域
      let scrollHeight = document.body.scrollHeight; // 滚动文档高度
      let scrollTop = parseInt(document.documentElement.scrollTop); // 已滚动的高度
      let height = 300;
      if (
        scrollTop + clientHeight >= scrollHeight - height &&
        scrollHeight != 0
      ) {
        if (!this.finishLoding&&this.currentPage*this.pageSize<this.total) {
          this.currentPage = this.currentPage + 1;
          this.refresh();
        }
      } else {
        return false;
      }
    },
    throttle(fn, wait) {
      // 封装函数进行节流
      var timer = null;
      return function () {
        var context = this;
        var args = arguments;
        if (!timer) {
          timer = setTimeout(function () {
            fn.apply(context, args);
            timer = null;
          }, wait);
        }
      };
    },
    handleType(){
      this.list = [];
      this.currentPage = 1;
      this.refresh();
    },
    handleDropdownAll(e){
      let type = false;
      if(e==1){
        type = true;
      }
      this.$axios.put(this.$api.informationNotification.informationReadOrDelete+'/'+type).then(res => {
        if(res.code===201){
          return
        }
        this.$message.success('操作成功')
        this.list = [];
        this.currentPage = 1;
        this.refresh();
      })
    }
  }
  },
  destroyed() {
    window.removeEventListener("scroll", this.throttle(), false);
  },
}
</script>