From 5abafa3610cc7d6398e2a5a9caf6efd6d37efe5b Mon Sep 17 00:00:00 2001
From: GULIMMO <2820890765@qq.com>
Date: Mon, 13 Nov 2023 14:53:47 +0800
Subject: [PATCH] 页面样式及功能更新

---
 subPackage/workbench/views/examine.vue |   65 +++++++++++++++++++-------------
 1 files changed, 39 insertions(+), 26 deletions(-)

diff --git a/subPackage/workbench/views/examine.vue b/subPackage/workbench/views/examine.vue
index c79b3ad..aee7c74 100644
--- a/subPackage/workbench/views/examine.vue
+++ b/subPackage/workbench/views/examine.vue
@@ -9,8 +9,8 @@
 		<view class="licence">
 			<box-title title="营业执照" class="box-title"></box-title>
 			<view class="info">
-				<view class="images-box">
-					<u-image v-if="imageObj.imageUrls" width="80" height="80" :src="imageObj.imageUrls"
+				<view class="images-box" v-if="!!imageObj.imageUrls">
+					<u-image  width="80" height="80" :src="imageObj.imageUrls"
 						@click="preViewImg(imageObj.imageUrls)"></u-image>
 				</view>
 			</view>
@@ -18,8 +18,8 @@
 		<view class="planegraph">
 			<box-title title="场所平面图" class="box-title"></box-title>
 			<view class="info">
-				<view class="images-box">
-					<u-image v-if="imageObj.planImageUrl" width="80" height="80" :src="imageObj.planImageUrls"
+				<view class="images-box" v-if="!!imageObj.planImageUrl">
+					<u-image  width="80" height="80" :src="imageObj.planImageUrls"
 						@click="preViewImg(imageObj.planImageUrl)"></u-image>
 				</view>
 			</view>
@@ -230,14 +230,30 @@
 		}
 	}
 </script>
-
-<style lang="scss">
-	page {
-		background-color: #f5f5f5;
-	}
+
+<style>
+	page {
+		background-color: #f5f5f5;
+	}
+</style>
+<style lang="scss" scoped>
+	
 
 	.container {
-		padding-bottom: 130rpx;
+		padding-bottom: 130rpx;
+		padding: 20rpx 30rpx;
+		padding-bottom: 140rpx;
+		
+		.basic,
+		.licence,
+		.planegraph,
+		.personnel,
+		.examine {
+			background-color: #fff;
+			padding: 30rpx;
+			margin-top: 20rpx;
+			border-radius: 8rpx;
+		}
 
 		.box-title {
 			margin-bottom: 15rpx;
@@ -267,19 +283,6 @@
 				}
 			}
 		}
-
-		.form {
-			background-color: #fff;
-
-			.form-item {
-				padding: 0 20rpx;
-
-				&:first-child {
-					border-bottom: 1rpx solid #f6f6ff;
-				}
-			}
-		}
-
 		.bottom-btn {
 			position: fixed;
 			left: 0;
@@ -291,8 +294,18 @@
 		}
 	}
 
-	/deep/ .u-form-item__body__left__content__label,
-	/deep/ .uni-input-placeholder {
-		font-size: 30rpx;
+	// /deep/ .u-form-item__body__left__content__label,
+	// /deep/ .uni-input-placeholder {
+	// 	font-size: 30rpx;
+	// }
+	/deep/ .u-form {
+		background-color: #fff;
+		.u-form-item {
+			padding: 0 20rpx;
+			border-bottom: 1rpx solid #f6f6ff;
+			&:last-child {
+				border: 0;
+			}
+		}
 	}
 </style>
\ No newline at end of file

--
Gitblit v1.9.3