This commit is contained in:
Teo
2025-08-30 07:31:45 +08:00
6 changed files with 13 additions and 9 deletions

View File

@ -6,7 +6,7 @@
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
</el-select>
</el-form-item>
<el-form-item label="标文件" prop="name">
<el-form-item label="标文件" prop="name">
<file-upload
v-model="form.costEstimationFile"
:fileSize="100"

View File

@ -665,7 +665,7 @@ const handleDetail = (row: any) => {
getDetails(row);
};
const getDetails = (row: any) => {
getTenderPlanDetail({ id: row.id }).then((res) => {
getTenderPlanDetail({ id: row.id, projectId: currentProject.value?.id }).then((res) => {
if (res.code == 200) {
detailData.value = res.data;
}