From ff407379cdc81ba798fc1427c97beecdc8a32d39 Mon Sep 17 00:00:00 2001
From: wangsiyang <524156191@qq.com>
Date: Wed, 24 Sep 2025 15:23:05 +0800
Subject: [PATCH] =?UTF-8?q?UI=E4=BF=AE=E6=94=B92.0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
 components/bottomBtn/bottomBtn.vue         |   6 +-
 pages/changeBaseUrl.vue                    | 128 ++++++++----
 pages/mine/index.vue                       | 215 +++++++++++++++------
 pages/work/index.vue                       |   4 +-
 pages/work/wms/emptyPalletIn.vue           | 122 +++++++-----
 pages/work/wms/mesStockChange.vue          | 160 ++++++++++++---
 pages/work/wms/skuCreatePallet.vue         |  86 +++++----
 pages/work/wms/skuCreatePalletByCodeH5.vue | 118 +++++++----
 pages/work/wms/surplusOut.vue              |   1 -
 static/images/house.png                    | Bin 0 -> 20302 bytes
 static/images/icon1.png                    | Bin 0 -> 1364 bytes
 static/images/icon2.png                    | Bin 0 -> 1185 bytes
 static/images/icon3.png                    | Bin 0 -> 1739 bytes
 static/json/dynamicRouter.json             |   8 +-
 14 files changed, 593 insertions(+), 255 deletions(-)
 create mode 100644 static/images/house.png
 create mode 100644 static/images/icon1.png
 create mode 100644 static/images/icon2.png
 create mode 100644 static/images/icon3.png
diff --git a/components/bottomBtn/bottomBtn.vue b/components/bottomBtn/bottomBtn.vue
index de44d1b..8654f43 100644
--- a/components/bottomBtn/bottomBtn.vue
+++ b/components/bottomBtn/bottomBtn.vue
@@ -10,7 +10,7 @@
 
 		
 		
-			{{ texts[0] }}
+			{{ texts[0] }}
 			{{ texts[1] }}
 		
 
@@ -36,6 +36,10 @@
 				type: Boolean,
 				default: false
 			},
+			cancelBtnColor:{
+				type: String,
+				default: '#165DFF'
+			},
 			isWhite: {
 				type: Boolean,
 				default: true
diff --git a/pages/changeBaseUrl.vue b/pages/changeBaseUrl.vue
index 33205d6..2441412 100644
--- a/pages/changeBaseUrl.vue
+++ b/pages/changeBaseUrl.vue
@@ -1,42 +1,45 @@
 
 	
-		
-			
-			
-			修改配置信息
-		
-		
 
@@ -65,6 +70,9 @@
 		getCodeImg,
 		register
 	} from '@/api/login';
+	import {
+		bottomBtn
+	} from '@/components/bottomBtn/bottomBtn.vue'
 	import config from '@/config';
 	import errorCode from '@/utils/errorCode';
 	import store from '@/store'
@@ -95,6 +103,9 @@
 		created() {
 			//this.getCode()
 		},
+		component: {
+			bottomBtn
+		},
 		methods: {
 			// 用户登录
 			handleUserLogin() {
@@ -245,10 +256,43 @@
 	page {
 		background-color: #ffffff;
 	}
-
+	
 	.normal-login-container {
 		width: 100%;
-
+		background: rgb(242, 243, 245);
+		height: 100vh;
+		
+		.menu{
+			width: 702rpx;
+			border-radius: 24rpx;
+			background: rgb(255, 255, 255);
+			padding: 12rpx 24rpx;
+			margin:24rpx auto;
+			.item{
+				
+				.content{
+					padding: 12px 0;
+					.title{
+						display: flex;
+						align-items: center;
+						justify-content: space-between;
+						.titlemes{
+							color: rgb(78, 89, 105);
+							font-size: 28rpx;
+							font-weight: 400;
+						}
+						.btn{
+							color: rgb(22, 93, 255);
+							font-size: 28rpx;
+							font-weight: 400;
+						}
+					}
+					.text{
+						padding: 16rpx 0;
+					}
+				}
+			}
+		}
 		.logo-content {
 			width: 100%;
 			font-size: 21px;
@@ -260,15 +304,19 @@
 			}
 
 			.title {
+				color: rgb(29, 33, 41);
+				font-size: 32rpx;
+				font-weight: 700;
 				margin-left: 10px;
 			}
 		}
 
 		.login-form-content {
-			text-align: center;
-			margin: 20px auto;
-			margin-top: 15%;
-			width: 80%;
+			width: 702rpx;
+			border-radius: 24rpx;
+			background: rgb(255, 255, 255);
+			padding: 12rpx 24rpx;
+			margin:24rpx auto;
 
 			.input-item {
 				margin: 20px auto;
diff --git a/pages/mine/index.vue b/pages/mine/index.vue
index ea60898..a8595f9 100644
--- a/pages/mine/index.vue
+++ b/pages/mine/index.vue
@@ -1,8 +1,8 @@
 
 	
 		
-