常志远 2 anni fa
parent
commit
369ce43ade

BIN
assets/img/traniningPicture.png


+ 18 - 0
pages.json

@@ -112,6 +112,24 @@
             }
             
         }
+        ,{
+            "path" : "pages/skillTraining/skillTraining",
+            "style" :                                                                                    
+            {
+                "navigationBarTitleText": "技能培训",
+                "enablePullDownRefresh": false
+            }
+            
+        }
+        ,{
+            "path" : "pages/skillTraining/trainingRegistration",
+            "style" :                                                                                    
+            {
+                "navigationBarTitleText": "培训报名",
+                "enablePullDownRefresh": false
+            }
+            
+        }
     ],
 	"globalStyle": {
 		"navigationStyle": "custom", // 隐藏系统导航栏

+ 91 - 0
pages/skillTraining/skillTraining.vue

@@ -0,0 +1,91 @@
+<template>
+	<view>
+		<u-navbar back-text="技能培训" back-icon-size="28" back-icon-color="#ffffff"
+			:background="{backgroundColor: '#2795FD',}" :back-text-style="{color: '#ffffff'}"></u-navbar>
+		
+	  <view class="content">
+		  <!-- 图片 -->
+		  <view class="picture">
+		  	<img src="../../assets/img/traniningPicture.png" alt="">
+		  </view>
+		  <u-line  color="#e6e6e6"/>
+	  	<!-- 标题 -->
+		<view class="title">
+			育婴师资格证(高级)认证机构培训
+		</view>
+		<!-- 报名状态 -->
+		<view class="state">
+			开放报名
+		</view>
+	  </view>
+	  
+	  <view class="content">
+	  		  <!-- 图片 -->
+	  		  <view class="picture">
+	  		  	<img src="../../assets/img/traniningPicture.png" alt="">
+	  		  </view>
+	  		  <u-line  color="#e6e6e6"/>
+	  	<!-- 标题 -->
+	  		<view class="title">
+	  			育婴师资格证(高级)认证机构培训
+	  		</view>
+	  		<!-- 报名状态 -->
+	  		<view class="state state2">
+	  			开放报名
+	  		</view>
+	  </view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		methods: {
+			
+		}
+	}
+</script>
+<style>
+	page {
+		background: #F0F0F2;
+		padding-bottom: 50px;
+	}
+</style>
+
+<style lang="scss" scoped>
+	.content{
+		margin: 24rpx 32rpx 0;
+		background-color: #fff;
+		padding: 24rpx;
+		border-radius: 24rpx;
+		.picture{
+			width: 100%;
+			height: 240rpx;
+			margin-bottom: 24rpx;
+		
+			img{
+				width: 100%;
+				height: 100%;
+			}
+		}
+		.title{
+			color: rgba(16, 16, 16, 1);
+			font-size: 32rpx;
+			margin-top: 24rpx;
+		}
+		// 报名状态
+		.state{
+			color: rgba(0, 185, 98, 1);
+			font-size: 24rpx;
+			margin-top: 60rpx;
+		}
+		.state2{
+			color: rgba(153, 153, 153, 1);
+		}
+	}
+
+</style>

+ 22 - 0
pages/skillTraining/trainingRegistration.vue

@@ -0,0 +1,22 @@
+<template>
+	<view>
+		
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+				
+			}
+		},
+		methods: {
+			
+		}
+	}
+</script>
+
+<style>
+
+</style>