Procházet zdrojové kódy

根据规范优化页面

fanghuisheng před 8 měsíci
rodič
revize
7dafeec818

+ 2 - 2
src/App.vue

@@ -8,12 +8,13 @@ import { defineComponent, getCurrentInstance, inject, nextTick, onMounted, watch
 /*----------------------------------公共方法引入-----------------------------------*/
 import config from "./config";
 import JKeyListen from "@/utils/keyListen.js";
+import { storageSystem } from "@/utils/storage";
 /*----------------------------------公共变量-----------------------------------*/
 const { proxy } = getCurrentInstance();
 /*----------------------------------变量声明-----------------------------------*/
 
 function initApp() {
-  proxy.$settingStore.initThemeColor(); //初始化默认主题
+  proxy.$settingStore.initThemeColor(storageSystem.get("themeColor")); //初始化默认主题
   proxy.$settingStore.systemHeightTop(); //初始化获取安全区高度
   uni.hideTabBar(); //隐藏自带tabbar
 
@@ -24,7 +25,6 @@ function initApp() {
   //#endif
 }
 
-
 // 设置手机通知权限
 function setPermissions() {
   // #ifdef APP-PLUS

+ 9 - 1
src/api/business/project.js

@@ -5,6 +5,7 @@ import { request } from "@/utils/request";
  * @method Record 记录列表
  * @method Details 记录详情
  * @method ReadFlag 记录已读
+ * @method ProjectsList 项目下拉
  */
 export function projectApi() {
     return {
@@ -22,12 +23,19 @@ export function projectApi() {
                 data: data,
             });
         },
-        ReadFlag(data){
+        ReadFlag(data) {
             return request({
                 url: "/service-iot/pmReceive/updateReadFlag",
                 method: "GET",
                 data: data,
             });
+        },
+        ProjectsList(data) {
+            return request({
+                url: '/service-iot/pmProject/projects',
+                method: 'get',
+                params: data
+            })
         }
     };
 }

+ 9 - 0
src/api/system/user.js

@@ -55,3 +55,12 @@ export function appDel(data) {
     method: 'DELETE',
   })
 }
+
+// 树结构查询部门--用户列表
+export function deptUserTreeSelect(query) {
+  return request({
+    url: '/system/dept/deptUserTreeSelect',
+    method: 'get',
+    params: query
+  })
+}

+ 22 - 35
src/components/oa-tabbar/index.vue

@@ -1,5 +1,5 @@
 <template>
-  <u-tabbar :value="tabbarValue" @change="tabbarChange" :fixed="true" :placeholder="true" :safeAreaInsetBottom="true" :border="false" :activeColor="proxy.$settingStore.themeColor.color">
+  <u-tabbar :value="tabbarValue" @change="tabbarChange" :fixed="true" :placeholder="true" :safeAreaInsetBottom="true" :border="true" :activeColor="proxy.$settingStore.themeColor.color">
     <u-tabbar-item :text="tab.text" v-for="(tab, index) in tabbarList" :key="index" :dot="tab.dot">
       <template #active-icon>
         <image style="width: 24px; height: 24px" :src="proxy.$settingStore.themeColor.tabList[index]"></image>
@@ -11,52 +11,39 @@
   </u-tabbar>
 </template>
 <script setup>
+/*----------------------------------依赖引入-----------------------------------*/
 import { onReady, onLoad, onShow, onNavigationBarButtonTap, onPullDownRefresh, onReachBottom } from "@dcloudio/uni-app";
 import { ref, onMounted, inject, shallowRef, reactive, getCurrentInstance, watchEffect, toRefs } from "vue";
-
+/*----------------------------------接口引入-----------------------------------*/
+/*----------------------------------组件引入-----------------------------------*/
+/*----------------------------------store引入-----------------------------------*/
+/*----------------------------------公共方法引入-----------------------------------*/
+/*----------------------------------公共变量-----------------------------------*/
 const { proxy } = getCurrentInstance();
