tenderList.vue 431 B

1234567891011121314151617
  1. <template>
  2. <el-card>招标列表</el-card>
  3. </template>
  4. <script setup>
  5. import api from "../../apis/fetch";
  6. import store from "../../store";
  7. import router from "../../router";
  8. import { ref, onMounted, reactive, computed } from "vue";
  9. import { ElNotification, ElMessageBox } from "element-plus";
  10. import { mapGetters } from "vuex";
  11. import { useRoute } from "vue-router";
  12. const route = useRoute();
  13. </script>
  14. <style scoped></style>