fix(upload): 子类型下拉框始终显示,不限于合同类型

This commit is contained in:
2026-03-18 22:51:19 +08:00
parent 62a8f4b13d
commit df02ed79c2
+5 -7
View File
@@ -2332,14 +2332,13 @@ export default function FilesUpload() {
</select> </select>
<div className="form-tip"></div> <div className="form-tip"></div>
</div> </div>
{/* 只有选择合同类型时才显示合同子类型选择器 */} {/* 子类型(专属类型)- 始终显示 */}
{isContractType && (
<div className="form-group"> <div className="form-group">
<label htmlFor="contract-type-select" className="form-label"> <label htmlFor="attribute-type-select" className="form-label">
<span className="required">*</span> <span className="required">*</span>
</label> </label>
<select <select
id="contract-type-select" id="attribute-type-select"
name="attributeType" name="attributeType"
className="form-select" className="form-select"
value={attributeType} value={attributeType}
@@ -2353,9 +2352,8 @@ export default function FilesUpload() {
</option> </option>
))} ))}
</select> </select>
<div className="form-tip"></div> <div className="form-tip">//</div>
</div> </div>
)}
<div className="form-group"> <div className="form-group">
<label htmlFor="docNumber" className="form-label"></label> <label htmlFor="docNumber" className="form-label"></label>
<input <input