This commit is contained in:
2025-07-12 16:45:32 +08:00
parent 9039840986
commit f65adab730

View File

@ -82,7 +82,7 @@
<!-- 操作 -->
<template #controls="{ row }">
<el-link size="small" type="success" >送审</el-link>
<el-link size="small" type="success" @click="handleSend(row.id)">送审</el-link>
<el-link size="small" type="primary" @click="addEdit('edit', row)" >编辑</el-link>
<el-link size="small" type="danger" @click="deleteRow(row)">删除</el-link>
</template>
@ -222,6 +222,16 @@ const getList = () => {
});
};
//送审
const handleSend = (id) => {
// proxy.$confirm("确定要送审?", "警告", { type: "warning" }).then(() => {
// qcckPost({}, "/mosty-gsxt/tbGsxtZdqt/subExamine/"+id).then(() => {
// proxy.$message({ type: "success", message: "送审成功" });
// getList();
// });
// })
};
const chooseData = (data) => {
ids.value = Array.isArray(data) ? data.map((item) => item.id) : [];