-
+/*----------------------------------变量声明-----------------------------------*/
 const props = defineProps({
   tabbarValue: {
     type: Number,
     default: 0,
   },
-});
-
-const { tabbarValue } = toRefs(props);
-
-const tabbarList = ref([
-  {
-    pagePath: "/pages/index",
-    iconPath: "/static/images/tabBar/tab-home.png",
-    selectedIconPath: "/static/images/tabBar/tab-home-blue.png",
-    text: "工作台",
-    dot: false,
-  },
-  // {
-  //   "pagePath": "pages/analyse/analyse",
-  //   "iconPath": "/static/images/tabBar/analyse.png",
-  //   "selectedIconPath": "/static/images/tabBar/analyse-selected.png",
-  //   "text": "分析"
-  // },
-  {
-    pagePath: "/pages/info",
-    iconPath: "/static/images/tabBar/tab-info.png",
-    selectedIconPath: "/static/images/tabBar/tab-info-blue.png",
-    text: "消息",
-    dot: false,
+  tabbarList: {
+    type: Object,
+    default: [],
   },
-  {
-    pagePath: "/pages/mine",
-    iconPath: "/static/images/tabBar/tab-my.png",
-    selectedIconPath: "/static/images/tabBar/tab-my-blue.png",
-    text: "我的",
-    dot: false,
+  isTabbar: {
+    type: Boolean,
+    default: true,
   },
-]);
+});
+
+const { tabbarValue, tabbarList, isTabbar } = toRefs(props);
 
 function tabbarChange(e) {
-  proxy.$tab.switchTab(tabbarList.value[e].pagePath);
+  if (isTabbar.value) {
+    proxy.$tab.switchTab(tabbarList.value[e].pagePath);
+  } else {
+    proxy.$tab.redirectTo(tabbarList.value[e].pagePath);
+  }
 }
 
 onLoad((option) => {});

+ 4 - 4
src/pages/business/common/projectMange/record/details.vue

@@ -2,7 +2,7 @@
   <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" :title="state.options.createBy + '的日报'" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff" @leftClick="goRecordDataRefresh()">
     <template #left>
       <view class="u-navbar__content__left__item">
-        <u-icon name="arrow-left" size="19" color="#000"></u-icon>
+        <u-icon name="arrow-left" size="20" color="#000"></u-icon>
       </view>
     </template>
   </u-navbar>
@@ -35,7 +35,7 @@
             size="40"
             fontSize="12"
             color="#ffffff"
-            bgColor="#149eff"
+            :bgColor="proxy.$settingStore.themeColor.color"
           ></u-avatar>
           <view>
             <view class="content-area-header-title font16 mb5">{{ item.createBy }}</view>
@@ -45,8 +45,8 @@
 
         <view class="content-area-center mb10" v-for="child in item.workContents" :key="child">
           <view class="content-area-center-top flex">
-            <view class="content-area-center-top-title" style="margin-right: 10px">{{ child.projectName }}</view>
-            <view class="content-area-center-top-time" style="color: #48a4ff">{{ child.workTime }}h</view>
+            <view class="content-area-center-top-title mr10">{{ child.projectName }}</view>
+            <view class="content-area-center-top-time" :style="{ color: proxy.$settingStore.themeColor.color }">{{ child.workTime }}h</view>
           </view>
           <u-text :text="child.workContent" color="#000000" size="14"></u-text>
         </view>

+ 9 - 4
src/pages/business/common/projectMange/record/index.vue

@@ -3,7 +3,7 @@
     <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" title="报告记录" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
       <template #left>
         <view class="u-navbar__content__left__item">
-          <u-icon name="arrow-left" size="19" color="#000"></u-icon>
+          <u-icon name="arrow-left" size="20" color="#000"></u-icon>
         </view>
       </template>
     </u-navbar>
@@ -25,7 +25,10 @@
     :isSticky="true"
     :customStyle="{
       //#ifdef APP-PLUS || MP-WEIXIN
-      height: 'calc(100vh - 88px)',
+      height: 'calc(100vh - 132px)',
+      //#endif
+      //#ifdef H5
+      height: 'calc(100vh - 132px)',
       //#endif
     }"
     :refresherLoad="true"
@@ -51,7 +54,7 @@
               size="35"
               fontSize="10"
               color="#ffffff"
-              bgColor="#149eff"
+              :bgColor="proxy.$settingStore.themeColor.color"
             ></u-avatar>
             <view>
               <view class="content-area-center-title font14 mb5">{{ el.createBy }}的日报</view>
@@ -64,12 +67,14 @@
           <view class="flex">
             <u-tag class="mr10" type="info" text="已读" size="mini" plain v-if="el.readFlag === 1" style="margin: 0 auto"></u-tag>
             <u-tag class="mr10" type="error" text="未读" size="mini" plain v-if="el.readFlag === 0" style="margin: 0 auto"></u-tag>
