wangxy 2 månader sedan
förälder
incheckning
71f77316b7

+ 24 - 0
api/common.js

@@ -753,4 +753,28 @@ export function getCommonXygkXiaoyuanfengguang(data = {}) {
 		data,
 		timeout: 20000
 	})
+}
+
+export function getCommonJyjxDierketang(data = {}) {
+	return request({
+		'url': '/common/jiaoyu/ketang/list',
+		headers: {
+			isToken: false
+		},
+		method: 'post',
+		data,
+		timeout: 20000
+	})
+}
+
+export function getCommonJyjxDierketangInfo(data = {}) {
+	return request({
+		'url': '/common/jiaoyu/ketang/info',
+		headers: {
+			isToken: false
+		},
+		method: 'post',
+		data,
+		timeout: 20000
+	})
 }

+ 66 - 5
pages.json

@@ -12,18 +12,18 @@
 			"style": {
 				"navigationStyle": "custom"
 			}
-		},	
-			{
+		},
+		{
 			"path": "pages/demo/richDemo",
 			"style": {
 				"navigationStyle": "custom"
 			}
-		},	
+		},
 		//  首页
 		{
 			"path": "pages/showZhengshu",
 			"style": {
-			"navigationStyle": "custom"
+				"navigationStyle": "custom"
 
 			}
 		},
@@ -272,6 +272,12 @@
 				"navigationStyle": "custom"
 			}
 		},
+		{
+			"path": "pages/jyjxShiziduiwuInfo/jyjxShiziduiwuInfo",
+			"style": {
+				"navigationStyle": "custom"
+			}
+		},
 		// 招生就业
 		{
 			"path": "pages/zsjyZhaoshengjianzhang/zsjyZhaoshengjianzhang",
@@ -351,7 +357,7 @@
 				"navigationStyle": "custom"
 			}
 		},
