relation-column.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. v-model:data="state.query.result.data"
  18. :table-head="state.query.tableHead"
  19. :no-page="true"
  20. :dragable="true"
  21. >
  22. <template #sort-column-value="{scope}">
  23. {{scope.$index + 1}}
  24. </template>
  25. <template #isShow-column-value="{scope}">
  26. <el-switch
  27. v-model="scope.row.isShow"
  28. active-value="1"
  29. inactive-value="0"
  30. />
  31. </template>
  32. <template #isShow-header-value="{scope}">
  33. 展示
  34. <el-switch
  35. v-model="state.showAll"
  36. @change="(val) => state.query.result.data.forEach(v => v.isShow = val ? '1' : '0')"
  37. />
  38. </template>
  39. </CusTable>
  40. </div>
  41. </div>
  42. </CusDialog>
  43. </template>
  44. <script setup lang="ts">
  45. import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
  46. import {useDictionaryStore} from "@/stores";
  47. import {ElMessage, ElMessageBox} from "element-plus";
  48. import {
  49. sysThemeIndexFindAll,
  50. sysThemeIndexGetIndexFields,
  51. sysThemeIndexSaveIndexFields
  52. } from "@/api/modules/manage/theme";
  53. import {sysIndexFieldList} from "@/api/modules/manage";
  54. const emit = defineEmits(['update:show', 'refresh'])
  55. const {proxy} = getCurrentInstance()
  56. const DictionaryStore = useDictionaryStore()
  57. const props = defineProps({
  58. show: {default: false},
  59. transfer: {}
  60. })
  61. const state: any = reactive({
  62. showAll: false,
  63. loading: false,
  64. query: {
  65. loading: false,
  66. tableHead: [
  67. {value: "fieldName", label: "列名称"},
  68. {value: "fieldKey", label: "列英文名称"},
  69. {value: "sort", label: "排序"},
  70. {value: "isShow", label: "展示"},
  71. ],
  72. result: {
  73. data: []
  74. }
  75. },
  76. })
  77. const initRelation = () => {
  78. state.query.loading = true
  79. sysThemeIndexGetIndexFields(proxy.$util.formatGetParam({
  80. themeId: props.transfer.themeId,
  81. indexId: props.transfer.indexId,
  82. type: props.transfer.type,
  83. })).then(res => {
  84. state.query.result.data = res.data || []
  85. state.query.loading = false
  86. })
  87. }
  88. const onSubmit = () => {
  89. ElMessageBox.confirm("是否提交?", "提示", {
  90. confirmButtonText: "确定",
  91. cancelButtonText: "取消",
  92. type: "warning",
  93. } as any).then(() => {
  94. const arr = state.query.result.data.map((v, i) => {
  95. v.sort = i
  96. return v
  97. })
  98. state.loading = true
  99. sysThemeIndexSaveIndexFields(arr).then(res => {
  100. ElMessage.success('保存成功!')
  101. state.loading = false
  102. }).catch(() => {
  103. state.loading = false
  104. })
  105. }).catch(() => {})
  106. }
  107. const isAllCpt = computed(() => {
  108. return state.query.result.data.every(v => v.isShow == '1')
  109. })
  110. watch(() => isAllCpt.value, (n) => {
  111. state.showAll = n
  112. })
  113. watch(() => props.show, (n) => {
  114. if (n) {
  115. initRelation()
  116. }
  117. })
  118. const initDictionary = () => {
  119. }
  120. </script>
  121. <style lang="scss" scoped>
  122. .__cus-manage_content {
  123. margin-bottom: 0;
  124. height: calc(100% - 24px);
  125. }
  126. </style>