This commit is contained in:
ljx
2025-09-16 20:25:23 +08:00
parent d640cd7f95
commit 4ad2b0c6dc
3 changed files with 35 additions and 4 deletions

View File

@ -102,6 +102,15 @@
v-hasPermi="['progress:constructionSchedulePlan:remove']"
/>
</el-tooltip>
<el-button
v-if="scope.row.status != '4'"
link
type="primary"
@click="handleFinish(scope.row)"
v-hasPermi="['progress:constructionSchedulePlan:editFinish']"
>
确定
</el-button>
</template>
</el-table-column>
</el-table>
@ -172,7 +181,8 @@ import {
delConstructionSchedulePlan,
addConstructionSchedulePlan,
updateConstructionSchedulePlan,
getProjectStructure
getProjectStructure,
finishConstructionSchedulePlan
} from '@/api/progress/constructionSchedulePlan';
import {
ConstructionSchedulePlanVO,
@ -282,7 +292,13 @@ const cancel = () => {
reset();
dialog.visible = false;
};
const handleFinish = async (row: ConstructionSchedulePlanVO) => {
const res = await finishConstructionSchedulePlan(row.id);
if (res.code === 200) {
proxy.$modal.msgSuccess('操作成功');
getList();
}
};
const handleExport = async () => {
const ids = queryParams.value.projectId;
proxy?.download('/progress/constructionSchedulePlan/exportTemplate/' + ids, {}, `施工里程碑计划模版.xlsx`, true);