From 3933f3629ec6282e5f070923f04bbf2c1add6687 Mon Sep 17 00:00:00 2001
From: zs <zhousong@weben-smart.com>
Date: 周三, 30 4月 2025 13:58:19 +0800
Subject: [PATCH] 物料基础表导入导出增删改查

---
 HIAWms/web/src/widgets/HIAWms/Views/Pages/WmsMaterial/WmsMaterial.module.scss |   77 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 77 insertions(+), 0 deletions(-)

diff --git a/HIAWms/web/src/widgets/HIAWms/Views/Pages/WmsMaterial/WmsMaterial.module.scss b/HIAWms/web/src/widgets/HIAWms/Views/Pages/WmsMaterial/WmsMaterial.module.scss
new file mode 100644
index 0000000..c9483b9
--- /dev/null
+++ b/HIAWms/web/src/widgets/HIAWms/Views/Pages/WmsMaterial/WmsMaterial.module.scss
@@ -0,0 +1,77 @@
+.wmsMaterialContent {
+  width: 100%;
+  height: 100%;
+
+  .wmsMaterialList {
+    width: 100%;
+    height: calc(100% - 70px);
+  }
+  .headerContent {
+    display: flex;
+    justify-content: space-between;
+    align-items: center;
+    height: 43px;
+  }
+  .header {
+    margin-bottom: 12px;
+    display: flex;
+    justify-content: flex-start;
+    align-items: center;
+  }
+}
+
+.tagBox {
+  width: auto;
+  min-width: 80px;
+  height: 24px;
+  background: #ffffff;
+  border-radius: 19px 19px 19px 19px;
+  opacity: 1;
+  border: 1px dashed #bcc4cc;
+  width: 50px;
+  height: 20px;
+  font-size: 14px;
+  font-family: PingFang SC, PingFang SC;
+  font-weight: 400;
+  color: #5a84ff;
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  // cursor: pointer;
+}
+
+.group {
+  display: flex;
+  justify-content: space-between;
+  align-items: center;
+}
+
+.groupTable {
+  width: 100%;
+}
+
+.overBox {
+  width: 100%;
+  height: calc(100% - 20px);
+  overflow: auto;
+  :global(.cs-collapse-item__header) {
+    background-color: #f1f1f1;
+    padding: 0 20px;
+    height: 35px;
+    font-size: 16px;
+    font-family: PingFang SC, PingFang SC;
+    font-weight: 500;
+  }
+  :global(.cs-collapse-item__content) {
+    padding-bottom: 0px;
+  }
+}
+.groupHeader {
+  width: 100%;
+  height: 30px;
+  background: #ccc;
+}
+
+.hideBlock {
+  display: none;
+}

--
Gitblit v1.9.3