batchSetDia.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <div class="batch-set-dialog">
  3. <el-dialog :visible.sync="isOpenDialog" :close-on-click-modal="false" :modal-append-to-body="false"
  4. :title="$t('OnlineExcelPage.batch_settings')" @close="cancelHandle" custom-class="dialog" center
  5. width="560px" v-dialogDrag>
  6. <div class="dialog-main">
  7. <selectTarget ref="selectRef" @select="handleSelectTarget" :selectStyleType="3">
  8. </selectTarget>
  9. <div class="dialog-main-content">
  10. <div class="content-list" v-if="searchList.length">
  11. <div class="content-list-item flex-align" v-sortMove="index"
  12. @dragstart="setDraggingIndex(index)" @dragend="clearDraggingIndex"
  13. v-for="(item, index) in searchList" :key="index">
  14. <div class="content-list-item-left flex-align">
  15. <img style="margin-right: 8px;" class="img-icon"
  16. src="~@/assets/img/cus_sheet/icon-move.png" alt="">
  17. {{ currentLang === 'en' ? item.EdbNameEn : item.EdbName }}
  18. </div>
  19. <img class="img-icon" @click="deleteHandle(index)"
  20. src="~@/assets/img/cus_sheet/icon-delete.png" alt="">
  21. </div>
  22. </div>
  23. <tableNoData v-else :text="$t('OnlineExcelPage.no_found_search')" />
  24. </div>
  25. </div>
  26. <div class="dia-bot">
  27. <el-button type="primary" plain @click="cancelHandle">{{
  28. $t("ETable.Btn.cancel_btn")
  29. }}</el-button>
  30. <el-button type="primary" style="margin-right: 20px" @click="saveHandle">{{ $t("ETable.Btn.save_btn")
  31. }}</el-button>
  32. </div>
  33. </el-dialog>
  34. </div>
  35. </template>
  36. <script>
  37. import sortMove from '@/utils/sortMove';
  38. import selectTarget from '@/views/chartRelevance_manage/components/selectTarget.vue';
  39. export default {
  40. components: { selectTarget },
  41. directives: {
  42. sortMove
  43. },
  44. watch: {
  45. searchList: {
  46. handler(newval) {
  47. }
  48. }
  49. },
  50. computed: {
  51. },
  52. data() {
  53. return {
  54. isOpenDialog: false,
  55. searchList: [],
  56. draggingIndex: null,
  57. firstId: ''
  58. };
  59. },
  60. computed: {
  61. currentLang() {
  62. return this.$store.state.lang
  63. }
  64. },
  65. methods: {
  66. handleDrop({ draggedIndex, droppedIndex }) {
  67. const draggedItem = this.searchList[draggedIndex];
  68. this.searchList.splice(draggedIndex, 1);
  69. this.searchList.splice(droppedIndex, 0, draggedItem);
  70. this.$message({
  71. message: this.$t("OnlineExcelPage.move_successful"),
  72. type: 'success'
  73. });
  74. },
  75. setDraggingIndex(index) {
  76. this.draggingIndex = index;
  77. },
  78. clearDraggingIndex() {
  79. this.draggingIndex = null;
  80. },
  81. // 删除选中
  82. deleteHandle(index) {
  83. this.searchList.splice(index, 1)
  84. },
  85. // 保存
  86. async saveHandle() {
  87. this.cancelHandle()
  88. this.$emit('moreSetSave', this.searchList, this.firstId)
  89. },
  90. // 选中
  91. handleSelectTarget(item) {
  92. // console.log(item)
  93. if (item) {
  94. this.searchList.push(item)
  95. }
  96. },
  97. // 打开弹框
  98. openDialog(array) {
  99. // console.log(array)
  100. if (array.length) {
  101. this.firstId = array[0].EdbInfoId
  102. }
  103. this.searchList = JSON.parse(JSON.stringify(array))
  104. this.isOpenDialog = true;
  105. },
  106. // 关闭弹框
  107. cancelHandle() {
  108. this.$refs.selectRef.search_txt = ''
  109. this.isOpenDialog = false;
  110. },
  111. },
  112. };
  113. </script>
  114. <style lang="scss" scoped>
  115. .batch-set-dialog {
  116. .dialog-main {
  117. .dialog-main-content {
  118. .content-list {
  119. .content-list-item {
  120. padding: 13px 0;
  121. border-bottom: 1px solid #C8CDD9;
  122. justify-content: space-between;
  123. .content-list-item-left {
  124. font-family: PingFang SC;
  125. font-size: 14px;
  126. font-weight: 400;
  127. }
  128. }
  129. }
  130. }
  131. }
  132. .img-icon {
  133. width: 16px;
  134. height: 16px;
  135. }
  136. .dia-bot {
  137. margin: 52px 0 30px;
  138. display: flex;
  139. justify-content: center;
  140. }
  141. .flex-align {
  142. display: flex;
  143. align-items: center;
  144. }
  145. }
  146. </style>