CzRger 6 月之前
父节点
当前提交
9406e0fbab
共有 3 个文件被更改,包括 11 次插入6 次删除
  1. 7 1
      src/api/modules/manage/theme.ts
  2. 0 1
      src/views/manage/theme/detail.vue
  3. 4 4
      src/views/manage/theme/style.vue

+ 7 - 1
src/api/modules/manage/theme.ts

@@ -14,12 +14,18 @@ export const sysThemeAdd = (params: any) => handle({
   method: 'post',
   params
 })
-// 编辑 || 配置
+// 编辑
 export const sysThemeUpdate = (params: any) => handle({
   url: `/${suffix}/sysTheme/update`,
   method: 'post',
   params
 })
+// 配置
+export const sysThemeStyleConfig = (params: any) => handle({
+  url: `/${suffix}/sysTheme/styleConfig`,
+  method: 'post',
+  params
+})
 // 详情
 export const sysThemeFind = (id: any) => handle({
   url: `/${suffix}/sysTheme/find/${id}`,

+ 0 - 1
src/views/manage/theme/detail.vue

@@ -51,7 +51,6 @@
               multiple
               filterable
               allow-create
-              default-first-option
               :reserve-keyword="false"
               :options="[]"
               static

+ 4 - 4
src/views/manage/theme/style.vue

@@ -62,7 +62,7 @@
 import {computed, getCurrentInstance, nextTick, reactive, ref, watch} from "vue";
 import {useDictionaryStore} from "@/stores";
 import {ElMessage, ElMessageBox} from "element-plus";
-import {sysThemeAdd, sysThemeFind, sysThemeUpdate} from "@/api/modules/manage/theme";
+import {sysThemeFind, sysThemeStyleConfig} from "@/api/modules/manage/theme";
 
 const emit = defineEmits(['update:show', 'refresh'])
 const {proxy} = getCurrentInstance()
@@ -90,8 +90,8 @@ const onSubmit = () => {
     } as any).then(() => {
       state.loading = true
       const params = JSON.parse(JSON.stringify(state.detail))
-      params.themeParam = JSON.stringify(state.form)
-      sysThemeUpdate(params).then(res => {
+      params.themeStyle = JSON.stringify(state.form)
+      sysThemeStyleConfig(params).then(res => {
         if (res.code === 200) {
           ElMessage.success('配置成功!')
           emit('update:show', false)
@@ -115,7 +115,7 @@ const initDetail = () => {
   sysThemeFind(props.transfer.id).then(res => {
     if (res.code === 200) {
       state.detail = res.data
-      state.form = state.detail.themeParam ? JSON.parse(state.detail.themeParam) : {
+      state.form = state.detail.themeStyle ? JSON.parse(state.detail.themeStyle) : {
         mainColor: '#2e81ff',
       }
       state.loading = false