feat(ctr): 调整合同相关功能

- 在费用合同列表中添加预付款比例、尾款比例、质保金比例、付款比例等列
- 修改收入合同列表中承包内容查看按钮,改为详情按钮
- 更新招标信息选择时的数据绑定逻辑
This commit is contained in:
tcy
2025-08-22 19:43:55 +08:00
parent 72577614aa
commit 92d8c52b18
3 changed files with 12 additions and 5 deletions

View File

@ -79,9 +79,9 @@
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)"
v-hasPermi="['ctr:incomeContract:remove']"></el-button>
</el-tooltip> -->
<el-tooltip content="查看承包内容" placement="top">
<el-button link type="primary" icon="View" @click="handleShowFileList(scope.row)">查看承包内容</el-button>
</el-tooltip>
<!-- <el-tooltip content="查看承包内容" placement="top">
<el-button link type="primary" icon="View" @click="handleDetail(scope.row)">详情</el-button>
</el-tooltip> -->
<el-tooltip content="查看附件列表" placement="top">
<el-button link type="primary" icon="View" @click="handleShowFileList(scope.row)">查看附件列表</el-button>
</el-tooltip>
@ -292,6 +292,7 @@ const handleShowFileList = async (row: IncomeContractVO) => {
});
}
onMounted(() => {
getList();
});