| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <template>
- <el-config-provider :locale="locale" :size="config.size" :zIndex="config.zIndex" :button="config.button">
- <router-view></router-view>
- </el-config-provider>
- </template>
- <script>
- const debounce = (fn, delay) => {
- let timer = null;
- return function () {
- let context = this;
- let args = arguments;
- clearTimeout(timer);
- timer = setTimeout(function () {
- fn.apply(context, args);
- }, delay);
- }
- }
- const _ResizeObserver = window.ResizeObserver;
- window.ResizeObserver = class ResizeObserver extends _ResizeObserver {
- constructor(callback) {
- callback = debounce(callback, 16);
- super(callback);
- }
- }
- import colorTool from "@/utils/color";
- export default {
- name: "App",
- data() {
- return {
- config: {
- size: "default",
- zIndex: 2000,
- button: {
- autoInsertSpace: false
- }
- }
- }
- },
- computed: {
- locale() {
- return this.$i18n.messages[this.$i18n.locale].el
- }
- },
- created() {
- // 设置主题颜色
- const app_color = this.$CONFIG.COLOR || this.$TOOL.data.get("APP_COLOR")
- if (app_color) {
- document.documentElement.style.setProperty("--el-color-primary", app_color);
- for (let i = 1; i <= 9; i++) {
- document.documentElement.style.setProperty(`--el-color-primary-light-${i}`, colorTool.lighten(app_color, i / 10));
- }
- for (let i = 1; i <= 9; i++) {
- document.documentElement.style.setProperty(`--el-color-primary-dark-${i}`, colorTool.darken(app_color, i / 10));
- }
- // vxe-Table
- document.documentElement.style.setProperty("--vxe-ui-font-primary-color", app_color);
- document.documentElement.style.setProperty("--vxe-ui-font-primary-darken-color", app_color);
- document.documentElement.style.setProperty("--vxe-ui-font-primary-lighten-color", app_color);
- }
- }
- }
- </script>
- <style lang="scss">
- @use "@/style/style.scss";
- </style>
|