From 9c88a17f84242bc3ab10d36b0a01c62bbae06954 Mon Sep 17 00:00:00 2001 From: Ledo Date: Wed, 27 Aug 2025 22:25:27 +0800 Subject: [PATCH] =?UTF-8?q?=E9=AB=98=E7=BA=A7=E8=BF=87=E6=BB=A4=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/receivingGoods/receivingGoods.vue | 1189 +++++++++-------- 1 file changed, 636 insertions(+), 553 deletions(-) diff --git a/mes-ui/mini-app/src/pages/receivingGoods/receivingGoods.vue b/mes-ui/mini-app/src/pages/receivingGoods/receivingGoods.vue index 6bdf2600..1b1e4585 100644 --- a/mes-ui/mini-app/src/pages/receivingGoods/receivingGoods.vue +++ b/mes-ui/mini-app/src/pages/receivingGoods/receivingGoods.vue @@ -1,620 +1,703 @@ import type { stringify } from 'querystring'; + .star { + color: red + } + } + + .val { + flex: 1; + font-size: 32rpx; + } + + .unit { + width: 100rpx; + margin-left: 4rpx; + text-align: center; + } + } + } + + /* 新增按钮组容器样式 */ + .button-group { + display: flex; + /* 开启弹性布局 */ + justify-content: center; + /* 水平居中对齐 */ + gap: 20rpx; + /* 按钮间距 */ + } + + /* 修正原有 .ok 样式 */ + .ok, + .cancel { + font-size: 32rpx; + text-align: center; + width: 200rpx; + border-radius: 10rpx; + padding: 8rpx 0; + background-color: #3C8AF7; + color: #fff; + margin: 20rpx auto 80rpx; + /* 移除原有的 margin: 20rpx auto 80rpx; */ + } + + /* 可选:为取消按钮添加不同样式 */ + .cancel { + background: linear-gradient(157deg, #A9A9A9 -3%, #A9A9A9 90%); + } + } +