Files
td_official/src/views/tender/plan/index.vue

28 lines
980 B
Vue
Raw Normal View History

2025-08-19 20:05:28 +08:00
<template>
<div class="p-2">
2025-08-21 01:39:29 +08:00
<el-tabs v-model="activeName" type="border-card" class="demo-tabs" @tab-click="handleClick">
<el-tab-pane label="招采工程量" name="first">
<planPage type="1" ref="planPageRef" />
</el-tab-pane>
<el-tab-pane type="2" label="物资设备清单" name="second"> <planPage /> </el-tab-pane>
</el-tabs>
2025-08-19 20:05:28 +08:00
</div>
</template>
2025-08-21 01:39:29 +08:00
<script setup lang="ts">
2025-08-20 21:10:21 +08:00
import { useUserStoreHook } from '@/store/modules/user';
2025-08-21 01:39:29 +08:00
import { obtainAllVersionNumbers } from '@/api/contract/index';
import { BiddingImportExcelFile, getTreeLimit, biddingLimitListUpdate, sheetList } from '@/api/bidding/biddingLimit';
2025-08-19 20:05:28 +08:00
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
2025-08-21 01:39:29 +08:00
import planPage from './comm/planPage.vue';
2025-08-19 20:05:28 +08:00
2025-08-21 01:39:29 +08:00
import type { TabsPaneContext } from 'element-plus';
const activeName = ref('first');
2025-08-19 20:05:28 +08:00
2025-08-21 01:39:29 +08:00
const handleClick = (tab: TabsPaneContext, event: Event) => {
console.log(tab, event);
2025-08-20 21:10:21 +08:00
};
2025-08-19 20:05:28 +08:00
</script>
2025-08-20 21:10:21 +08:00
2025-08-21 01:39:29 +08:00
<style scoped></style>