From d0226747665355acecd5b4f2b5c0beb020586729 Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期五, 17 一月 2025 15:37:32 +0800
Subject: [PATCH] # 23. PDA拣货单据,勾选或点击确认按钮后,完成当前单据 (已完成) 24. PDA出库成功后,界面数据重置,避免重复操作  (已修复) 25. PDA接口请求,添加一个Loading遮档  (已修复) 27. 非平库单据,在平库可做入库操作  (已修复) 28. 平库已组拖数据,组拖完成后依然可组拖  (已修复) 29. 平库入库后,订单明细没有添加(已修复) 30. 平库入库后,单据类型没有修改(已修复) 31. 没有绑定播种位,不能进行播种,前后端都需加判定(已修复) 33. 平库入库未修改入库已完成数量(已修复) 34. cacheSite缓存站点逻辑需重新梳理,入库生成波次时(已完成) 35. PDA添加发货确认,默认全选 (已修复) 36. 大屏获取任务时,是由容器到达的拖盘码确认通知 (已修复) 37. 拣货单序号不显示 问题修复 (已修复) 42. pda发货确认,添加不同颜色区分是否全部完成拣货,绿色全部拣货完成,红色完成部分拣货(已修复) 43. CTU入库完成后,订单明细没有删除,执行中数量清空(已修复) 44. 平库入库完成后,历史档明细完成数量没有更新 (已修复) 45. PDA料号不显示  (已修复) 46. 发货完成后,波次管理数据未加入历史档 (已修复)

---
 zy-asrs-admin/src/assets/main.css |  377 ++++++++++++++++++++++++++++++++++-------------------
 1 files changed, 239 insertions(+), 138 deletions(-)

