合同限价审核

This commit is contained in:
2025-08-22 14:29:26 +08:00
parent 58cbe1c902
commit 3588c5d386
2 changed files with 373 additions and 2 deletions

View File

@ -35,6 +35,9 @@
<el-form-item>
<el-button type="primary" @click="handleExport()" v-hasPermi="['tender:billofquantitiesLimitList:export']">导出excel</el-button>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="clickApprovalSheet()" v-hasPermi="['tender:billofquantitiesLimitList:export']">审核</el-button>
</el-form-item>
</el-form>
</el-card>
</transition>
@ -135,11 +138,11 @@ const changeVersions = () => {
//选择表名
const changeSheet = () => {
getTableData();
getTableData();
};
//获取表名
const getSheetName = async () => {
const getSheetName = async () => {
try {
const params = {
projectId: currentProject.value?.id,
@ -269,6 +272,17 @@ const handleExport = () => {
`限价一览表${queryForm.value.sheet}.xlsx`
);
};
// 审批
function clickApprovalSheet() {
proxy.$tab.closePage(proxy.$route);
proxy.$router.push({
path: `/approval/contractLimitPrice/indexEdit`,
query: {
id: '',
type: 'update'
}
});
}
onUnmounted(() => {
listeningProject();
});