Browse Source

添加学费缴纳H5链接

xiaoxin 3 years ago
parent
commit
7a29f577c0
4 changed files with 37 additions and 5 deletions
  1. 6 0
      pages.json
  2. 9 5
      pages/index/index.vue
  3. 22 0
      pagesClockIn/money/money.vue
  4. BIN
      static/images/money.png

+ 6 - 0
pages.json

@@ -270,6 +270,12 @@
 						"navigationBarTitleText": "授权中",
 						"enablePullDownRefresh": false
 					}
+				}, {
+					"path": "money/money",
+					"style": {
+						"navigationBarTitleText": "",
+						"enablePullDownRefresh": false
+					}
 				}
 			]
 		}

+ 9 - 5
pages/index/index.vue

@@ -17,9 +17,13 @@
 					<image src="../../static/images/air.png" mode=""></image>
 					<text>共享空调</text>
 				</navigator>
-				<navigator :url="'/pagesClockIn/index/index'" open-type="navigate" class="menu_item">
+				<!-- <navigator :url="'/pagesClockIn/index/index'" open-type="navigate" class="menu_item">
 					<image src="../../static/images/clockIn.png" mode=""></image>
 					<text>校园打卡</text>
+				</navigator> -->
+				<navigator :url="'/pagesClockIn/money/money'" open-type="navigate" class="menu_item">
+					<image src="../../static/images/money.png" mode=""></image>
+					<text>学费缴纳</text>
 				</navigator>
 			</view>
 		</view>
@@ -100,11 +104,11 @@
 					} else if (res.data.data[0].value == 2) {
 						// 系统正在维护...
 						this.$store.state.test = 'weihuzhong'
-						
+
 						uni.showModal({
 							title: '提示信息',
-							content:'系统维护中...\r\n暂时请不要使用!\r\n避免造成不必要的损失!',
-							showCancel:false
+							content: '系统维护中...\r\n暂时请不要使用!\r\n避免造成不必要的损失!',
+							showCancel: false
 						});
 					} else {
 						// 正式模式
@@ -474,4 +478,4 @@
 			background-color: #FFFFFF;
 		}
 	}
-</style>
+</style>

+ 22 - 0
pagesClockIn/money/money.vue

@@ -0,0 +1,22 @@
+<template>
+	<view>
+		<web-view src="https://chtech.ncjti.edu.cn/jiaofei/jiaofeiH5/"></web-view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+
+			}
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style>
+
+</style>

BIN
static/images/money.png