xiangpei
2024-07-19 58e94e1a8ab6c8458b1cacb9e014ba53c18fb33e
菜单颜色改为默认白蓝
4个文件已修改
28 ■■■■ 已修改文件
src/components/ThemePicker/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/layout/components/Settings/index.vue 20 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/store/modules/settings.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/work-order/distribute/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/ThemePicker/index.vue
@@ -15,7 +15,7 @@
  data() {
    return {
      chalk: '', // content of theme-chalk css
      theme: ''
      theme: "#409EFF"
    }
  },
  computed: {
src/layout/components/Settings/index.vue
@@ -7,16 +7,16 @@
            <h3 class="drawer-title">主题风格设置</h3>
          </div>
          <div class="setting-drawer-block-checbox">
            <div class="setting-drawer-block-checbox-item" @click="handleTheme('theme-dark')">
              <img src="@/assets/images/dark.svg" alt="dark">
              <div v-if="sideTheme === 'theme-dark'" class="setting-drawer-block-checbox-selectIcon" style="display: block;">
                <i aria-label="图标: check" class="anticon anticon-check">
                  <svg viewBox="64 64 896 896" data-icon="check" width="1em" height="1em" :fill="theme" aria-hidden="true" focusable="false" class="">
                    <path d="M912 190h-69.9c-9.8 0-19.1 4.5-25.1 12.2L404.7 724.5 207 474a32 32 0 0 0-25.1-12.2H112c-6.7 0-10.4 7.7-6.3 12.9l273.9 347c12.8 16.2 37.4 16.2 50.3 0l488.4-618.9c4.1-5.1.4-12.8-6.3-12.8z"/>
                  </svg>
                </i>
              </div>
            </div>
<!--            <div class="setting-drawer-block-checbox-item" @click="handleTheme('theme-dark')">-->
<!--              <img src="@/assets/images/dark.svg" alt="dark">-->
<!--              <div v-if="sideTheme === 'theme-dark'" class="setting-drawer-block-checbox-selectIcon" style="display: block;">-->
<!--                <i aria-label="图标: check" class="anticon anticon-check">-->
<!--                  <svg viewBox="64 64 896 896" data-icon="check" width="1em" height="1em" :fill="theme" aria-hidden="true" focusable="false" class="">-->
<!--                    <path d="M912 190h-69.9c-9.8 0-19.1 4.5-25.1 12.2L404.7 724.5 207 474a32 32 0 0 0-25.1-12.2H112c-6.7 0-10.4 7.7-6.3 12.9l273.9 347c12.8 16.2 37.4 16.2 50.3 0l488.4-618.9c4.1-5.1.4-12.8-6.3-12.8z"/>-->
<!--                  </svg>-->
<!--                </i>-->
<!--              </div>-->
<!--            </div>-->
            <div class="setting-drawer-block-checbox-item" @click="handleTheme('theme-light')">
              <img src="@/assets/images/light.svg" alt="light">
              <div v-if="sideTheme === 'theme-light'" class="setting-drawer-block-checbox-selectIcon" style="display: block;">
src/store/modules/settings.js
@@ -5,8 +5,8 @@
const storageSetting = JSON.parse(localStorage.getItem('layout-setting')) || ''
const state = {
  title: '',
  theme: storageSetting.theme || '#409EFF',
  sideTheme: storageSetting.sideTheme || sideTheme,
  theme: '#409EFF',
  sideTheme: "#409EFF",
  showSettings: showSettings,
  topNav: storageSetting.topNav === undefined ? topNav : storageSetting.topNav,
  tagsView: storageSetting.tagsView === undefined ? tagsView : storageSetting.tagsView,
src/views/system/work-order/distribute/index.vue
@@ -225,7 +225,7 @@
      queryParams: {
        unitId: null,
        keyword: '',
        status: '',
        status: 'WAIT_DISTRIBUTE',
        pageNum: 1,
        pageSize: 10,
      },