From b32694dc943c4aac1ed14dddbc22292a50428d08 Mon Sep 17 00:00:00 2001
From: yyb <995253665@qq.com>
Date: 星期一, 09 六月 2025 11:04:33 +0800
Subject: [PATCH] 核磅录入/库存件盘点样式修改
---
pages/product/cancelReport/index.vue | 34 ++++++++++++++++++++++++++++++++--
1 files changed, 32 insertions(+), 2 deletions(-)
diff --git a/pages/product/cancelReport/index.vue b/pages/product/cancelReport/index.vue
index 68365de..7a4e429 100644
--- a/pages/product/cancelReport/index.vue
+++ b/pages/product/cancelReport/index.vue
@@ -1,7 +1,10 @@
<template>
<!-- 鍙栨秷鎶ュ伐 -->
<view class="page">
- <u-form :model="form" ref="uForm" :label-width="280" :rules="rules" :error-type="['toast']">
+ <view class="packing-registration-bg" />
+ <u-navbar title="鍙栨秷鎶ュ伐" :background="background" :border-bottom="false" :title-bold="true" title-color="#000"
+ back-icon-color="#000" />
+ <u-form :model="form" ref="uForm" :label-width="280" :rules="rules" :error-type="['toast']" class="uForm">
<u-form-item label="璁㈠崟鍙�" :border-bottom="false" prop="value3">
<u-input v-model="form.value3" type="select" placeholder="鐐瑰嚮閫夋嫨" @click="openList" />
</u-form-item>
@@ -11,9 +14,16 @@
</template>
<script>
+import content_bg from '@/static/custom/packing/backBg.png'
export default {
data() {
return {
+ background: {
+ backgroundImage: `url(${content_bg})`,
+ backgroundAttachment: 'fixed',
+ backgroundSize: '100% auto',
+ backgroundRepeat: 'no-repeat',
+ },
form: {
value3: ''
},
@@ -37,7 +47,27 @@
<style lang="scss" scoped>
.page {
box-sizing: border-box;
- padding: 30rpx;
+}
+
+.packing-registration-bg {
+ background-color: #f6f9ff;
+ background-image: url("~@/static/custom/packing/backBg.png");
+ padding: 0 20rpx;
+ background-attachment: fixed;
+ background-size: 100% auto;
+ background-repeat: no-repeat;
+ position: fixed;
+ top: 0;
+ bottom: 0;
+ width: 100%;
+ z-index: -1;
+}
+
+.uForm {
+ background: #fff;
+ margin: 40rpx 30rpx;
+ padding: 20rpx 30rpx;
+ border-radius: 16rpx;
}
::v-deep .u-input__input {
--
Gitblit v1.9.3