123456789101112131415161718192021222324252627 |
- <template>
- <view class="notice-list-card" @click="mesDetail(data)">
- <view class="notice-list-title">
- <text v-if="!data.wait" class="notice-list-read">已读</text>
- <text v-if="data.wait" class="notice-list-unread">未读</text>
- <view class="notice-title">{{data.name}}</view>
- </view>
- <view class="news-page-word">{{data.createTime}}</view>
- </view>
- </template>
- <script setup>
- import {toRefs,ref,computed} from "vue";
- const props = defineProps({
- data: {
- type: Object,
- },
- });
- const {data} = toRefs(props);
-
- function mesDetail(data){
- uni.navigateTo({
- url:`/pages/my/mesPage?noticeId=${data.noticeId}`
- })
- }
- </script>
|