DataCalcTool.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <template>
  2. <div>
  3. <div
  4. v-for="(item, index) in list"
  5. :key="index"
  6. class="border border-solid border-gray-100 shadow rounded mb-2 p-4"
  7. >
  8. <component :is="DataCalc">
  9. <template #title>
  10. <div class="flex items-center justify-between">
  11. <!-- <div v-if="list.length <= 1"></div> -->
  12. <el-button type="primary" link @click="list.splice(index, 0, {})">
  13. <Plus class="w-4" />
  14. <span>新增计算</span>
  15. </el-button>
  16. <el-button
  17. v-if="list.length > 1"
  18. type="danger"
  19. link
  20. @click="list.splice(index, 1)"
  21. ><Delete class="w-4" /><span>删除该计算</span></el-button
  22. >
  23. </div>
  24. </template>
  25. </component>
  26. </div>
  27. </div>
  28. </template>
  29. <script setup>
  30. import { ref, shallowRef, defineAsyncComponent } from "vue";
  31. import { ElMessage } from "element-plus";
  32. import {
  33. Plus,
  34. ArrowUp,
  35. ArrowDown,
  36. Delete,
  37. QuestionFilled
  38. } from "@element-plus/icons-vue";
  39. const DataCalc = defineAsyncComponent(() => import("./DataCalc.vue"));
  40. const list = ref([{}]);
  41. </script>
  42. <style lang="scss" scoped></style>