浏览代码

页面更新

wangxy 2 月之前
父节点
当前提交
439c95104e

+ 61 - 0
api/common.js

@@ -887,4 +887,65 @@ export function getCommonZsjyZhuanyeInfo(data = {}) {
 		data,
 		timeout: 20000
 	})
+}
+
+export function getCommonZsjyXiaoqiList(data = {}) {
+	return request({
+		'url': '/common/zhaosheng/xiaoqi/list',
+		headers: {
+			isToken: false
+		},
+		method: 'post',
+		data,
+		timeout: 20000
+	})
+}
+
+export function getCommonZsjyXiaoqiInfo(data = {}) {
+	return request({
+		'url': '/common/zhaosheng/xiaoqi/info',
+		headers: {
+			isToken: false
+		},
+		method: 'post',
+		data,
+		timeout: 20000
+	})
+}
+
+export function getCommonZsjyZhaopin(data = {}) {
+	return request({
+		'url': '/common/zhaosheng/zhaopin/info',
+		headers: {
+			isToken: false
+		},
+		method: 'post',
+		data,
+		timeout: 20000
+	})
+}
+
+
+export function getCommonZsjyXXazaiList(data = {}) {
+	return request({
+		'url': '/common/xiazai/list',
+		headers: {
+			isToken: false
+		},
+		method: 'post',
+		data,
+		timeout: 20000
+	})
+}
+
+export function getCommonZsjyXXazaiTree(data = {}) {
+	return request({
+		'url': '/common/xiazai/classify/tree',
+		headers: {
+			isToken: false
+		},
+		method: 'post',
+		data,
+		timeout: 20000
+	})
 }

+ 70 - 10
pages/xzzxXiazaizhongxin/xzzxXiazaizhongxin.vue

@@ -1,6 +1,43 @@
 <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-active">下载中心</view>
+				</view>
+				<view>
+					<!-- 查询 -->
+					<view>
+						<uni-data-select v-model="data.activeId" :localdata="data.treeList"></uni-data-select>
+
+						<button @click="handleClick">查询</button>
+					</view>
+					<view>
+						<view>序号</view>
+						<view>类别</view>
+						<view>文件</view>
+						<view>文件下载</view>
+					</view>
+					<MtaScrollViewVue ref="myRef" :refreshFn="getList" :size="10"
+						:otherOption="{classifyId: data.activeId}">
+						<template v-slot="{ list }">
+							<view class="xyry-item-row" v-for="(item,index) in list" :key="item.id">
+								<view>{{index+1}}</view>
+								<view>{{item.classifyName}}</view>
+								<view>{{item.title}}</view>
+								<view @click="handleDownFile(item)">下载</view>
+							</view>
+						</template>
+					</MtaScrollViewVue>
+				</view>
+			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
+		</view>
 	</view>
 </template>
 
@@ -13,23 +50,46 @@
 		onLoad
 	} from "@dcloudio/uni-app"
 	import * as httpApi from "@/api/common.js"
-	
-	
+	import MtaScrollViewVue from "@/components/MtaScrollView/MtaScrollView.vue";
+	import MtaFooter from "@/components/MtaFooter.vue"
+
+	const myRef = ref(null);
+
 	const data = reactive({
-		content: ''
+		content: '',
+		activeId: null,
+		treeList: []
 	})
-	
+
 	onLoad(() => {
 		pageInit();
 	})
