This commit is contained in:
dhr
2025-09-09 18:35:03 +08:00
20 changed files with 609 additions and 383 deletions

View File

@ -180,7 +180,7 @@
<!-- 不流转子项 -->
<div v-if="sonTransferLedgerList2.length > 0">
<h4 style="margin-top: 20px; margin-bottom: 10px; color: #ff6b6b">不流转</h4>
<el-table v-loading="sonLoading" :data="sonTransferLedgerList2" @selection-change="handleSonSelectionChange">
<el-table v-loading="sonLoading" :data="sonTransferLedgerList2" @selection-change="handleSonSelectionChange" width="100%">
<el-table-column type="index" label="序号" width="60" align="center" />
<el-table-column label="土地类型" align="center" prop="landTypeName" />
<el-table-column label="地块" align="center" prop="landName" />
@ -221,8 +221,8 @@
</el-dialog>
<!-- 新增子项对话框 -->
<el-dialog draggable :title="sonFormDialog.title" v-model="sonFormDialog.visible" width="600px" append-to-body>
<el-form ref="sonLandTransferLedgerFormRef" :model="sonForm" :rules="sonRules" label-width="120px">
<el-dialog draggable :title="sonFormDialog.title" v-model="sonFormDialog.visible" width="650px" append-to-body>
<el-form ref="sonLandTransferLedgerFormRef" :model="sonForm" :rules="sonRules" label-width="150px">
<el-row>
<el-col :span="24">
<el-form-item label="对应地块" prop="landBlockId">
@ -329,7 +329,7 @@
</div>
</el-form-item>
</el-col>
<el-col :span="24" v-if="sonForm.transferStatus == '2'">
<el-col :span="24" v-if="sonForm.transferStatus == '2'" style="">
<el-form-item label="不签合同面积(亩)" prop="noContractArea">
<el-input v-model="sonForm.noContractArea" type="number" placeholder="请输入不签合同面积" />
</el-form-item>