diff --git a/src/assets/scss/global.scss b/src/assets/scss/global.scss
index a2f8796..2c585f5 100644
--- a/src/assets/scss/global.scss
+++ b/src/assets/scss/global.scss
@@ -462,27 +462,39 @@ a:hover{
.rred input {
color: red;
}
-/* 修改 el-input 被禁用时的字体颜色 */
+
+/* src/styles/element-custom.css */
.el-input.is-disabled .el-input__inner {
- color: #000000 !important; /* 你想设置的颜色,比如黑色 */
- /* 也可以加其他样式 */
- opacity: 1;
-}
-::v-deep .gradient-label .el-form-item__label {
- /* 启用渐变色动画 */
- animation: gradientColor 3s ease-in-out infinite;
- font-weight: bold; /* 可选:加粗 */
-}
-
-/* 定义颜色变化动画 */
-@keyframes gradientColor {
- 0% {
- color: yellow;
- }
- 50% {
- color: #d94cf3;
- }
- 100% {
- color: green;
- }
+ color: #212121 !important;
+}
+
+
+/* 全局:渐变动画 - 表单项标签(用于 .gradient-label) */
+.gradient-label .el-form-item__label {
+ background-image: linear-gradient(90deg, #d94cf3, #ff0000, #fff200, #1360ff);
+ background-size: 400% 100%;
+ -webkit-background-clip: text;
+ background-clip: text;
+ -webkit-text-fill-color: transparent;
+ color: transparent;
+ animation: gradient-text-flow 3s ease-in-out infinite;
+}
+
+@keyframes gradient-text-flow {
+ 0% { background-position: 0% 50%; }
+ 33% { background-position: 50% 50%; }
+ 66% { background-position: 100% 50%; }
+ 100% { background-position: 0% 50%; }
}
+
+
+.site-navbar__brand-lg.brand-gradient-text {
+ background-image: linear-gradient(90deg, #d94cf3, #ff0000, #fff200, #1360ff);
+ background-size: 400% 100%;
+ -webkit-background-clip: text;
+ background-clip: text;
+ -webkit-text-fill-color: transparent;
+ color: transparent;
+ animation: gradient-text-flow 3s ease-in-out infinite;
+}
+
diff --git a/src/views/main-navbar.vue b/src/views/main-navbar.vue
index 80a1eda..ba5cdb4 100644
--- a/src/views/main-navbar.vue
+++ b/src/views/main-navbar.vue
@@ -13,7 +13,7 @@
- {{ pageLanguage.XjSysManage }}
+ {{ pageLanguage.XjSysManage }}
{{ pageLanguage.abbreviation }}
diff --git a/src/views/modules/print/PoPartPrint.vue b/src/views/modules/print/PoPartPrint.vue
index 5d0150e..6a12d3d 100644
--- a/src/views/modules/print/PoPartPrint.vue
+++ b/src/views/modules/print/PoPartPrint.vue
@@ -169,26 +169,16 @@
-
-
-
-
-
-
+
-
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
@@ -659,6 +659,24 @@ export default {
status: true,
fixed: false
},
+ {
+ userId: this.$store.state.user.name,
+ functionId: this.functionId,
+ serialNumber: '670Table2BatchNo',
+ tableId: "670Table2",
+ tableName: "采购物料标签清单",
+ columnProp: "batchNo",
+ headerAlign: "center",
+ align: "center",
+ columnLabel: "批次号",
+ columnWidth: '120',
+ columnHidden: false,
+ columnImage: false,
+ columnSortable: false,
+ sortLv: 6,
+ status: true,
+ fixed: false
+ },
{
userId: this.$store.state.user.name,
functionId: this.functionId,
@@ -677,6 +695,42 @@ export default {
status: true,
fixed: false
},
+ {
+ userId: this.$store.state.user.name,
+ functionId: this.functionId,
+ serialNumber: '670Table2ExpirationDate',
+ tableId: "670Table2",
+ tableName: "采购物料标签清单",
+ columnProp: "expirationDate",
+ headerAlign: "center",
+ align: "center",
+ columnLabel: "失效日期",
+ columnWidth: '120',
+ columnHidden: false,
+ columnImage: false,
+ columnSortable: false,
+ sortLv: 6,
+ status: true,
+ fixed: false
+ },
+ {
+ userId: this.$store.state.user.name,
+ functionId: this.functionId,
+ serialNumber: '670Table2ExpirationWarningDate',
+ tableId: "670Table2",
+ tableName: "采购物料标签清单",
+ columnProp: "expirationWarningDate",
+ headerAlign: "center",
+ align: "center",
+ columnLabel: "失效预警日期",
+ columnWidth: '120',
+ columnHidden: false,
+ columnImage: false,
+ columnSortable: false,
+ sortLv: 6,
+ status: true,
+ fixed: false
+ },
{
userId: this.$store.state.user.name,
functionId: this.functionId,
@@ -1022,22 +1076,6 @@ export default {
color: #c0c4cc;
}
-// 渐变动画:本次发行数量 的表单项标签
-/deep/ .gradient-label .el-form-item__label {
- background-image: linear-gradient(90deg, #e7f427, #d94cf3 , #0ffd00);
- background-size: 300% 100%;
- -webkit-background-clip: text;
- background-clip: text;
- -webkit-text-fill-color: transparent;
- color: transparent;
- animation: gradient-text-flow 3s ease-in-out infinite;
-}
-@keyframes gradient-text-flow {
- 0% { background-position: 0% 50%; }
- 33% { background-position: 50% 50%; }
- 66% { background-position: 100% 50%; }
- 100% { background-position: 0% 50%; }
-}