fix: 主题切换XTable颜色修改
This commit is contained in:
parent
21e20021e8
commit
7c325ee96d
@ -12,6 +12,7 @@ import { useAppStore } from '@/store/modules/app'
|
|||||||
import { useDesign } from '@/hooks/web/useDesign'
|
import { useDesign } from '@/hooks/web/useDesign'
|
||||||
import { XTableProps } from './type'
|
import { XTableProps } from './type'
|
||||||
import { isBoolean, isFunction } from '@/utils/is'
|
import { isBoolean, isFunction } from '@/utils/is'
|
||||||
|
import styleCss from './style/dark.scss'
|
||||||
|
|
||||||
import download from '@/utils/download'
|
import download from '@/utils/download'
|
||||||
|
|
||||||
@ -26,14 +27,39 @@ const prefixCls = getPrefixCls('x-vxe-table')
|
|||||||
const attrs = useAttrs()
|
const attrs = useAttrs()
|
||||||
const emit = defineEmits(['register'])
|
const emit = defineEmits(['register'])
|
||||||
|
|
||||||
|
const removeStyles = () => {
|
||||||
|
var filename = 'cssTheme'
|
||||||
|
//移除引入的文件名
|
||||||
|
var targetelement = 'style'
|
||||||
|
var targetattr = 'id'
|
||||||
|
var allsuspects = document.getElementsByTagName(targetelement)
|
||||||
|
for (var i = allsuspects.length; i >= 0; i--) {
|
||||||
|
if (
|
||||||
|
allsuspects[i] &&
|
||||||
|
allsuspects[i].getAttribute(targetattr) != null &&
|
||||||
|
allsuspects[i].getAttribute(targetattr)?.indexOf(filename) != -1
|
||||||
|
) {
|
||||||
|
console.log(allsuspects[i], 'node')
|
||||||
|
allsuspects[i].parentNode?.removeChild(allsuspects[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
const reImport = () => {
|
||||||
|
var head = document.getElementsByTagName('head')[0]
|
||||||
|
var style = document.createElement('style')
|
||||||
|
style.innerText = styleCss
|
||||||
|
style.id = 'cssTheme'
|
||||||
|
head.appendChild(style)
|
||||||
|
}
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
() => appStore.getIsDark,
|
() => appStore.getIsDark,
|
||||||
() => {
|
() => {
|
||||||
if (appStore.getIsDark == true) {
|
if (appStore.getIsDark == true) {
|
||||||
import('./style/dark.scss')
|
reImport()
|
||||||
}
|
}
|
||||||
if (appStore.getIsDark == false) {
|
if (appStore.getIsDark == false) {
|
||||||
import('./style/light.scss')
|
removeStyles()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ immediate: true }
|
{ immediate: true }
|
||||||
|
Loading…
Reference in New Issue
Block a user