11 lines
407 B
HTML
11 lines
407 B
HTML
<script>
|
|
// 自动变换主题色
|
|
const variableKey = "--global-primary-color";
|
|
const variableVal = localStorage.getItem("theme-color-color");
|
|
document.documentElement.style.setProperty(variableKey, variableVal);
|
|
</script>
|
|
|
|
<script src="{{ url_for('static', filename='system/component/layui/layui.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='system/component/pear/pear.js') }}"></script>
|
|
|