fileModal.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <div class="title">目录类型 : </div>
  3. <div class="content">
  4. <template v-for="(tag, index) in state.tags" :key="tag">
  5. <a-tag :closable="index !== 0" @close="handleClose(tag)">
  6. {{ tag }}
  7. </a-tag>
  8. </template>
  9. <a-input
  10. v-if="state.inputVisible"
  11. ref="inputRef"
  12. v-model:value="state.inputValue"
  13. type="text"
  14. size="small"
  15. :style="{ width: '78px' }"
  16. @blur="handleInputConfirm"
  17. @keyup.enter="handleInputConfirm"
  18. />
  19. <a-tag v-else style="background: #fff; border-style: dashed" @click="showInput">
  20. <plus-outlined />
  21. 新增目录
  22. </a-tag>
  23. </div>
  24. <div class="footer">
  25. <a-button style="margin-right: 10px" type="primary" @click="handleSubmit">保存</a-button>
  26. <a-button type="primary" @click="handleSubmit">取消</a-button>
  27. </div>
  28. </template>
  29. <script lang="ts" setup>
  30. import { ref, reactive, toRefs, nextTick, inject, watch } from 'vue';
  31. import { PlusOutlined } from '@ant-design/icons-vue';
  32. import { createFile, deleteById } from '../fileDetail/fileDetail.api';
  33. components: {
  34. PlusOutlined;
  35. }
  36. //左侧树列表数据
  37. const treeData = inject('treeData') as any;
  38. //编辑菜单-新增or删除
  39. let flag = ref(true) as any;
  40. //编辑菜单-被删除元素ID
  41. let delId = ref(0) as any;
  42. // 声明Emits
  43. const emit = defineEmits(['saveOrUpdate']);
  44. const inputRef = ref();
  45. const state = reactive<any>({
  46. tags: [],
  47. inputVisible: false,
  48. inputValue: '',
  49. });
  50. const handleClose = (removedTag: string) => {
  51. flag.value = false; //编辑菜单-删除
  52. const tags = state.tags.filter((tag) => tag !== removedTag);
  53. //获取被删除元素ID
  54. delId.value = treeData[0].children.filter((el) => el.title === removedTag)[0].id;
  55. console.log(tags);
  56. state.tags = tags;
  57. };
  58. const showInput = () => {
  59. flag.value = true; //编辑菜单-新增
  60. state.inputVisible = true;
  61. nextTick(() => {
  62. inputRef.value.focus();
  63. });
  64. };
  65. const handleInputConfirm = () => {
  66. const inputValue = state.inputValue;
  67. let tags = state.tags;
  68. if (inputValue && tags.indexOf(inputValue) === -1) {
  69. tags = [...tags, inputValue];
  70. }
  71. console.log(tags);
  72. Object.assign(state, {
  73. tags,
  74. inputVisible: false,
  75. inputValue: '',
  76. });
  77. };
  78. //新增
  79. //删除
  80. //表单提交事件
  81. async function handleSubmit(v) {
  82. try {
  83. if (flag.value) {
  84. //编辑菜单-新增保存
  85. console.log('编辑菜单-新增');
  86. } else {
  87. //编辑菜单-删除保存
  88. console.log('编辑菜单-删除');
  89. }
  90. emit('saveOrUpdate', false);
  91. } finally {
  92. // setModalProps({ confirmLoading: false });
  93. }
  94. }
  95. watch(
  96. treeData,
  97. (newV) => {
  98. console.log(newV, 'new111');
  99. let editMenuList = [] as any;
  100. newV[0].children.forEach((el) => {
  101. editMenuList.push(el.title);
  102. });
  103. state.tags = [...editMenuList];
  104. },
  105. { immediate: true }
  106. );
  107. </script>
  108. <style lang="less" scoped>
  109. .title {
  110. margin-bottom: 10px;
  111. }
  112. .footer {
  113. position: absolute;
  114. right: 20px;
  115. bottom: 20px;
  116. }
  117. ::v-deep .zxm-tag {
  118. margin-bottom: 10px;
  119. border-color: #3ad8ff77;
  120. background-color: #ffffff00 !important;
  121. color: #fff;
  122. }
  123. ::v-deep .zxm-tag-close-icon {
  124. color: #fff;
  125. }
  126. </style>