diff --git a/zy-asrs-admin/src/assets/main.css b/zy-asrs-admin/src/assets/main.css
index b73d616..963f4c2 100644
--- a/zy-asrs-admin/src/assets/main.css
+++ b/zy-asrs-admin/src/assets/main.css
@@ -1,139 +1,240 @@
-@import './base.css';
-
-.main {
-  height: 100vh;
-  overflow: hidden;
-}
-
-.trigger {
-  font-size: 16px;
-  line-height: 64px;
-  padding: 0 6px;
-  cursor: pointer;
-  transition: color 0.3s;
-  color: #000000;
-}
-
-.trigger:hover {
-  color: #1890ff;
-}
-
-.active {
-  color: #1890ff !important;
-}
-
-.active:hover {
-  color: #000000 !important;
-}
-
-.logo {
-  height: 50px;
-  /* background: rgba(255, 255, 255, 0.3); */
-  background: url('/public/img/logo.png') no-repeat;
-  background-size: 100%;
-  margin: 16px;
-}
-
-.site-layout .site-layout-background {
-  background: #fff;
-}
-
-.header-top {
-  display: flex;
-  justify-content: space-between;
-}
-
-.header-top-left {
-  flex: 1;
-}
-
-.header-top-right {
-  margin-right: 20px;
-  color: #000000;
-  cursor: pointer;
-  user-select: none;
-  flex: 4;
-  display: flex;
-  justify-content: flex-end;
-  font-size: 16px;
-}
-
-.header-top-right>div {
-  margin-right: 15px;
-}
-
-.header-user {
-  display: flex;
-  justify-content: center;
-  align-items: center;
-  color: #000000;
-  cursor: pointer;
-  user-select: none;
-}
-
-.tabs-fixed {
-  position: relative;
-  top: -64px;
-  left: -24px;
-  display: flex;
-}
-
-.tabs-item {
-  height: 30px;
-  background: #fff;
-  display: flex;
-  justify-content: space-evenly;
-  align-items: center;
-  padding: 20px 0px;
-  cursor: pointer;
-  margin-right: 5px;
-  user-select: none;
-}
-
-.tabs-item>div:nth-child(1) {
-  margin-right: 10px;
-  margin-left: 10px;
-}
-
-.tabs-item>div:nth-child(1):hover {
-  color: #1890ff;
-}
-
-.tabs-item>div:nth-child(2) {
-  margin-right: 10px;
-  margin-left: 10px;
-}
-
-.tabs-item>div:nth-child(3) {
-  margin-right: 10px;
-  margin-left: 10px;
-}
-
-.tabs-item>div:nth-child(3):hover {
-  color: #1890ff;
-}
-
-.tabs-item-active>div:nth-child(2) {
-  color: rgb(24, 144, 255);
-}
-
-.tabs-item-reload-none {
-  display: none;
-}
-
-.table-header {
-  margin-bottom: 20px;
-  display: flex;
-  justify-content: space-between;
-}
-
-.table-header-right>button {
-  margin-right: 10px;
-}
-
-.content-view {
-  margin: 45px 16px;
-  padding: 24px;
-  background: #fff;
-  min-height: 280px;
+@import './base.css';
+
+.main {
+  height: 100vh;
+  overflow: hidden;
+  overflow-y: scroll;
+}
+
+.main-sider {
+  min-height: 100vh;
+  /*overflow-y: scroll;*/
+  user-select: none;
+}
+
+.sider-style {
+  min-height: 100vh;
+  background: #01101E;
+}
+ 
+.main-sider::-webkit-scrollbar {
+  width: 5px !important;
+}
+ 
+.main-sider::-webkit-scrollbar-track {
+  background: #f1f1f1;
+  border-radius: 10px;
+}
+ 
+ .main-sider::-webkit-scrollbar-thumb {
+  background: #888;
+  border-radius: 10px;
+}
+ 
+.main-sider::-webkit-scrollbar-thumb:hover {
+  background: #555;
+}
+
+.trigger {
+  font-size: 14px;
+  line-height: 64px;
+  padding: 0 6px;
+  cursor: pointer;
+  transition: color 0.3s;
+  color: #333333;
+}
+
+.trigger:hover {
+  color: #1890ff;
+}
+
+.active {
+  color: #1890ff !important;
+}
+
+.active:hover {
+  color: #333333 !important;
+}
+
+.triggerLarge {
+  font-size: 18px !important;
+}
+
+.logo {
+  height: 50px;
+  /* background: rgba(255, 255, 255, 0.3); */
+  background: url('/public/img/logo.png') no-repeat;
+  background-size: 100%;
+  margin: 16px;
+}
+
+.site-layout .site-layout-background {
+  background: #fff;
+}
+
+.header-top {
+  display: flex;
+  justify-content: space-between;
+  margin-bottom: 10px;
+}
+
+.header-top-left {
+  flex: 1;
+}
+
+.header-top-right {
+  margin-right: 20px;
+  color: #333333;
+  cursor: pointer;
+  user-select: none;
+  flex: 4;
+  display: flex;
+  justify-content: flex-end;
+  font-size: 14px;
+}
+
+.header-top-right>div {
+  margin-right: 15px;
+}
+
+.header-user {
+  display: flex;
+  justify-content: center;
+  align-items: center;
+  color: #333333;
+  cursor: pointer;
+  user-select: none;
+}
+
+.tabs-fixed {
+  width: 100%;
+  position: relative;
+  /*top: -64px;*/
+  /*left: -24px;*/
+  padding: 10px;
+  display: flex;
+}
+
+.tabs-arrow-left {
+  position: absolute;
+
+  width: 40px;
+  height: 30px;
+  background: #fff;
+  display: flex;
+  justify-content: space-evenly;
+  align-items: center;
+  padding: 20px 0px;
+  cursor: pointer;
+  margin-right: 5px;
+  user-select: none;
+}
+
+.tabs-arrow-right {
+  position: absolute;
+  right: -54px;
+
+  width: 40px;
+  height: 30px;
+  background: #fff;
+  display: flex;
+  justify-content: space-evenly;
+  align-items: center;
+  padding: 20px 0px;
+  cursor: pointer;
+  margin-right: 5px;
+  user-select: none;
+}
+
+.tabs-arrow-left {
+  float: left;
+}
+
+.tabs-content {
+  width: 97%;
+  display: flex;
+  margin-left: 45px;
+  margin-right: 25px;
+  overflow-x: scroll;
+  will-change: transform;
+  transition: transform 0.3s;
+  scrollbar-width: none; /* Firefox */
+  -ms-overflow-style: none; /* IE and Edge */
+}
+
+.tabs-content-item {
+  flex: 10;
+  display: flex;
+}
+
+.tabs-item {
+  min-width: 120px;
+  height: 30px;
+  background: #fff;
+  display: flex;
+  justify-content: space-evenly;
+  align-items: center;
+  padding: 20px 0px;
+  cursor: pointer;
+  margin-right: 5px;
+  user-select: none;
+}
+
+.tabs-item>div:nth-child(1) {
+  margin-right: 5px;
+  margin-left: 5px;
+}
+
+.tabs-item>div:nth-child(1):hover {
+  color: #1890ff;
+}
+
+.tabs-item>div:nth-child(2) {
+  margin-right: 5px;
+  margin-left: 5px;
+}
+
+.tabs-item>div:nth-child(3) {
+  margin-right: 5px;
+  margin-left: 5px;
+}
+
+.tabs-item>div:nth-child(3):hover {
+  color: #1890ff;
+}
+
+.tabs-item-active>div:nth-child(2) {
+  color: rgb(24, 144, 255);
+}
+
+.tabs-item-reload-none {
+  display: none;
+}
+
+.table-header {
+  margin-bottom: 20px;
+  display: flex;
+  justify-content: space-between;
+}
+
+.table-header-right>button {
+  margin-right: 10px;
+}
+
+.content-view {
+  margin: 10px 10px 20px;
+  overflow: hidden;
+  overflow-y: scroll;
+  background: #fff;
+  min-height: 280px;
+}
+
+.form-block {
+  display: flex;
+  justify-content: space-between;
+  flex-wrap: wrap;
+}
+
+.form-block .ant-form-item {
+  width: 100%;
 }
\ No newline at end of file

--
Gitblit v1.9.1