12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <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/xydtXiaowugongkaiInfo/xydtXiaowugongkaiInfo?id=${data.id}`
- })
- }
- function getList(data) {
- return httpApi.getDongtaiXiaowuGongkaiList(data)
- }
- function handleGo() {
- uni.navigateTo({
- url: '/pages/index/index'
- })
- }
-
- function pageInit() {
- httpApi.getDongtaiXiaowuGongkaiList({page:data.page,size:data.size}).then(res => {
- data.list = res.data.data;
- data.total = res.data.total;
- })
- }
- </script>
- <style>
- </style>
|