优化起草合同的样式,隐藏评查点设置的自定义代码

This commit is contained in:
2025-12-08 21:40:12 +08:00
parent 17ec162a7d
commit 0660f206f4
4 changed files with 9 additions and 4 deletions
+6 -2
View File
@@ -199,7 +199,9 @@ export function PlaceholderForm({
onChange={(e) => handleFieldChange(field.key, e.target.value)}
onClick={(e) => handleFieldClick(e, field.key)}
placeholder={field.placeholder || `请输入${field.label}`}
className="flex-1 px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary/20 focus:border-primary transition-all duration-150 resize-none bg-white text-gray-900 placeholder-gray-400 text-sm"
className="flex-1 px-3 py-2 border border-gray-300 rounded-lg focus:outline-none
focus:ring-2 focus:ring-[#004d38]/20 focus:border-[#004d38] transition-all duration-150
resize-none bg-white text-gray-900 placeholder-gray-400 text-sm"
rows={3}
/>
) : (
@@ -209,7 +211,9 @@ export function PlaceholderForm({
onChange={(e) => handleFieldChange(field.key, e.target.value)}
onClick={(e) => handleFieldClick(e, field.key)}
placeholder={field.placeholder || `请输入${field.label}`}
className="flex-1 px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary/20 focus:border-primary transition-all duration-150 bg-white text-gray-900 placeholder-gray-400 text-sm"
className="flex-1 px-3 py-2 border border-gray-300 rounded-lg
focus:outline-none focus:ring-2 focus:ring-[#004d38]/20 focus:border-[#004d38]
transition-all duration-150 bg-white text-gray-900 placeholder-gray-400 text-sm"
/>
)}
+1 -1
View File
@@ -1993,7 +1993,7 @@ export function ReviewSettings({
<option value="logic"></option>
<option value="regex"></option>
<option value="ai"></option>
<option value="code"></option>
{/* <option value="code">自定义代码</option> */}
</select>
<div className="form-tip"></div>
</div>