常志远 2 gadi atpakaļ
vecāks
revīzija
3d66a5312a

BIN
assets/img/articlePicture.png


BIN
assets/img/headPortrait.png


+ 10 - 0
pages.json

@@ -54,6 +54,16 @@
             }
             
         }
+        
+        ,{
+            "path" : "pages/shareEmployment/articleDetail",
+            "style" :                                                                                    
+            {
+                "navigationBarTitleText": "",
+                "enablePullDownRefresh": false
+            }
+            
+        }
     ],
 	"globalStyle": {
 		"navigationStyle": "custom", // 隐藏系统导航栏

+ 2 - 2
pages/index/index.vue

@@ -247,8 +247,8 @@
 				height: 48rpx;
 
 				img {
-					width: 48rpx;
-					height: 48rpx;
+					width: 100%;
+					height: 100%;
 				}
 			}
 

+ 117 - 0
pages/shareEmployment/articleDetail.vue

@@ -0,0 +1,117 @@
+<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="main">
+			<!-- 标题 -->
+			<view class="title">
+				企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。
+			</view>
+			<!-- 其他信息 -->
+			<view class="infos">
+				<view class="photo">
+					<img src="../../assets/img/headPortrait.png"></img>
+				</view>
+				<view class="name">
+					许愿
+				</view>
+				<view class="date">
+					2023-07-01
+				</view>
+				<view class="tag">
+					急需用工
+				</view>
+			</view>
+			<u-line color="#CFD2D5" />
+			<!-- 文章内容 -->
+			<view class="content">
+				企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118
+				刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118
+				刘女士。企业现急需熟练机床车工5名,如有资源请联系0716-8818118 刘女士。
+			</view>
+			<!-- 图片 -->
+			<view class="picture">
+				<img src="../../assets/img/articlePicture.png" alt="">
+			</view>
+		</view>
+	</view>
+</template>
+
+<script>
+	export default {
+		data() {
+			return {
+
+			}
+		},
+		methods: {
+
+		}
+	}
+</script>
+
+<style scoped lang="scss">
+	.main {
+		padding: 40rpx 32rpx;
+
+		// 标题
+		.title {
+			color: rgba(16, 16, 16, 1);
+			font-size: 36rpx;
+		}
+
+		// 其他信息
+		.infos {
+			display: flex;
+			align-items: center;
+			margin-top: 24rpx;
+			margin-bottom: 36rpx;
+
+			.photo {
+				width: 48rpx;
+				height: 48rpx;
+				border-radius: 50px;
+
+				img {
+					width: 48rpx;
+					height: 48rpx;
+				}
+			}
+
+			.name {
+				color: rgba(16, 16, 16, 1);
+				margin-left: 8rpx;
+			}
+
+			.date {
+				color: rgba(119, 119, 119, 1);
+				margin-left: 32rpx;
+			}
+
+			.tag {
+				flex: 1;
+				color: rgba(39, 149, 253, 1);
+				text-align: right;
+			}
+
+		}
+		// 文章内容
+		.content{
+			color: rgba(16, 16, 16, 1);
+			line-height: 56rpx;
+			// text-align: j;
+		}
+		// 图片
+		.picture{
+			margin-top: 24rpx;
+			border-radius: 4px;
+			width: 100%;
+			height: 400rpx;
+			img{
+				width: 100%;
+				height: 100%;
+			}
+		}
+	}
+</style>
+r