-	
+
+	function handleDownFile(item) {
+		window.location.href = item.pdfUrl
+	}
+
+	function getList(data) {
+		return httpApi.getCommonZsjyXXazaiList(data)
+	}
+
+	function handleClick() {
+		myRef.value.onRefresh()
+	}
+
 	function pageInit() {
-		httpApi.getCommonGaikuangJigouShezhiInfo().then(res => {
-			data.content = res.data.content;
+		httpApi.getCommonZsjyXXazaiTree().then(res => {
+			data.treeList = res.data.children.map(item => {
+				return {
+					value: item.id,
+					text: item.lable
+				}
+			});
 		})
+		httpApi.getCommonZsjyXXazaiList(data).then(res => {})
 	}
 </script>
 
 <style>
 
-</style>
+</style>

+ 32 - 3
pages/zsjyBaokaozhinan/zsjyBaokaozhinan.vue

@@ -1,6 +1,26 @@
 <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('shouye')">首页</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-text">招生就业</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-active">报考指南</view>
+				</view>
+				<view class="dljt-detail-box">
+					<view class="dljt-editor-box">
+						<MtaMpHtml class="dljt-editor-box" :content="data.content" ></MtaMpHtml>
+					</view>
+				</view>
+			</view>
+		</view>
+		<!-- 底部导航 -->
+		<MtaFooter></MtaFooter>
 	</view>
 </template>
 
@@ -13,6 +33,8 @@
 		onLoad
 	} from "@dcloudio/uni-app"
 	import * as httpApi from "@/api/common.js"
+	import MtaFooter from "@/components/MtaFooter.vue"
+	import MtaMpHtml from "@/components/MTAMpHtml/MtaMpHtml.vue"
 	
 	
 	const data = reactive({
@@ -23,8 +45,15 @@
 		pageInit();
 	})
 	
+	function handleGo(code) {
+		  if (code == 'shouye') {
+			  uni.navigateTo({
+			  	url: '/pages/index/index'
+			  })
+		  }
+	}
 	function pageInit() {
-		httpApi.getCommonGaikuangJigouShezhiInfo().then(res => {
+		httpApi.getCommonZSJYBaokaozhinanInfo().then(res => {
 			data.content = res.data.content;
 		})
 	}

+ 34 - 5
pages/zsjyShengxue/zsjyShengxue.vue

@@ -14,9 +14,29 @@
 				</view>
 				<view class="dljt-detail-box">
 					<view class="dljt-editor-box">
-						<view v-for="item in data.list.data" :key="item.title" @click="handleSelect(item.title)">{{item.title}}</view>
+						<view v-for="item in data.list" :key="item.title" @click="handleSelect(item)">{{item.title}}</view>
 						<!-- 富文本 -->
-						<MtaMpHtml class="dljt-editor-box" v-show="item.title == data.activeTitle" v-for="item in data.list.data" :content="item.content" ></MtaMpHtml>
+						<MtaMpHtml class="dljt-editor-box" :content="data.activeData.content" ></MtaMpHtml>
+						
+						<!-- 链接 -->
+						<view>
+							<view v-for="cItem in data.activeData.link">
+								<a :href="cItem.url">{{cItem.name}}{{cItem.url}}</a>
+							</view>
+						</view>
+						<!-- table -->
+						<view>
+							<view>
+								<view>序号</view>
+								<view>资料名称</view>
+								<view>下载</view>
+							</view>
+							<view v-for="(ccIte,index) in data.activeData.ziliao">
+								<view>{{index+1}}</view>
+								<view>{{ccIte.name}}</view>
+								<view @click="handleDownFile(ccIte)">文件下载</view>
+							</view>
+						</view>
 					</view>
 				</view>
 			</view>
@@ -40,7 +60,8 @@
 
 	const data = reactive({
 		list: null,
-		activeTitle: ''
+		activeId: null,
+		activeData: null
 	})
 
 	onLoad(() => {
@@ -55,8 +76,12 @@
 		}
 	}
 
-	function handleSelect(title) {
-		data.activeTitle = title;
+	function handleSelect(item) {
+		data.activeId = item.id;
+	}
+	
+	function handleDownFile(ccite) {
+		window.location.href = ccite.url;
 	}
 
 	
@@ -64,6 +89,10 @@
 		httpApi.getCommonZSJYShengxueList({page:data.page,size:data.size}).then(res => {
 			data.list = res.data.data;
 			data.total = res.data.total;
+			data.activeId = data.list[0].id;
+			httpApi.getCommonZSJYZhuanyeInfo({id: data.activeId}).then(res => {
+				data.activeData = res.data;
+			})
 		})
 	}
 </script>

+ 43 - 10
pages/zsjyWangnianluqufenshu/zsjyWangnianluqufenshu.vue

@@ -1,6 +1,28 @@
 <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('shouye')">首页</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-text">招生就业</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-active">往年录取分数</view>
+				</view>
+				<view class="dljt-detail-box">
+					<view class="dljt-editor-box">
+						<MtaMpHtml class="dljt-editor-box" :content="data.info.content"></MtaMpHtml>
+						<!-- pdf -->
+						<MtaPDFVue v-if="data.info.pdfUrl" :pdfUrl="data.info.pdfUrl"></MtaPDFVue>
+					</view>
+				</view>
+			</view>
+		</view>
+		<!-- 底部导航 -->
+		<MtaFooter></MtaFooter>
 	</view>
 </template>
 
@@ -13,23 +35,34 @@
 		onLoad
 	} from "@dcloudio/uni-app"
 	import * as httpApi from "@/api/common.js"
-	
-	
+	import MtaFooter from "@/components/MtaFooter.vue"
+	import MtaMpHtml from "@/components/MTAMpHtml/MtaMpHtml.vue"
+	import MtaPDFVue from "@/components/MtaPDF.vue";
+
+
 	const data = reactive({
-		content: ''
+		info: {}
 	})
-	
+
 	onLoad(() => {
 		pageInit();
 	})
-	
+
+	function handleGo(code) {
+		if (code == 'shouye') {
+			uni.navigateTo({
+				url: '/pages/index/index'
+			})
+		}
+	}
+
 	function pageInit() {
-		httpApi.getCommonGaikuangJigouShezhiInfo().then(res => {
-			data.content = res.data.content;
+		httpApi.getCommonZSJYFengshuxianInfo().then(res => {
+			data.info = res.data;
 		})
 	}
 </script>
 
 <style>
 
-</style>
+</style>

+ 51 - 10
pages/zsjyXiaoqihezuo/zsjyXiaoqihezuo.vue

@@ -1,6 +1,37 @@
 <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('shouye')">首页</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-text">招生就业</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-active">校企合作</view>
+				</view>
+				<view class="dljt-detail-box">
+					<view class="dljt-editor-box">
+						<view>
+							<view>序号</view>
+							<view>类别</view>
+							<view>企业名称</view>
+							<view>企业介绍</view>
+						</view>
+						<view v-for="(item,index) in data.list">
+							<view>{{index+1}}</view>
+							<view>{{item.leibie}}</view>
+							<view>{{item.title}}</view>
+							<view @click="handleClick(item)">查看详情</view>
+						</view>
+					</view>
+				</view>
+			</view>
+		</view>
+		<!-- 底部导航 -->
+		<MtaFooter></MtaFooter>
 	</view>
 </template>
 
@@ -13,23 +44,33 @@
 		onLoad
 	} from "@dcloudio/uni-app"
 	import * as httpApi from "@/api/common.js"
-	
-	
+	import MtaFooter from "@/components/MtaFooter.vue"
+	import MtaMpHtml from "@/components/MTAMpHtml/MtaMpHtml.vue"
+
 	const data = reactive({
-		content: ''
+		list: []
 	})
-	
+
 	onLoad(() => {
 		pageInit();
 	})
-	
+
+
+	function handleClick(item) {
+		uni.navigateTo({
+			url: `/pages/zsjyXiaoqihezuoInfo/zsjyXiaoqihezuoInfo?id=${item.id}`
+		})
+	}
+
 	function pageInit() {
-		httpApi.getCommonGaikuangJigouShezhiInfo().then(res => {
-			data.content = res.data.content;
+		httpApi.getCommonZsjyXiaoqiList({
+			size: 10000
+		}).then(res => {
+			data.list = res.data.data;
 		})
 	}
 </script>
 
 <style>
 
-</style>
+</style>

+ 72 - 10
pages/zsjyXiaoqihezuoInfo/zsjyXiaoqihezuoInfo.vue

@@ -1,31 +1,93 @@
 <template>
-	<view>
-		
+	<view class="dljt-page-box" v-if="data.info">
+		<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('shouye')">首页</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-text">招生就业</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-text" @click="handleGo('xqhz')">校企合作</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-active">详情</view>
+				</view>
+				<view class="dljt-detail-box">
+					<!-- 标题 -->
+					<view class="detail-title">{{data.info.title}}</view>
+					<!-- 时间 -->
+					<view class="detail-data">{{formatDate.join('-') }}</view>
+					<!-- 富文本 -->
+					<MtaMpHtml class="dljt-editor-box" :content="data.info.content" ></MtaMpHtml>
+					
+				</view>
+			</view>
+		</view>
+		<!-- 底部导航 -->
+		<MtaFooter></MtaFooter>
 	</view>
 </template>
 
 <script setup>
 	import {
 		ref,
-		reactive
+		reactive,
+		computed,
+    onMounted,
+    onUnmounted
 	} from "vue";
 	import {
 		onLoad
 	} from "@dcloudio/uni-app"
 	import * as httpApi from "@/api/common.js"
-	
-	
+	import {formatDateToYearMonthDay } from "@/utils/common.js"
+  import MtaMpHtml from "@/components/MTAMpHtml/MtaMpHtml.vue"
+  import MtaPDFVue from "@/components/MtaPDF.vue";
+  import MtaFooter from "@/components/MtaFooter.vue"
 	const data = reactive({
-		content: ''
+		info: null,
+		id: null
 	})
-	
-	onLoad(() => {
+	const formatDate = computed(() => {
+      if (data.info && data.info.createTime) {
+		return formatDateToYearMonthDay(data.info.createTime)
+      }
+        return []
+    })
+
+
+	onLoad(({
+		id
+	}) => {
+		data.id = id;
 		pageInit();
 	})
+
+  
+  function handleGo(code) {
+	  if (code == 'shouye') {
+		  uni.navigateTo({
+		  	url: '/pages/index/index'
+		  })
+	  }
+	  if (code == 'xqhz') {
+		  uni.navigateTo({
+		  	url: '/pages/zsjyXiaoqihezuo/zsjyXiaoqihezuo'
+		  })
+	  }
+  }
+
+	function handleDownFile() {
+		window.location.href = pdfUrl;
+	}
+
 	
 	function pageInit() {
-		httpApi.getCommonGaikuangJigouShezhiInfo().then(res => {
-			data.content = res.data.content;
+		httpApi.getCommonZsjyXiaoqiInfo({id: data.id}).then(res => {
+			data.info = res.data;
 		})
 	}
 </script>

+ 62 - 13
pages/zsjyYouxiubiyesheng/zsjyYouxiubiyesheng.vue

@@ -1,6 +1,34 @@
 <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="video-item-box" v-for="item in list" :key="item.id" @click="handleClick(item)">
+							<!-- 图 -->
+							<image :src="item.cover"></image>
+							<!-- 内容 -->
+							<view class="video-mask-box">
+								<view class="video-data">[{{formatDateToYearMonthDay(item.createTime).join('-')}}]
+								</view>
+								<view class="video-title">{{item.title}}</view>
+							</view>
+						</view>
+					</template>
+				</MtaScrollViewVue>
+			</view>
+			<!-- 底部导航 -->
+			<MtaFooter></MtaFooter>
+		</view>
 	</view>
 </template>
 
@@ -13,23 +41,44 @@
 		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: ''
-	})
-	
-	onLoad(() => {
-		pageInit();
+		list: '',
+		total: '',
+		page: 1,
+		size: 5
 	})
-	
+
+	function handleClick(data) {
+		uni.navigateTo({
+			url: `/pages/zsjyYouxiubiyeshengInfo/zsjyYouxiubiyeshengInfo?id=${data.id}`
+		})
+	}
+
+	function getList(data) {
+		return httpApi.getCommonZSJYYouxiubiyeshengList(data)
+	}
+
+	function handleGo() {
+		uni.navigateTo({
+			url: '/pages/index/index'
+		})
+	}
+
 	function pageInit() {
-		httpApi.getCommonGaikuangJigouShezhiInfo().then(res => {
-			data.content = res.data.content;
+		httpApi.getCommonZSJYYouxiubiyeshengList().then(res => {
+			data.list = res.data.data;
+			data.total = res.data.total;
 		})
 	}
 </script>
 
 <style>
 
-</style>
+</style>

+ 74 - 11
pages/zsjyYouxiubiyeshengInfo/zsjyYouxiubiyeshengInfo.vue

@@ -1,31 +1,94 @@
 <template>
-	<view>
-		
+	<view class="dljt-page-box" v-if="data.info">
+		<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('shouye')">首页</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-text">招生就业</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-text" @click="handleGo('yxbys')">优秀毕业生</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-active">详情</view>
+				</view>
+				<view class="dljt-detail-box">
+					<!-- 标题 -->
+					<view class="detail-title">{{data.info.title}}</view>
+					<!-- 图 -->
+					<image :src="data.info.cover"></image>
+					<!-- 简介 -->
+					<view>{{data.info.jianjie}}</view>
+					<!-- 富文本 -->
+					<MtaMpHtml class="dljt-editor-box" :content="data.info.content" ></MtaMpHtml>
+
+				</view>
+			</view>
+		</view>
+		<!-- 底部导航 -->
+		<MtaFooter></MtaFooter>
 	</view>
 </template>
 
 <script setup>
 	import {
 		ref,
-		reactive
+		reactive,
+		computed,
+    onMounted,
+    onUnmounted
 	} from "vue";
 	import {
 		onLoad
 	} from "@dcloudio/uni-app"
 	import * as httpApi from "@/api/common.js"
-	
-	
+	import {formatDateToYearMonthDay } from "@/utils/common.js"
+  import MtaMpHtml from "@/components/MTAMpHtml/MtaMpHtml.vue"
+  import MtaPDFVue from "@/components/MtaPDF.vue";
+  import MtaFooter from "@/components/MtaFooter.vue"
 	const data = reactive({
-		content: ''
+		info: null,
+		id: null
 	})
-	
-	onLoad(() => {
+	const formatDate = computed(() => {
+      if (data.info && data.info.createTime) {
+		return formatDateToYearMonthDay(data.info.createTime)
+      }
+        return []
+    })
+
+
+	onLoad(({
+		id
+	}) => {
+		data.id = id;
 		pageInit();
 	})
-	
+
+  
+  function handleGo(code) {
+	  if (code == 'shouye') {
+		  uni.navigateTo({
+		  	url: '/pages/index/index'
+		  })
+	  }
+	  if (code == 'yxbys') {
+		  uni.navigateTo({
+		  	url: '/pages/zsjyYouxiubiyesheng/zsjyYouxiubiyesheng'
+		  })
+	  }
+  }
+
+	function handleDownFile() {
+		window.location.href = pdfUrl;
+	}
+
 	function pageInit() {
-		httpApi.getCommonGaikuangJigouShezhiInfo().then(res => {
-			data.content = res.data.content;
+		httpApi.getCommonZSJYYouxiubiyeshengInfo({id:data.id}).then(res => {
+			data.info = res.data;
 		})
 	}
 </script>

+ 42 - 8
pages/zsjyZhaopinxinxi/zsjyZhaopinxinxi.vue

@@ -1,6 +1,28 @@
 <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('shouye')">首页</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-text">招生就业</view>
+					<icon class="breadcrumb-jt"></icon>
+					<view class="breadcrumb-active">招聘信息</view>
+				</view>
+				<view class="dljt-detail-box">
+					<view class="dljt-editor-box">
+						<MtaMpHtml class="dljt-editor-box" :content="data.info.content"></MtaMpHtml>
+						<!-- pdf -->
+						<MtaPDFVue v-if="data.info.pdfUrl" :pdfUrl="data.info.pdfUrl"></MtaPDFVue>
+					</view>
+				</view>
+			</view>
+		</view>
+		<!-- 底部导航 -->
+		<MtaFooter></MtaFooter>
 	</view>
 </template>
 
@@ -13,19 +35,31 @@
 		onLoad
 	} from "@dcloudio/uni-app"
 	import * as httpApi from "@/api/common.js"
-	
-	
+	import MtaFooter from "@/components/MtaFooter.vue"
+	import MtaMpHtml from "@/components/MTAMpHtml/MtaMpHtml.vue"
+	import MtaPDFVue from "@/components/MtaPDF.vue";
+
+
 	const data = reactive({
-		content: ''
+		info: {}
 	})
-	
+
 	onLoad(() => {
 		pageInit();
 	})
+
+	function handleGo(code) {
+		if (code == 'shouye') {
+			uni.navigateTo({
+				url: '/pages/index/index'
+			})
+		}
+	}
+
 	
 	function pageInit() {
-		httpApi.getCommonGaikuangJigouShezhiInfo().then(res => {
-			data.content = res.data.content;
+		httpApi.getCommonZsjyZhaopin().then(res => {
+			data.info = res.data;
 		})
 	}
 </script>