| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <cwg-page-wrapper class="create-page" :isHeaderFixed="true">
- <cwg-header :title="t('News.Announcement')" />
- <cwg-asset-tabs v-model="activeTab" :tabs="tabsConfig" />
- <view class="account-section">
- <List ref="newsList" :fetchData="fetchNewsList" :queryParams="queryParams" :type="type" />
- </view>
- </cwg-page-wrapper>
- </template>
- <script setup lang="ts">
- import { ref, reactive, computed, onMounted, onUnmounted, watch, nextTick } from 'vue'
- import { onLoad, onReachBottom } from '@dcloudio/uni-app'
- import { useI18n } from 'vue-i18n' // uni-app 中已集成,但需配置
- import { newsApi } from '@/service/news'
- import List from './components/List.vue'
- const { t, locale } = useI18n()
- const isZh = computed(() => ['cn', 'zhHant'].includes(locale.value))
- const newsList = ref(null)
- const fetchNewsList = ref(null)
- const queryParams = ref({
- tag: 4,
- endDate: "",
- startDate: "",
- id: null
- })
- const activeTab = ref(1)
- const tabsConfig = computed(() => [
- { text: t('News.Announcement1'), value: 1, type: 3 },
- { text: t('News.CompanyNews'), value: 2, type: 5 },
- ])
- onReachBottom(() => {
- newsList.value?.loadMore()
- })
- // const lang = computed(() => uni.getLocale())
- const type = ref(0)
- // watch(lang, (val) => {
- // if (activeTab.value == 1) {
- // const langMap = {
- // 'zh-Hans': 'cn',
- // 'zh-Hant': 'zhHant',
- // 'vn': 'vi'
- // }
- // queryParams.value = {
- // tag: null,
- // endDate: '',
- // startDate: '',
- // id: null,
- // pageSize: 18,
- // lang: langMap[val] || val
- // }
- // }
- // })
- watch(activeTab, (val) => {
- if (val == 1) {
- fetchNewsList.value = newsApi.newsInformationList
- queryParams.value = {
- tag: null,
- endDate: '',
- startDate: '',
- id: null,
- pageSize: 18
- }
- } else {
- fetchNewsList.value = newsApi.newsInformationNewsletterList
- queryParams.value = {
- tag: 4,
- endDate: '',
- startDate: '',
- id: null,
- pageSize: 9
- }
- }
- type.value = tabsConfig.value.find(item => item.value == val).type
- nextTick(() => {
- newsList.value.load()
- })
- }, { immediate: true })
- </script>
- <style lang="scss" scoped>
- @import "@/uni.scss";
- </style>
|