合并评查点新增代码

This commit is contained in:
2025-04-13 15:09:01 +08:00
parent 414fb8ebac
commit 60680cd4bf
11 changed files with 772 additions and 941 deletions
+34 -1
View File
@@ -26,13 +26,46 @@
/* 表单样式 */
.file-upload-page .form-group {
@apply mb-4;
@apply mb-2;
}
/* 复选框样式 */
.file-upload-page .switch-container {
@apply flex items-center mt-2;
}
.file-upload-page .switch {
@apply relative inline-block w-10 h-5 mr-2;
}
.file-upload-page .switch input {
@apply opacity-0 w-0 h-0;
}
.file-upload-page .slider {
@apply absolute cursor-pointer inset-0 bg-gray-300 rounded-full transition-all duration-300;
}
.file-upload-page .slider:before {
@apply absolute content-[''] h-4 w-4 left-0.5 bottom-0.5 bg-white rounded-full transition-all duration-300;
}
.file-upload-page input:checked + .slider {
@apply bg-[var(--primary-color)];
}
.file-upload-page input:checked + .slider:before {
@apply transform translate-x-5;
}
.file-upload-page .form-label {
@apply block text-sm font-medium text-gray-700 mb-2;
}
.file-upload-page .form-textarea {
@apply block w-full px-3 py-2 text-base rounded-md shadow-sm focus:outline-none border;
}
.file-upload-page .form-tip {
@apply text-xs text-gray-500 mt-1;
}