123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <template>
- <div class="message-system">
- <ul class="list">
- <li v-for="(item, index) in messageList" :key="index">
- <template
- v-if="
- item.type === types.MSG_GRP_TIP ||
- item.type === types.MSG_GRP_SYS_NOTICE
- "
- >
- <i class="icon icon-system"></i>
- <span>{{ translateGroupSystemNotice(item) }}</span>
- <div class="btn-box" v-if="item?.payload?.operationType === 1">
- <button
- class="btn btn-default"
- @click="handleApplication('Agree', item)"
- >
- 接受
- </button>
- <button
- class="btn btn-cancel"
- @click="handleApplication('Reject', item)"
- >
- 拒绝
- </button>
- </div>
- </template>
- </li>
- </ul>
- </div>
- </template>
- <script lang="ts">
- import { defineComponent, watchEffect, reactive, toRefs } from 'vue';
- import { translateGroupSystemNotice } from '../utils/utils';
- export default defineComponent({
- props: {
- data: {
- type: Array,
- default: () => []
- },
- types: {
- type: Object,
- default: () => ({})
- }
- },
- setup(props: any, ctx: any) {
- const data = reactive({
- messageList: [],
- types: {}
- });
- watchEffect(() => {
- data.messageList = props.data;
- data.types = props.types;
- });
- const handleApplication = (handleAction: string, message: any) => {
- const options: any = {
- handleAction,
- message
- };
- ctx.emit('application', options);
- };
- return {
- ...toRefs(data),
- translateGroupSystemNotice,
- handleApplication
- };
- }
- });
- </script>
- <style lang="scss" scoped>
- @import url('../../../styles/common.scss');
- @import url('../../../styles/icon.scss');
- .list {
- flex: 1;
- height: 100%;
- overflow-y: auto;
- min-width: 600Px;
- li {
- display: flex;
- align-items: center;
- position: relative;
- padding: 10Px 20Px;
- font-weight: 400;
- font-size: 14Px;
- color: #000000;
- letter-spacing: 0;
- .icon {
- margin-right: 10Px;
- }
- .message-label {
- max-width: 50Px;
- }
- .btn-box {
- padding: 0 12Px;
- }
- }
- }
- .icon {
- display: inline-block;
- width: 16Px;
- height: 16Px;
- &-warn {
- border-radius: 50%;
- background: coral;
- color: #ffffff;
- font-style: normal;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- .btn {
- padding: 2Px 10Px;
- margin-right: 12Px;
- border-radius: 4Px;
- border: none;
- font-weight: 400;
- font-size: 14Px;
- color: #ffffff;
- letter-spacing: 0;
- text-align: center;
- line-height: 20Px;
- &:last-child {
- margin-right: 0;
- }
- &-cancel {
- border: 1Px solid #dddddd;
- color: #666666;
- }
- &-default {
- background: #006eff;
- border: 1Px solid #006eff;
- }
- &:disabled {
- opacity: 0.3;
- }
- }
- </style>
|