Bladeren bron

bug修复

hbchen 2 jaren geleden
bovenliggende
commit
d04b9fcfc3

+ 2 - 3
src/layout/component/Aside.vue

@@ -15,8 +15,7 @@ watch(
   }
 );
 const submenuEvent = (index)=>{
-  console.log(index)
-  if(index==6){
+  if(index==6 && route.fullPath!='/question/list' && route.fullPath!='/question/mylist'){
     //展开第一项
     router.push('/question/list')
   }
@@ -90,7 +89,7 @@ const menuList = reactive([
             <img class="menu-icon" :src="menu.icon_path" alt="" />
             <span class="menu-text">{{ menu.name }}</span>
           </template>
-          <el-menu-item v-for="child in menu.children" :key="child.MenuId" :index="child.path" style="text-align: center">
+          <el-menu-item v-for="child in menu.children" :key="child.MenuId" :index="child.path" style="text-align: center;min-width:unset;">
             {{ child.name }}
           </el-menu-item>
         </el-sub-menu>

+ 1 - 1
src/router/index.js

@@ -241,7 +241,7 @@ const routes=[
         component:()=>import('@/views/sandBox/List.vue'),
         meta: {
           title: "沙盘推演",
-          keepAlive:false,
+          keepAlive:true,
           isRoot:true
         }
       }

+ 0 - 1
src/views/question/List.vue

@@ -315,7 +315,6 @@ const audioWaiting = (item)=>{
 }
 // 可以播放 
 const audioCanPlay = (item,index)=>{
-  console.log(item,index)
   item.audio_status.loading = false
   if(!audio.value[index].played){
     play(item,index)

+ 1 - 2
src/views/question/MyList.vue

@@ -69,9 +69,8 @@ let timer = null
 // 顶部导航栏
 const getBarList = async ()=>{
   await store.dispatch('getUserInfo')
-  question.selectKey = store.state.userInfo.is_inner==1?'Wait':'Replied'
+  question.selectKey = store.state.userInfo.is_inner==1?'Distribute':'Replied'
   question.isUserResearcher = store.state.userInfo.is_inner==1&&store.state.userInfo.is_researcher==1 ? true:false
-  console.log(question.selectKey,question.isUserResearcher);
   const res = await apiBarTotal();
   if(res.code == 403){
       question.isAuthor=0

+ 3 - 2
src/views/sandBox/List.vue

@@ -93,8 +93,10 @@ import {apiSandBoxPermission,apiSandBoxList,apiSandTableDetail} from "../../api/
 import {apiReportIndexPageAuthList} from "../../api/report"
 import {apiApplyPermission} from "../../api/user"
 import { ElMessageBox } from 'element-plus'
+import {useStore} from 'vuex'
 const router = useRouter()
 const route = useRoute()
+const store = useStore()
 
 // -----------------------------------------------------数据
 let sandBox = reactive({
@@ -473,12 +475,11 @@ onActivated(()=>{
         }
     }
     .sandBox-contain{
-        margin-top: 130px;
         .classify-box{
             padding: 30px 30px 12px 30px;
             background: #FFFFFF;
             box-shadow: 0px 4px 8px 1px rgba(0, 0, 0, 0.04);
-            position: fixed;
+            position: sticky;
             top: 60px;
             width: 100%;
             max-width: 1240px;