1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <template>
- <view class="dljt-page-box">
- <MtaNavbar></MtaNavbar>
- <view class="dljt-container-box">
- <view class="dljt-page-title">学生园地</view>
- <view class="dljt-page-content-box">
- <view class="dljt-breadcrumb-box">
- <view class="breadcrumb-text" @click="handleGo()">首页</view>
- <icon class="breadcrumb-jt"></icon>
- <view class="breadcrumb-text">学生园地</view>
- <icon class="breadcrumb-jt"></icon>
- <view class="breadcrumb-active">学生活动</view>
- </view>
- <MtaScrollViewVue :refreshFn="getList">
- <template v-slot="{ list }">
- <view class="list-item-box" v-for="item in list" :key="item.id" @click="handleClick(item)">
- <img class="list-img" :src="item.cover||default2" />
- <view class="list-time-box">
- <view class="time-data">{{formatDateToYearMonthDay(item.createTime)[1]}}</view>
- <view class="time-year">{{formatDateToYearMonthDay(item.createTime)[0]}}</view>
- </view>
- <view class="list-right-box">
- <view class="list-name">{{item.title}}</view>
- <view class="list-line"></view>
- <view class="list-content" v-html="getStringByHtml3(item.content)"> </view>
- </view>
- </view>
- </template>
- </MtaScrollViewVue>
- </view>
- <!-- 底部导航 -->
- <MtaFooter></MtaFooter>
- </view>
- </view>
- </template>
- <script setup>
- import {
- ref,
- reactive
- } from "vue";
- import {
- onLoad
- } from "@dcloudio/uni-app"
- import * as httpApi from "@/api/common.js"
- import MtaScrollViewVue from "@/components/MtaScrollView/MtaScrollView.vue";
- import {
- formatDateToYearMonthDay,
- getStringByHtml3
- } from "@/utils/common.js"
- import MtaFooter from "@/components/MtaFooter.vue"
- import default2 from '@/static/images/common/news-bj2.png'
-
- const data = reactive({
- list: '',
- total: '',
- page: 1,
- size: 5
- })
- function handleClick(data) {
- uni.navigateTo({
- url: `/pages/xsydXueshenghuodongInfo/xsydXueshenghuodongInfo?id=${data.id}`
- })
- }
- function getList(data) {
- return httpApi.getXueshengHuodongList(data)
- }
- function handleGo() {
- uni.navigateTo({
- url: '/pages/index/index'
- })
- }
-
- function pageInit() {
- httpApi.getXueshengHuodongList({page: data.page,size: data.size}).then(res => {
- data.content = res.data.content;
- })
- }
- </script>
- <style>
- </style>
|