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