refactor(contract): 统一合同编号字段名从contractNo改为contractCode

修改多个组件中合同编号字段名以保持一致性,移除未使用的props和清理冗余代码
This commit is contained in:
砂糖
2026-04-14 10:03:16 +08:00
parent 9f3d402174
commit 54bea01416
6 changed files with 25 additions and 60 deletions

View File

@@ -114,7 +114,7 @@
</el-form-item>
<el-form-item label="合同号" prop="contractId">
<el-select style="width: 100%;" v-model="form.contractId" placeholder="请选择合同号" filterable clearable @change="handleContractChange">
<el-option v-for="item in contractList" :key="item.contractId" :label="item.contractNo"
<el-option v-for="item in contractList" :key="item.contractId" :label="item.contractCode"
:value="item.contractId" />
</el-select>
</el-form-item>