relation-column.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <template>
  2. <CusDialog
  3. :show="show"
  4. title="索引构成-配置列"
  5. @onClose="$emit('update:show', false)"
  6. @onSubmit="onSubmit"
  7. width="70%"
  8. max-height="80%"
  9. :loading="state.loading"
  10. >
  11. <template #foot>
  12. <div class="__cus-dialog-foot_cancel __hover" @click="onReset">重置默认</div>
  13. </template>
  14. <div class="__cus-manage_content">
  15. <div class="__cus-manage_content-main" v-loading="state.query.loading">
  16. <CusTable
  17. :data="state.query.result.data"
  18. :table-head="state.query.tableHead"
  19. :no-page="true"
  20. >
  21. <template #sort-column-value="{scope}">
  22. {{scope.$index + 1}}
  23. </template>
  24. <template #searchShow-column-value="{scope}">
  25. <el-switch
  26. v-model="scope.row.searchShow"
  27. active-value="1"
  28. inactive-value="0"
  29. />
  30. </template>
  31. </CusTable>
  32. </div>
  33. </div>
  34. </CusDialog>
  35. </template>
  36. <script setup lang="ts">
  37. import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
  38. import {useDictionaryStore} from "@/stores";
  39. import {ElMessage, ElMessageBox} from "element-plus";
  40. import {
  41. sysThemeIndexFindAll,
  42. sysThemeIndexGetIndexFields,
  43. sysThemeIndexSaveIndexFields
  44. } from "@/api/modules/manage/theme";
  45. import {sysIndexFieldList} from "@/api/modules/manage";
  46. const emit = defineEmits(['update:show', 'refresh'])
  47. const {proxy} = getCurrentInstance()
  48. const DictionaryStore = useDictionaryStore()
  49. const props = defineProps({
  50. show: {default: false},
  51. transfer: {}
  52. })
  53. const state: any = reactive({
  54. loading: false,
  55. query: {
  56. loading: false,
  57. tableHead: [
  58. {value: "fieldNameCn", label: "列名称"},
  59. {value: "fieldNameEn", label: "列英文名称"},
  60. {value: "sort", label: "排序"},
  61. {value: "searchShow", label: "展示"},
  62. ],
  63. result: {
  64. defaultShowIds: [],
  65. data: []
  66. }
  67. },
  68. })
  69. const initText = () => {
  70. state.query.loading = true
  71. sysIndexFieldList(proxy.$util.formatGetParam({
  72. indexId: props.transfer.indexId
  73. })).then(res => {
  74. state.query.result.data = res.data
  75. state.query.result.defaultShowIds = state.query.result.data.filter(v => v.searchShow == 1).map(v => v.id)
  76. state.query.loading = false
  77. initRelation()
  78. })
  79. }
  80. const initRelation = () => {
  81. state.query.loading = true
  82. sysThemeIndexGetIndexFields(proxy.$util.formatGetParam({
  83. themeId: props.transfer.themeId,
  84. indexId: props.transfer.indexId,
  85. })).then(res => {
  86. state.query.result.data.forEach(v => {
  87. v.searchShow = res.data.some(s => s.fieldId == v.id) ? '1' : '0'
  88. })
  89. state.query.loading = false
  90. })
  91. }
  92. const onReset = () => {
  93. state.query.result.data.forEach(v => {
  94. v.searchShow = state.query.result.defaultShowIds.includes(v.id) ? '1' : '0'
  95. })
  96. }
  97. const onSubmit = () => {
  98. ElMessageBox.confirm("是否提交?", "提示", {
  99. confirmButtonText: "确定",
  100. cancelButtonText: "取消",
  101. type: "warning",
  102. } as any).then(() => {
  103. const arr = state.query.result.data.filter(v => v.searchShow == 1).map((v, i) => ({
  104. themeId: props.transfer.themeId,
  105. indexId: props.transfer.indexId,
  106. fieldId: v.id,
  107. sort: i
  108. }))
  109. state.loading = true
  110. sysThemeIndexSaveIndexFields(arr).then(res => {
  111. ElMessage.success('保存成功!')
  112. state.loading = false
  113. }).catch(() => {
  114. state.loading = false
  115. })
  116. }).catch(() => {})
  117. }
  118. watch(() => props.show, (n) => {
  119. if (n) {
  120. initText()
  121. }
  122. })
  123. const initDictionary = () => {
  124. DictionaryStore.initDict('is_main_index')
  125. }
  126. </script>
  127. <style lang="scss" scoped>
  128. .__cus-manage_content {
  129. margin-bottom: 0;
  130. height: calc(100% - 24px);
  131. }
  132. </style>