|
@@ -0,0 +1,148 @@
|
|
|
+<template>
|
|
|
+ <BaseBlockCom title="通知公告">
|
|
|
+ <template #title>
|
|
|
+ <div class="more">查看更多》</div>
|
|
|
+ </template>
|
|
|
+ <div class="list">
|
|
|
+ <template v-for="item in list">
|
|
|
+ <div class="item __hover" @click="onView(item)">
|
|
|
+ <div class="type" :class="`type-${item.type}`">
|
|
|
+ {{item.type === 1 ? '消息' : '通知'}}
|
|
|
+ <div v-if="!item.read" class="read"/>
|
|
|
+ </div>
|
|
|
+ <div class="title __text-ellipsis">{{item.title}}</div>
|
|
|
+ <div class="time">{{Handle.formatDate(item.time)}}</div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </div>
|
|
|
+ <NoticeDetailCom v-model:show="showDetail" :transfer="transfer"/>
|
|
|
+ </BaseBlockCom>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script lang="ts">
|
|
|
+import {
|
|
|
+ defineComponent,
|
|
|
+ computed,
|
|
|
+ onMounted,
|
|
|
+ ref,
|
|
|
+ reactive,
|
|
|
+ watch,
|
|
|
+ getCurrentInstance,
|
|
|
+ ComponentInternalInstance,
|
|
|
+ toRefs,
|
|
|
+ nextTick
|
|
|
+} from 'vue'
|
|
|
+import {useStore} from 'vuex'
|
|
|
+import {useRouter, useRoute} from 'vue-router'
|
|
|
+import BaseBlockCom from '../../common/base-block.vue'
|
|
|
+import * as Handle from '../../common/handle'
|
|
|
+import NoticeDetailCom from '@/views/system/notice-announcement/detail.vue'
|
|
|
+
|
|
|
+export default defineComponent({
|
|
|
+ name: '',
|
|
|
+ components: {
|
|
|
+ BaseBlockCom,
|
|
|
+ NoticeDetailCom
|
|
|
+ },
|
|
|
+ setup(props, {emit}) {
|
|
|
+ const store = useStore();
|
|
|
+ const router = useRouter();
|
|
|
+ const route = useRoute();
|
|
|
+ const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
|
|
|
+ const state = reactive({
|
|
|
+ Handle: Handle,
|
|
|
+ list: [
|
|
|
+ {type: 1, read: false, title: '系统新版本升级V1.1通知,新功能系统新版本升级V1.1通知,新功能', time: '2023-09-01 13:22:33'},
|
|
|
+ {type: 2, read: false, title: '系统新版本升级V1.1通知,新功能系统新版本升级V1.1通知,新功能', time: '2023-11-22 13:22:33'},
|
|
|
+ {type: 1, read: false, title: '系统新版本升级V1.1通知', time: '2023-11-01 13:22:33'},
|
|
|
+ {type: 1, read: true, title: '系统新版本升级V1.1通知', time: '2023-11-01 13:22:33'},
|
|
|
+ {type: 1, read: false, title: '系统新版本升级V1.1通知', time: '2023-11-01 13:22:33'},
|
|
|
+ {type: 2, read: true, title: '系统新版本升级V1.1通知', time: '2023-11-01 13:22:33'},
|
|
|
+ {type: 1, read: true, title: '系统新版本升级V1.1通知', time: '2023-11-01 13:22:33'},
|
|
|
+ {type: 1, read: true, title: '系统新版本升级V1.1通知', time: '2023-11-01 13:22:33'},
|
|
|
+ {type: 1, read: true, title: '系统新版本升级V1.1通知', time: '2023-11-01 13:22:33'},
|
|
|
+ {type: 1, read: true, title: '系统新版本升级V1.1通知', time: '2023-11-01 13:22:33'},
|
|
|
+ {type: 1, read: true, title: '系统新版本升级V1.1通知', time: '2023-11-01 13:22:33'},
|
|
|
+ ],
|
|
|
+ showDetail: false,
|
|
|
+ transfer: {}
|
|
|
+ })
|
|
|
+ const onView = (val) => {
|
|
|
+ state.transfer = {
|
|
|
+ method: 'view',
|
|
|
+ detail: val
|
|
|
+ }
|
|
|
+ state.showDetail = true
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ ...toRefs(state),
|
|
|
+ onView
|
|
|
+ }
|
|
|
+ },
|
|
|
+})
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+.more {
|
|
|
+ font-size: 12px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #2EB8FF;
|
|
|
+ margin-right: 10px;
|
|
|
+}
|
|
|
+.list {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+ display: grid;
|
|
|
+ grid-template-rows: repeat(11, 1fr);
|
|
|
+ padding: 0 10px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ .item {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size: 14px;
|
|
|
+ font-family: Microsoft YaHei;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #C5D0D4;
|
|
|
+ width: 100%;
|
|
|
+ .type {
|
|
|
+ width: 46px;
|
|
|
+ height: 25px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: 100% 100%;
|
|
|
+ font-size: 12px;
|
|
|
+ padding-bottom: 2px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ margin-right: 8px;
|
|
|
+ position: relative;
|
|
|
+ &.type-1 {
|
|
|
+ color: #20D9AA;
|
|
|
+ background-image: url("@/assets/images/business/notice-xx.png");
|
|
|
+ }
|
|
|
+ &.type-2 {
|
|
|
+ color: #F2C347;
|
|
|
+ background-image: url("@/assets/images/business/notice-tz.png");
|
|
|
+ }
|
|
|
+ .read {
|
|
|
+ width: 7px;
|
|
|
+ height: 7px;
|
|
|
+ background-color: #E5004F;
|
|
|
+ border-radius: 50%;
|
|
|
+ position: absolute;
|
|
|
+ top: -2px;
|
|
|
+ left: -2px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .title {
|
|
|
+ max-width: 230px;
|
|
|
+ }
|
|
|
+ .time {
|
|
|
+ margin-left: auto;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|