| 1234567891011121314151617 |
- <template>
- <el-card>招标列表</el-card>
- </template>
- <script setup>
- import api from "../../apis/fetch";
- import store from "../../store";
- import router from "../../router";
- import { ref, onMounted, reactive, computed } from "vue";
- import { ElNotification, ElMessageBox } from "element-plus";
- import { mapGetters } from "vuex";
- import { useRoute } from "vue-router";
- const route = useRoute();
- </script>
- <style scoped></style>
|