123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <template>
- <div id="mission-icon">
- <el-tooltip class="item" effect="light" placement="bottom-end">
- <el-badge class="icon" :value="list.length">
- <i class="el-icon-bell icon"></i>
- </el-badge>
- <template #content>
- <!-- <el-row type="flex" align="middle" v-for="(i, index) in list" :key="`mission-${index}`">
- <el-col :span="14" class="out">{{ i.title }}</el-col>
- <el-col :span="4">{{ getProgress(i) }}</el-col>
- <el-col :span="6" style="text-align:right;width:80px;">
- <el-link type="primary" size="mini" @click="noDot(i)">[不再提示]</el-link>
- </el-col>
- </el-row> -->
- <el-table :data="list" size="mini" border :show-header="false" max-height="200px">
- <el-table-column align="center" prop="title" show-overflow-tooltip min-width="200px"></el-table-column>
- <el-table-column align="center">
- <template v-slot="{ row }">
- {{ getProgress(row) }}
- </template>
- </el-table-column>
- <el-table-column align="center">
- <template v-slot="{ row }">
- <el-button type="text" icon="el-icon-close-notification" @click="noDot(row)"></el-button>
- </template>
- </el-table-column>
- </el-table>
- </template>
- </el-tooltip>
- </div>
- </template>
- <script>
- // import Vue from 'vue';\
- const _ = require('lodash');
- import { mapState, createNamespacedHelpers } from 'vuex';
- const { mapActions: mission } = createNamespacedHelpers('mission');
- export default {
- name: 'mission-icon',
- props: {},
- components: {},
- data: function() {
- return {
- list: [],
- };
- },
- created() {
- this.search();
- },
- mounted() {
- this.channel();
- },
- methods: {
- ...mission(['query', 'update']),
- async search() {
- const res = await this.query({ dot: true });
- if (this.$checkRes(res)) {
- let newData = _.cloneDeep(res.data);
- const oldData = _.cloneDeep(this.list);
- if (oldData.length !== 0) {
- // 非初始化提示,初始化不提示
- for (const nd of newData) {
- const sr = oldData.find(f => nd.id === f.id && nd.status === '2' && f.status === '1');
- let ntitle, type, message;
- if (sr) {
- const { title } = sr;
- ntitle = title;
- type = 'success';
- message = '已完成,请在 菜单-待办事项 中查看结果';
- }
- const er = oldData.find(f => nd.id === f.id && nd.status === '3' && f.status === '1');
- if (er) {
- const { title } = er;
- ntitle = title;
- type = 'error';
- message = '任务失败,请在 菜单-待办事项 中重新执行任务.若多次执行仍错误,请联系开发人员!';
- }
- if (ntitle && message && type) {
- this.$notify({
- title: ntitle,
- message,
- type,
- });
- }
- }
- }
- this.$set(this, `list`, newData);
- }
- },
- async noDot(data) {
- data.dot = false;
- const res = await this.update(data);
- if (this.$checkRes(res, '已取消提示', res.errmsg || '取消提示失败')) {
- this.search();
- }
- },
- getProgress(data) {
- const { status } = data;
- if (!status) return '';
- if (status === '0') return '未开始';
- if (status === '2') return '已完成';
- if (status === '3') return '失败';
- if (status === '1') return `${data.progress || 0}%`;
- },
- channel() {
- this.$stomp({
- [`/exchange/mission/remind`]: this.onMessage,
- });
- },
- onMessage(message) {
- this.search();
- console.log('receive a message: ', message.body);
- },
- },
- computed: {
- ...mapState(['user']),
- pageTitle() {
- return `${this.$route.meta.title}`;
- },
- },
- metaInfo() {
- return { title: this.$route.meta.title };
- },
- };
- </script>
- <style lang="less" scoped>
- .icon {
- display: inline-block;
- font-size: 1.25rem;
- text-align: center;
- z-index: 100;
- }
- .out {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- word-break: break-all;
- width: 150px;
- font-size: 16px;
- padding: 5px 0;
- }
- </style>
|