style(contract-manage): 强制设置合同管理提示文字颜色为红色

- 在合同管理组件的提示文字颜色样式中添加!important
- 确保提示文字颜色样式优先应用
- 修正样式优先级问题避免被覆盖
This commit is contained in:
2026-08-25 19:25:47 +08:00
parent 5033dc9e43
commit cf39d63396
+1 -1
View File
@@ -2399,7 +2399,7 @@ export default {
line-height: 1.2; line-height: 1.2;
} }
.contract-manage-form__tip { .contract-manage-form__tip {
color: #ff0000; color: #ff0000 !important;
font-size: 12px; font-size: 12px;
} }
</style> </style>