index.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <template>
  2. <div class="__cus-manage_content">
  3. <div class="__cus-manage_content-title"><SvgIcon class="flag" name="flag_1" color="var(--cus-main-color)"/>{{$route.meta.title}}</div>
  4. <div class="__cus-manage_content-filters">
  5. <CusForm labelWidth="50px" @handleEnter="onSearch">
  6. <CusFormColumn
  7. label-width="80px"
  8. :span="4"
  9. label="主题名称"
  10. v-model:param="state.query.form.themeName"
  11. />
  12. <CusFormColumn
  13. :span="4"
  14. label="类别"
  15. v-model:param="state.query.form.themeType"
  16. link="select"
  17. :options="DictionaryStore.themeTypeList"
  18. />
  19. <CusFormColumn
  20. :span="4"
  21. label="状态"
  22. v-model:param="state.query.form.themeState"
  23. link="select"
  24. :options="DictionaryStore.themeStatusList"
  25. />
  26. <CusButton type="main" title="搜索" @click="onSearch"/>
  27. <CusButton type="main" title="重置" @click="onReset"/>
  28. <CusButton type="main" title="新增" style="margin-left: auto" @click="onAdd"/>
  29. </CusForm>
  30. </div>
  31. <div class="__cus-manage_content-main" v-loading="state.query.loading">
  32. <CusTable
  33. :page-num="state.query.page.pageNum"
  34. :page-size="state.query.page.pageSize"
  35. :total="state.query.result.total"
  36. :data="state.query.result.data"
  37. :table-head="state.query.tableHead"
  38. @handlePage="onPage"
  39. >
  40. <template #themeType-column-value="{scope}">
  41. {{DictionaryStore.themeTypeMap.get(scope.row.themeType)}}
  42. </template>
  43. <template #themeState-column-value="{scope}">
  44. {{DictionaryStore.themeStatusMap.get(scope.row.themeState)}}
  45. </template>
  46. <template #themeUrl-column-value="{scope}">
  47. {{formatUrl(scope.row)}}
  48. </template>
  49. <template #do-column-value="{scope}">
  50. <CusButton type="table-edit" @click="onEdit(scope.row)"/>
  51. <CusButton type="table-del" @click="onDel(scope.row)"/>
  52. <template v-if="scope.row.themeType == '1'">
  53. <CusButton type="table-edit" title="配置" icon="text" @click="onStyle(scope.row)"/>
  54. </template>
  55. <template v-else-if="scope.row.themeType == '2'">
  56. <CusButton type="table" icon="relation" title="索引构成" @click="onRelation(scope.row)"/>
  57. </template>
  58. </template>
  59. </CusTable>
  60. </div>
  61. <DetailCom v-model:show="state.detail.show" :transfer="state.detail.transfer" @refresh="onSearch"/>
  62. <StyleCom v-model:show="state.style.show" :transfer="state.style.transfer"/>
  63. <RelationCom v-model:show="state.relation.show" :transfer="state.relation.transfer"/>
  64. </div>
  65. </template>
  66. <script setup lang="ts">
  67. import {getCurrentInstance, onMounted, reactive} from "vue";
  68. import {ElMessage, ElMessageBox} from "element-plus";
  69. import DetailCom from "./detail.vue";
  70. import StyleCom from "./style.vue";
  71. import RelationCom from "./relation.vue";
  72. import {useDictionaryStore} from "@/stores";
  73. import {sysThemeDelete, sysThemeGetPageTheme} from "@/api/modules/manage/theme";
  74. const {proxy} = getCurrentInstance()
  75. const DictionaryStore = useDictionaryStore()
  76. const state: any = reactive({
  77. query: {
  78. loading: false,
  79. page: {
  80. pageNum: 1,
  81. pageSize: 10
  82. },
  83. tableHead: [
  84. {value: "themeName", label: "主题名称", fixed: 'left'},
  85. {value: "themeType", label: "类别"},
  86. {value: "themeState", label: "状态"},
  87. {value: "themeUrl", label: "请求URL示例",width: 200, popover: true},
  88. {value: "createTime", label: "创建时间", width: 200},
  89. {value: "createBy", label: "创建人"},
  90. {value: "updateTime", label: "最后修改时间", width: 200},
  91. {value: "updateBy", label: "最后修改人"},
  92. {value: "do", label: "操作", width: 280, fixed: 'right'},
  93. ],
  94. form: {},
  95. formReal: {},
  96. result: {
  97. total: 0,
  98. data: []
  99. }
  100. },
  101. detail: {
  102. show: false,
  103. transfer: {}
  104. },
  105. style: {
  106. show: false,
  107. transfer: {}
  108. },
  109. relation: {
  110. show: false,
  111. transfer: {}
  112. },
  113. })
  114. const onPage = (pageNum, pageSize) => {
  115. state.query.page = {
  116. pageNum: pageNum,
  117. pageSize: pageSize
  118. }
  119. const params = {
  120. page: state.query.page.pageNum,
  121. size: state.query.page.pageSize,
  122. }
  123. // 添加表单参数
  124. for (const [k, v] of Object.entries(state.query.formReal)) {
  125. if (proxy.$util.isValue(v)) {
  126. params[k] = v
  127. }
  128. }
  129. state.query.loading = true
  130. sysThemeGetPageTheme(proxy.$util.formatGetParam(params)).then(res => {
  131. state.query.result.total = res.data.totalElements
  132. state.query.result.data = res.data.content
  133. state.query.loading = false
  134. })
  135. }
  136. const onSearch = () => {
  137. state.query.formReal = JSON.parse(JSON.stringify(state.query.form))
  138. onPage(1, state.query.page.pageSize)
  139. }
  140. const onReset = () => {
  141. state.query.page = {
  142. pageNum: 1,
  143. pageSize: 10
  144. }
  145. state.query.form = {}
  146. onSearch()
  147. }
  148. const onAdd = () => {
  149. state.detail.transfer = {
  150. mode: 'add'
  151. }
  152. state.detail.show = true
  153. }
  154. const onEdit = (row) => {
  155. state.detail.transfer = {
  156. mode: 'edit',
  157. id: row.themeId,
  158. }
  159. state.detail.show = true
  160. }
  161. const onStyle = (row) => {
  162. state.style.transfer = {
  163. id: row.themeId,
  164. }
  165. state.style.show = true
  166. }
  167. const onRelation = (row) => {
  168. state.relation.transfer = {
  169. id: row.themeId,
  170. }
  171. state.relation.show = true
  172. }
  173. const onDel = (row) => {
  174. ElMessageBox.confirm(`请确认是否删除${row.themeName}?`, "提示", {
  175. confirmButtonText: "确定",
  176. cancelButtonText: "取消",
  177. type: "warning",
  178. } as any).then(() => {
  179. state.query.loading = true
  180. sysThemeDelete(row.themeId).then(res => {
  181. ElMessage.success('删除成功!')
  182. state.query.loading = false
  183. onSearch()
  184. })
  185. }).catch(() => {})
  186. }
  187. const formatUrl = (row) => {
  188. let str = `${row.themeUrl}`
  189. if (row.themeParam) {
  190. str += '?' + row.themeParam.split(',').map(v => `${v}=value`).join('&')
  191. }
  192. return str
  193. }
  194. const initDictionary = () => {
  195. DictionaryStore.initDict('theme_type')
  196. DictionaryStore.initDict('theme_status')
  197. }
  198. onMounted(() => {
  199. initDictionary()
  200. onReset()
  201. })
  202. </script>
  203. <style lang="scss" scoped>
  204. </style>