dedsudiyu 1 week ago
parent
commit
93bc2ae1ad

+ 42 - 0
pages.json

@@ -1197,6 +1197,30 @@
 					}
 					}
 				},
 				},
 				{
 				{
+					"path": "views/exam/onlineExamInfo",
+					"style": {
+						"navigationBarTitleText": "考试详情"
+					}
+				},
+				{
+					"path": "views/exam/onlineExamPlay",
+					"style": {
+						"navigationBarTitleText": "考试中"
+					}
+				},
+				{
+					"path": "views/exam/mockExamInfo",
+					"style": {
+						"navigationBarTitleText": "模拟考试"
+					}
+				},
+				{
+					"path": "views/exam/mockExamPlay",
+					"style": {
+						"navigationBarTitleText": "模拟考试中"
+					}
+				},
+				{
 					"path": "views/study/index",
 					"path": "views/study/index",
 					"style": {
 					"style": {
 						"navigationBarTitleText": "知识学习"
 						"navigationBarTitleText": "知识学习"
@@ -1219,6 +1243,24 @@
 					"style": {
 					"style": {
 						"navigationBarTitleText": "实验室审批"
 						"navigationBarTitleText": "实验室审批"
 					}
 					}
+				},
+				{
+					"path": "views/learning/index",
+					"style": {
+						"navigationBarTitleText": "学习任务详情"
+					}
+				},
+				{
+					"path": "views/webViewPage/courseLearning",
+					"style": {
+						"navigationBarTitleText": "学习任务"
+					}
+				},
+				{
+					"path": "views/webViewPage/coursewareLearning",
+					"style": {
+						"navigationBarTitleText": "知识学习"
+					}
 				}
 				}
 			]
 			]
 		}
 		}

+ 8 - 0
pages_safetyEducationExamination/views/exam/mockExamInfo.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
pages_safetyEducationExamination/views/exam/mockExamPlay.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
pages_safetyEducationExamination/views/exam/onlineExamInfo.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
pages_safetyEducationExamination/views/exam/onlineExamPlay.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 8 - 0
pages_safetyEducationExamination/views/learning/index.vue

@@ -0,0 +1,8 @@
+<template>
+</template>
+
+<script>
+</script>
+
+<style>
+</style>

+ 35 - 0
pages_safetyEducationExamination/views/webViewPage/courseLearning.vue

@@ -0,0 +1,35 @@
+<!-- 课程学习 -->
+<template>
+	<view id="courseLearning-web-view">
+		<web-view v-if="webViewType" :src="baseUrl + dataText"></web-view>
+	</view>
+</template>
+
+<script>
+	export default {
+		name: "courseLearning-web-view",
+		data() {
+			return {
+				webViewType: false,
+				baseUrl: config.saoCodeTypeUrl,
+				dataText:'',
+			}
+		},
+		onLoad(option) {
+			
+		},
+		mounted() {
+
+		},
+
+		methods: {
+			
+		},
+	}
+</script>
+
+<style lang="stylus" scoped>
+	#courseLearning-web-view {
+		overflow:scroll;
+	}
+</style>

+ 35 - 0
pages_safetyEducationExamination/views/webViewPage/coursewareLearning.vue

@@ -0,0 +1,35 @@
+<!-- 课件学习 -->
+<template>
+	<view id="coursewareLearning-web-view">
+		<web-view v-if="webViewType" :src="baseUrl + dataText"></web-view>
+	</view>
+</template>
+
+<script>
+	export default {
+		name: "coursewareLearning-web-view",
+		data() {
+			return {
+				webViewType: false,
+				baseUrl: config.saoCodeTypeUrl,
+				dataText:'',
+			}
+		},
+		onLoad(option) {
+			
+		},
+		mounted() {
+
+		},
+
+		methods: {
+			
+		},
+	}
+</script>
+
+<style lang="stylus" scoped>
+	#coursewareLearning-web-view {
+		overflow:scroll;
+	}
+</style>