zyx 1 year ago
parent
commit
c8a755c791
6 changed files with 54 additions and 8 deletions
  1. 6 0
      pages.json
  2. 2 2
      pages/address/address.vue
  3. 4 5
      pages/address/addressManage.vue
  4. 41 0
      pages/user/jiance.vue
  5. 1 1
      pages/user/user.vue
  6. BIN
      static/img/xc.png

+ 6 - 0
pages.json

@@ -289,6 +289,12 @@
 			   		"navigationBarTitleText": "我的素材"
 			   	}
 			   },
+			   {
+			   	"path": "jiance",
+			   	"style": {
+			   		"navigationBarTitleText": "我的检测"
+			   	}
+			   },
 			   {
 			   	"path": "shareQrCode",
 			   	"style": {

+ 2 - 2
pages/address/address.vue

@@ -214,7 +214,7 @@ page {
 	height: 80rpx;
 	font-size: $font-lg;
 	color: #fff;
-	background-color: $base-color;
-	border-radius: 10rpx;
+	background-color: #ff4c4c;
+	border-radius: 40rpx;
 }
 </style>

+ 4 - 5
pages/address/addressManage.vue

@@ -308,17 +308,16 @@ page {
 	}
 }
 .add-btn {
+	width: 560rpx;
+	height: 80rpx;
+	border-radius: 40rpx;
 	display: flex;
 	align-items: center;
 	justify-content: center;
-	width: 690rpx;
-	height: 80rpx;
 	margin: 60rpx auto;
 	font-size: $font-lg;
 	color: #fff;
-	background-color: $base-color;
-	border-radius: 10rpx;
-	// box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
+	background-color: #FC4141;
 }
 
 .alert-box {

+ 41 - 0
pages/user/jiance.vue

@@ -0,0 +1,41 @@
+<template>
+	<view class="container">
+		<view class="jc">
+			<view class="list">
+				<image class="xc" src="../../static/img/xc.png" mode=""></image>
+			</view>
+		</view>
+	</view>
+</template>
+<script>
+export default {
+		data() {
+			return {
+				
+			}
+		},
+		onShow() {
+			
+		},
+		methods: {
+			
+		}
+	};
+</script>
+<style lang="scss">
+	.container {
+		// height: 100%;
+		min-height: 1500rpx;
+		background-color: #fff;
+		.jc {
+			margin-top: 20rpx;
+			background-color: #fff;
+			.xc {
+				width: 360rpx;
+				height: 477rpx;
+				// padding: 15rpx 23rpx;
+				padding:  20rpx 10rpx 10rpx 20rpx;
+			}
+		}
+	}
+</style>

+ 1 - 1
pages/user/user.vue

@@ -83,7 +83,7 @@
 		<uni-list class="tool-list margin-t-30">
 			<uni-list-item class="item" title="我的素材" @click="navTo('/pages/user/sucai')"
 				thumb="/static/icon/user-sc.png"></uni-list-item>
-				<uni-list-item class="item" title="我的检测" @click="navTo('/pages/set/set')"
+				<uni-list-item class="item" title="我的检测" @click="navTo('/pages/user/jiance')"
 					thumb="/static/icon/user-jc.png"></uni-list-item>
 			<uni-list-item class="item" title="推广海报" @click="navTo('/pages/user/shareQrCode')"
 				thumb="/static/icon/user-tg.png"></uni-list-item>

BIN
static/img/xc.png