-            <u-text class="" type="primary" text="全文" size="14"></u-text>
+            <u-text text="全文" :color="proxy.$settingStore.themeColor.color" size="14"></u-text>
           </view>
         </view>
       </view>
     </template>
   </oa-scroll>
+
+  <oa-tabbar :tabbarValue="0" :tabbarList="proxy.$constData.projectTabbar" :isTabbar="false"></oa-tabbar>
 </template>
 
 <script setup>

+ 1 - 0
src/pages/business/fireIot/deviceManage/components/deviceDetails.vue

@@ -88,6 +88,7 @@
                 checkboxChange(val);
               }
             "
+            :size="14"
             :activeColor="proxy.$settingStore.themeColor.color"
           >
             <u-checkbox class="mb10" v-for="option in checkboxDataList" :key="option" :label="option.attributeName" :name="option.attributeCode"> </u-checkbox>

+ 2 - 2
src/pages/business/mhxf/unitInfoCollection/index.vue

@@ -197,7 +197,7 @@
                 </view>
 
                 <u-form-item label="消防设施设置" :prop="`baseBuildList.${index}.baseBuild.fireFacilitySystem`" required :borderBottom="true">
-                  <u-checkbox-group v-model="li.baseBuild.fireFacilitySystem" placement="column" @change="checkboxChange">
+                  <u-checkbox-group v-model="li.baseBuild.fireFacilitySystem" placement="column" :size="14" @change="checkboxChange">
                     <u-checkbox :customStyle="{ marginBottom: '8px' }" label="自动喷水灭火系统" :name="1"> </u-checkbox>
                     <u-checkbox :customStyle="{ marginBottom: '8px' }" label="火灾自动报警系统" :name="2"> </u-checkbox>
                     <u-checkbox :customStyle="{ marginBottom: '8px' }" label="防排烟与排烟系统" :name="3"> </u-checkbox>
@@ -206,7 +206,7 @@
                 </u-form-item>
 
                 <u-form-item label="其他设施" :prop="`li.baseBuildList.baseBuild.otherSystem`" :borderBottom="true">
-                  <u-checkbox-group v-model="li.baseBuild.otherSystem" placement="column" @change="checkboxChange">
+                  <u-checkbox-group v-model="li.baseBuild.otherSystem" placement="column" :size="14" @change="checkboxChange">
                     <u-checkbox :customStyle="{ marginBottom: '8px' }" label="泡沫灭火系统" :name="1"> </u-checkbox>
                     <u-checkbox :customStyle="{ marginBottom: '8px' }" label="水喷雾、细水雾灭火系统" :name="2"> </u-checkbox>
                     <u-checkbox :customStyle="{ marginBottom: '8px' }" label="消防炮、自动跟踪定位射流灭火系统" :name="3"> </u-checkbox>

+ 2 - 2
src/pages/business/zhaf/xunJian/collect/components/collectRecord.vue

@@ -4,8 +4,8 @@
       <view class="u-navbar__content__center__item"> 采集记录 </view>
     </template>
     <template #right>
-      <view class="u-navbar__content__right__item">
-        <text class="iconfont oaIcon-shaixuan" @click="handleIconClick('筛选')"></text>
+      <view class="u-navbar__content__right__item ">
+        <text class="iconfont oaIcon-shaixuan font18" @click="handleIconClick('筛选')"></text>
       </view>
     </template>
   </u-navbar>

+ 1 - 1
src/pages/business/zhaf/xunJian/collect/index.vue

@@ -4,7 +4,7 @@
       <view class="u-navbar__content__center__item"> 点位采集 </view>
     </template>
     <template #right>
-      <view class="u-navbar__content__right__item">
+      <view class="u-navbar__content__right__item font12">
         <span @click="handleIconClick('采集记录')">采集记录</span>
       </view>
     </template>

+ 1 - 0
src/pages/business/zhaf/xunJian/plan/components/content.vue

@@ -27,6 +27,7 @@
                   checkboxChange(val, index);
                 }
               "
+              :size="14"
               :disabled="xunJianStore.inspectionStatus == 2"
               :activeColor="proxy.$settingStore.themeColor.color"
             >

+ 6 - 6
src/pages/index.vue