-	
+
 		// 下载中心	
 		{
 			"path": "pages/xzzxXiazaizhongxin/xzzxXiazaizhongxin",
@@ -371,7 +377,62 @@
 			"style": {
 				"navigationStyle": "custom"
 			}
+		},
+		{
+			"path": "pages/jyjxKeyanhuodongInfo/jyjxKeyanhuodongInfo",
+			"style": {
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path": "pages/jyjxKeyandongtaiInfo/jyjxKeyandongtaiInfo",
+			"style": {
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path" : "pages/jyjxJinengjiandingInfo/jyjxJinengjiandingInfo",
+			"style" : 
+			{
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path" : "pages/jyjxDierketangInfo/jyjxDierketangInfo",
+			"style" : 
+			{
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path" : "pages/jyjxDasaifengcaiInfo/jyjxDasaifengcaiInfo",
+			"style" : 
+			{
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path" : "pages/jyjxZhongdianxiangmuInfo/jyjxZhongdianxiangmuInfo",
+			"style" : 
+			{
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path" : "pages/jyjxXiaoqihezuoInfo/jyjxXiaoqihezuoInfo",
+			"style" : 
+			{
+				"navigationStyle": "custom"
+			}
+		},
+		{
+			"path" : "pages/jyjxGuizhangzhiduInfo/jyjxGuizhangzhiduInfo",
+			"style" : 
+			{
+				"navigationStyle": "custom"
+			}
 		}
+
 	],
 	"tabBar": {
 		"custom": true,

+ 52 - 11
pages/jyjxDasaifengcai/jyjxDasaifengcai.vue

@@ -1,6 +1,31 @@
 <template>
-	<view>
-		
+	<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="data-content-item" v-for="item in list" :key="item.id" @click="handleClick(item)">
+							<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-title-box"> {{item.title}} </view>
+						</view>
+					</template>
+				</MtaScrollViewVue>
+			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
+		</view>
 	</view>
 </template>
 
@@ -13,19 +38,35 @@
 		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"
+
 	const data = reactive({
 		list: '',
+		total: '',
 		page: 1,
-		size: 20,
-		total: 0
-	})
-	
-	onLoad(() => {
-		pageInit();
+		size: 5
 	})
-	
+
+	function handleClick(data) {
+		uni.navigateTo({
+			url: `/pages/jyjxDasaifengcaiInfo/jyjxDasaifengcaiInfo?id=${data.id}`
+		})
+	}
+
+	function getList(data) {
+		return httpApi.getJiaoyuDasaiList(data)
+	}
+
+	function handleGo() {
+		uni.navigateTo({
+			url: '/pages/index/index'
+		})
+	}
 	function pageInit() {
 		httpApi.getJiaoyuDasaiList({page:data.page,size:data.size}).then(res => {
 			data.content = res.data.content;

+ 55 - 13
pages/jyjxDierketang/jyjxDierketang.vue

@@ -1,6 +1,31 @@
 <template>
-	<view>
-		
+	<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="data-content-item" v-for="item in list" :key="item.id" @click="handleClick(item)">
+							<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-title-box"> {{item.title}} </view>
+						</view>
+					</template>
+				</MtaScrollViewVue>
+			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
+		</view>
 	</view>
 </template>
 
@@ -13,21 +38,38 @@
 		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"
+
 	const data = reactive({
-		list: [],
+		list: '',
+		total: '',
 		page: 1,
-		size: 5,
-		total: 0
-	})
-	
-	onLoad(() => {
-		pageInit();
+		size: 5
 	})
-	
+
+	function handleClick(data) {
+		uni.navigateTo({
+			url: `/pages/jyjxDierketangInfo/jyjxDierketangInfo?id=${data.id}`
+		})
+	}
+
+	function getList(data) {
+		return httpApi.getCommonJyjxDierketang(data)
+	}
+
+	function handleGo() {
+		uni.navigateTo({
+			url: '/pages/index/index'
+		})
+	}
+
 	function pageInit() {
-		httpApi.getJiaoyuKetangList({page: data.page,size:data.size}).then(res => {
+		httpApi.getCommonJyjxDierketang({page: data.page,size:data.size}).then(res => {
 			data.list = res.data.data;
 			data.total = res.data.total;
 		})

+ 50 - 9
pages/jyjxGuizhangzhidu/jyjxGuizhangzhidu.vue

@@ -1,6 +1,31 @@
 <template>
-	<view>
-
+	<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="data-content-item" v-for="item in list" :key="item.id" @click="handleClick(item)">
+							<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-title-box"> {{item.title}} </view>
+						</view>
+					</template>
+				</MtaScrollViewVue>
+			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
+		</view>
 	</view>
 </template>
 
@@ -13,19 +38,35 @@
 		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"
 
 	const data = reactive({
-		content: '',
+		list: '',
+		total: '',
 		page: 1,
-		size: 5,
-		total: 0
+		size: 5
 	})
 
-	onLoad(() => {
-		pageInit();
-	})
+	function handleClick(data) {
+		uni.navigateTo({
+			url: `/pages/jyjxGuizhangzhiduInfo/jyjxGuizhangzhiduInfo?id=${data.id}`
+		})
+	}
+
+	function getList(data) {
+		return httpApi.getJiaoyuZhiduList(data)
+	}
 
+	function handleGo() {
+		uni.navigateTo({
+			url: '/pages/index/index'
+		})
+	}
 	function pageInit() {
 		httpApi.getJiaoyuZhiduList({
 			page: data.page,

+ 54 - 12
pages/jyjxJinengjianding/jyjxJinengjianding.vue

@@ -1,6 +1,31 @@
 <template>
-	<view>
-		
+	<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="data-content-item" v-for="item in list" :key="item.id" @click="handleClick(item)">
+							<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-title-box"> {{item.title}} </view>
+						</view>
+					</template>
+				</MtaScrollViewVue>
+			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
+		</view>
 	</view>
 </template>
 
@@ -13,19 +38,36 @@
 		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"
+
 	const data = reactive({
-		list: [],
+		list: '',
+		total: '',
 		page: 1,
-		size: 5,
-		total: 0
-	})
-	
-	onLoad(() => {
-		pageInit();
+		size: 5
 	})
-	
+
+	function handleClick(data) {
+		uni.navigateTo({
+			url: `/pages/jyjxJinengjiandingInfo/jyjxJinengjiandingInfo?id=${data.id}`
+		})
+	}
+
+	function getList(data) {
+		return httpApi.getJiaoyuJinengList(data)
+	}
+
+	function handleGo() {
+		uni.navigateTo({
+			url: '/pages/index/index'
+		})
+	}
+
 	function pageInit() {
 		httpApi.getJiaoyuJinengList({page:data.page,size:data.size}).then(res => {
 			data.content = res.data.content;

+ 55 - 13
pages/jyjxKeyandongtai/jyjxKeyandongtai.vue

@@ -1,6 +1,31 @@
 <template>
-	<view>
-		
+	<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="data-content-item" v-for="item in list" :key="item.id" @click="handleClick(item)">
+							<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-title-box"> {{item.title}} </view>
+						</view>
+					</template>
+				</MtaScrollViewVue>
+			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
+		</view>
 	</view>
 </template>
 
@@ -13,19 +38,36 @@
 		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"
+
 	const data = reactive({
-		list: [],
-		page:1,
-		size: 5,
-		total: 0
-	})
-	
-	onLoad(() => {
-		pageInit();
+		list: '',
+		total: '',
+		page: 1,
+		size: 5
 	})
-	
+
+	function handleClick(data) {
+		uni.navigateTo({
+			url: `/pages/jyjxKeyandongtaiInfo/jyjxKeyandongtaiInfo?id=${data.id}`
+		})
+	}
+
+	function getList(data) {
+		return httpApi.getJiaoyuKeyanList(data)
+	}
+
+	function handleGo() {
+		uni.navigateTo({
+			url: '/pages/index/index'
+		})
+	}
+
 	function pageInit() {
 		httpApi.getJiaoyuKeyanList({page: 1,size: 5}).then(res => {
 			data.list = res.data.data;

+ 54 - 12
pages/jyjxKeyanhuodong/jyjxKeyanhuodong.vue

@@ -1,6 +1,31 @@
 <template>
-	<view>
-		
+	<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="data-content-item" v-for="item in list" :key="item.id" @click="handleClick(item)">
+							<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-title-box"> {{item.title}} </view>
+						</view>
+					</template>
+				</MtaScrollViewVue>
+			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
+		</view>
 	</view>
 </template>
 
@@ -13,19 +38,36 @@
 		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"
+
 	const data = reactive({
-		list: [],
+		list: '',
+		total: '',
 		page: 1,
-		size: 5,
-		total: 0
-	})
-	
-	onLoad(() => {
-		pageInit();
+		size: 5
 	})
-	
+
+	function handleClick(data) {
+		uni.navigateTo({
+			url: `/pages/jyjxShiziduiwuInfo/jyjxShiziduiwuInfo?id=${data.id}`
+		})
+	}
+
+	function getList(data) {
+		return httpApi.getJiaoyuShiziList(data)
+	}
+
+	function handleGo() {
+		uni.navigateTo({
+			url: '/pages/index/index'
+		})
+	}
+
 	function pageInit() {
 		httpApi.getJiaoyuJiaoyanList({page:data.page,size:data.size}).then(res => {
 			data.list = res.data.data;

+ 3 - 1
pages/jyjxShiziduiwu/jyjxShiziduiwu.vue

@@ -7,6 +7,8 @@
 				<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">
@@ -52,7 +54,7 @@
 
 	function handleClick(data) {
 		uni.navigateTo({
-			url: `/pages/dqgzDangjiangongzuoInfo/dqgzDangjiangongzuoInfo?id=${data.id}`
+			url: `/pages/jyjxShiziduiwuInfo/jyjxShiziduiwuInfo?id=${data.id}`
 		})
 	}
 

+ 53 - 12
pages/jyjxXiaoqihezuo/jyjxXiaoqihezuo.vue

@@ -1,6 +1,31 @@
 <template>
-	<view>
-		
+	<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="data-content-item" v-for="item in list" :key="item.id" @click="handleClick(item)">
+							<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-title-box"> {{item.title}} </view>
+						</view>
+					</template>
+				</MtaScrollViewVue>
+			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
+		</view>
 	</view>
 </template>
 
@@ -13,19 +38,35 @@
 		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"
+
 	const data = reactive({
-		list: [],
+		list: '',
+		total: '',
 		page: 1,
-		size:5,
-		total: 0
-	})
-	
-	onLoad(() => {
-		pageInit();
+		size: 5
 	})
-	
+
+	function handleClick(data) {
+		uni.navigateTo({
+			url: `/pages/jyjxXiaoqihezuoInfo/jyjxXiaoqihezuoInfo?id=${data.id}`
+		})
+	}
+
+	function getList(data) {
+		return httpApi.getJiaoyuXiaoqiList(data)
+	}
+
+	function handleGo() {
+		uni.navigateTo({
+			url: '/pages/index/index'
+		})
+	}
 	function pageInit() {
 		httpApi.getJiaoyuXiaoqiList({page: data.page,size:data.size}).then(res => {
 			data.list = res.data.data;

+ 52 - 11
pages/jyjxZhongdianxiangmu/jyjxZhongdianxiangmu.vue

@@ -1,6 +1,31 @@
 <template>
-	<view>
-		
+	<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="data-content-item" v-for="item in list" :key="item.id" @click="handleClick(item)">
+							<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-title-box"> {{item.title}} </view>
+						</view>
+					</template>
+				</MtaScrollViewVue>
+			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
+		</view>
 	</view>
 </template>
 
@@ -13,19 +38,35 @@
 		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"
+
 	const data = reactive({
-		list: [],
-		total: 0,
+		list: '',
+		total: '',
 		page: 1,
 		size: 5
 	})
-	
-	onLoad(() => {
-		pageInit();
-	})
-	
+
+	function handleClick(data) {
+		uni.navigateTo({
+			url: `/pages/jyjxZhongdianxiangmuInfo/jyjxZhongdianxiangmuInfo?id=${data.id}`
+		})
+	}
+
+	function getList(data) {
+		return httpApi.getJiaoyuXiangmuList(data)
+	}
+
+	function handleGo() {
+		uni.navigateTo({
+			url: '/pages/index/index'
+		})
+	}
 	function pageInit() {
 		httpApi.getJiaoyuXiangmuList({page:data.page,size:data.size}).then(res => {
 			data.list = res.data.data;