@@ -10,7 +10,7 @@
     </template>
     <template #right>
       <view class="u-navbar__content__left__item">
-        <text class="iconfont oaIcon-jiahao" @click="rightButtonClick()"></text>
+        <text class="iconfont oaIcon-jiahao font20" @click="rightButtonClick()"></text>
       </view>
     </template>
   </u-navbar>
@@ -75,7 +75,7 @@
     </template>
   </oa-scroll>
 
-  <oa-tabbar :tabbarValue="0"></oa-tabbar>
+  <oa-tabbar :tabbarValue="0" :tabbarList="proxy.$constData.homeTabbar"></oa-tabbar>
 </template>
 
 <script setup>
@@ -111,9 +111,9 @@ const { dialogFlag } = toRefs(state);
 /**
  * @初始化
  */
-function init() {
+function init(options) {
   //#ifdef H5
-  useStore.GetWxOpenId(2); //调用获取微信公众号openId
+  useStore.GetWxOpenId(2, options); //调用获取微信公众号openId
   //#endif
 
   setTimeout(() => {
@@ -339,9 +339,9 @@ function getAppRoutersData() {
   });
 }
 
-onLoad((option) => {
+onLoad((options) => {
   uni.hideTabBar(); //隐藏自带tabbar
-  init();
+  init(options);
 });
 
 onShow(() => {

+ 8 - 5
src/pages/info.vue

@@ -7,7 +7,7 @@
       <view class="u-navbar__content__left__item topBadge">
         <u-badge numberType="overflow" max="99" :value="infoList.total || 0"></u-badge>
       </view>
-      <view class="u-navbar__content__left__item" @click="clearMsg" v-if="infoList.total > 0">
+      <view class="u-navbar__content__left__item topImage" @click="clearMsg" v-if="infoList.total > 0">
         <image class="image-bg-top" src="/static/images/common/clear.png" />
       </view>
     </template>
@@ -19,13 +19,13 @@
         <text class="iconfont oaIcon-sousuo" @click="handleIconClick('搜索')"></text>
       </view> -->
       <view class="u-navbar__content__right__item">
-        <text class="iconfont oaIcon-shezhi" @click="handleIconClick('设置')"></text>
+        <text class="iconfont oaIcon-shezhi font20" @click="handleIconClick('设置')"></text>
       </view>
     </template>
   </u-navbar>
 
   <oa-scroll
-    customClass="info-container  scroll-height bg-white"
+    customClass="info-container scroll-height bg-white"
     :customStyle="{ height: `calc(100vh - (50px + ${proxy.$settingStore.barHightTop} + ${proxy.$settingStore.tabBarHeight}))`, position: 'relative' }"
     :refresherLoad="false"
     :refresherEnabled="true"
@@ -55,7 +55,7 @@
     </template>
   </oa-scroll>
 
-  <oa-tabbar :tabbarValue="1"></oa-tabbar>
+  <oa-tabbar :tabbarValue="1" :tabbarList="proxy.$constData.homeTabbar"></oa-tabbar>
 </template>
 
 <script setup>
@@ -105,7 +105,6 @@ function init() {
             if (receiveStatic.infoTypeStatic[i].infoType == 5) {
               receiveStatic.infoTypeStatic[i].img = "/static/images/common/reportMessage.png";
             }
-            
           }
         }
       }
@@ -147,6 +146,10 @@ onLoad(() => {
 </script>
 
 <style lang="scss" scoped>
+.topImage {
+  display: flex;
+  margin: 0 auto;
+}
 .topBadge {
   margin-top: -14px;
   margin-left: 0px;

+ 1 - 1
src/pages/mine.vue

@@ -173,7 +173,7 @@
 
   <oa-upgrade ref="oaUpgradeRef" :themesColor="proxy.$settingStore.themeColor.color" />
 
-  <oa-tabbar :tabbarValue="2"></oa-tabbar>
+  <oa-tabbar :tabbarValue="2" :tabbarList="proxy.$constData.homeTabbar"></oa-tabbar>
 </template>
 
 <script setup>

+ 1 - 1
src/pages/mine/about/index.vue

@@ -3,7 +3,7 @@
     <u-navbar :titleStyle="{ color: '#fff' }" :autoBack="true" title="关于我们" :placeholder="true" :safeAreaInsetTop="true" :bgColor="proxy.$settingStore.themeColor.color">
       <template #left>
         <view class="u-navbar__content__left__item">
-          <u-icon name="arrow-left" size="19" color="#fff"></u-icon>
+          <u-icon name="arrow-left" size="20" color="#fff"></u-icon>
         </view>
       </template>
     </u-navbar>

+ 1 - 1
src/pages/mine/help/index.vue

@@ -3,7 +3,7 @@
     <u-navbar :titleStyle="{ color: '#fff' }" :autoBack="true" title="常见问题" :placeholder="true" :safeAreaInsetTop="true" :bgColor="proxy.$settingStore.themeColor.color">
       <template #left>
         <view class="u-navbar__content__left__item">
-          <u-icon name="arrow-left" size="19" color="#fff"></u-icon>
+          <u-icon name="arrow-left" size="20" color="#fff"></u-icon>
         </view>
       </template>
     </u-navbar>

+ 68 - 39
src/plugins/constData.plugins.js

@@ -1,47 +1,11 @@
 // 首页九宫格
-let cuIconList = [
+let homeRouter = [
 	{
 		imgUrl: "/static/icons/index/APP-xunjian.svg",
 		badge: 0,
 		name: "巡检",
 		redirectUrl: "/pages/business/zhaf/xunJian/xunJian",
 	},
-	{
-		imgUrl: "/static/icons/index/APP-xxcx.svg",
-		badge: 0,
-		name: "信息查询",
-		redirectUrl: "/pages/business/mhxf/informationSelect/index",
-	},
-	{
-		imgUrl: "/static/icons/index/APP-sbgl.svg",
-		badge: 0,
-		name: "设备管理",
-		redirectUrl: "/pages/business/mhxf/deviceManage/index",
-	},
-	{
-		imgUrl: "/static/icons/index/APP-zzdt.svg",
-		badge: 0,
-		name: "协同作战",
-		redirectUrl: "/pages/business/mhxf/coordination/index",
-	},
-	{
-		imgUrl: "/static/icons/index/APP-dwxxcj.svg",
-		badge: 0,
-		name: "单位采集",
-		redirectUrl: "/pages/business/mhxf/unitInfoCollection/index",
-	},
-	{
-		imgUrl: "/static/icons/index/APP-xfbg.svg",
-		badge: 0,
-		name: "消防报告",
-		redirectUrl: "/pages/business/mhxf/fireReport/index",
-	},
-	{
-		imgUrl: "/static/icons/index/APP-dbsx.svg",
-		badge: 0,
-		name: "待办事项",
-		redirectUrl: "/pages/business/mhxf/needMatter/index",
-	},
 	// {
 	//   imgUrl: "/static/images/square/square-xf.png",
 	//   badge: 0,
@@ -99,6 +63,70 @@ let xunJianList = [
 	},
 ];
 
+// 首页底部导航栏
+let homeTabbar = [
+	{
+		pagePath: "/pages/index",
+		iconPath: "/static/images/tabBar/tab-home.png",
+		selectedIconPath: "/static/images/tabBar/tab-home-blue.png",
+		text: "工作台",
+		dot: false,
+	},
+	// {
+	//   "pagePath": "pages/analyse/analyse",
+	//   "iconPath": "/static/images/tabBar/analyse.png",
+	//   "selectedIconPath": "/static/images/tabBar/analyse-selected.png",
+	//   "text": "分析"
+	// },
+	{
+		pagePath: "/pages/info",
+		iconPath: "/static/images/tabBar/tab-info.png",
+		selectedIconPath: "/static/images/tabBar/tab-info-blue.png",
+		text: "消息",
+		dot: false,
+	},
+	{
+		pagePath: "/pages/mine",
+		iconPath: "/static/images/tabBar/tab-my.png",
+		selectedIconPath: "/static/images/tabBar/tab-my-blue.png",
+		text: "我的",
+		dot: false,
+	},
+]
+
+// 工作报告底部导航栏
+let projectTabbar = [
+	{
+		pagePath: "/pages/business/common/projectMange/record/index",
+		iconPath: "/static/images/tabBar/tab-home.png",
+		selectedIconPath: "/static/images/tabBar/tab-home-blue.png",
+		text: "看日志",
+		dot: false,
+	},
+	{
+		pagePath: "/pages/business/common/projectMange/write/index",
+		iconPath: "/static/images/tabBar/tab-info.png",
+		selectedIconPath: "/static/images/tabBar/tab-info-blue.png",
+		text: "写日志",
+		dot: false,
+	},
+	// {
+	// 	pagePath: "/pages/mine",
+	// 	iconPath: "/static/images/tabBar/tab-my.png",
+	// 	selectedIconPath: "/static/images/tabBar/tab-my-blue.png",
+	// 	text: "统计导出",
+	// 	dot: false,
+	// },
+	// {
+	// 	pagePath: "/pages/info",
+	// 	iconPath: "/static/images/tabBar/tab-info.png",
+	// 	selectedIconPath: "/static/images/tabBar/tab-info-blue.png",
+	// 	text: "模板管理",
+	// 	dot: false,
+	// },
+]
+
+
 export default {
 	// 主题列表
 	themeList: [
@@ -244,7 +272,8 @@ export default {
 		}
 	],
 	staticData: staticData,
-	cuIconList: cuIconList,
-
+	homeRouter: homeRouter,
 	xunJianList: xunJianList,
+	homeTabbar: homeTabbar,
+	projectTabbar: projectTabbar
 };

+ 5 - 1
src/static/scss/index.scss

@@ -10,6 +10,10 @@
 @import "./sidebar.scss";
 
 
+.weight {
+    font-weight: bold;
+}
+
 .divider-default {
     width: 0.5px;
     background-color: #333;
@@ -91,7 +95,7 @@
 ------------------------------- */
 @for $i from 10 through 500 {
     .font#{$i} {
-        font-size: #{$i}px;
+        font-size: #{$i}px !important;
     }
 }
 

+ 1 - 4
src/static/scss/sidebar.scss

@@ -121,6 +121,7 @@ uni-button[type='primary'] {
 .u-navbar {
     .u-navbar--fixed {
         .u-navbar__content {
+            line-height: 44px;
             @include background_color('themeColor');
 
             &__title {
@@ -151,10 +152,6 @@ uni-button[type='primary'] {
                     font-size: $uni-font-size-lg;
                     color: $uni-text-color-inverse;
                     margin-left: 13px;
-
-                    span {
-                        font-size: $uni-font-size-sm;
-                    }
                 }
             }
 

+ 31 - 31
src/store/modules/setting.js

@@ -40,37 +40,6 @@ const settingStores = defineStore("storage-setting", {
         webSocket: null,//巡检webSocket
     }),
     actions: {
-        /**
-         * @系统主题颜色
-         */
-        systemThemeColor(type) {
-            setTimeout(() => {
-                if (type.includes(2)) {
-                    uni.setTabBarStyle({
-                        selectedColor: this.themeColor.color,
-                        borderStyle: "white",
-                    });
-
-                    this.themeColor.tabList.forEach((selectedIconPath, index) => {
-                        uni.setTabBarItem({
-                            index,
-                            selectedIconPath,
-                        });
-                    });
-                }
-
-                if (type.includes(1)) {
-                    uni.setNavigationBarColor({
-                        frontColor: "#ffffff",
-                        backgroundColor: this.themeColor.color,
-                        animation: {
-                            duration: 400,
-                            timingFunc: "easeIn",
-                        },
-                    });
-                }
-            }, 0);
-        },
         /**
          * @动态获取屏幕头部高度
          */
@@ -396,6 +365,37 @@ const settingStores = defineStore("storage-setting", {
                 storageSystem.set("themeColor", themeColor);
             }
         },
+        /**
+         * @系统主题颜色
+         */
+        systemThemeColor(type) {
+            setTimeout(() => {
+                if (type.includes(2)) {
+                    uni.setTabBarStyle({
+                        selectedColor: this.themeColor.color,
+                        borderStyle: "white",
+                    });
+
+                    this.themeColor.tabList.forEach((selectedIconPath, index) => {
+                        uni.setTabBarItem({
+                            index,
+                            selectedIconPath,
+                        });
+                    });
+                }
+
+                if (type.includes(1)) {
+                    uni.setNavigationBarColor({
+                        frontColor: "#ffffff",
+                        backgroundColor: this.themeColor.color,
+                        animation: {
+                            duration: 400,
+                            timingFunc: "easeIn",
+                        },
+                    });
+                }
+            }, 0);
+        },
         SET_FINGERPRINT(array) {
             this.fingerprintUserList = array;
             storageSystem.set("fingerprintUserList", array);