snow 2 년 전
부모
커밋
cc178ee169
2개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 0 0
      dist/static/js/app.js
  2. 5 5
      src/layout/components/Navbar.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
dist/static/js/app.js


+ 5 - 5
src/layout/components/Navbar.vue

@@ -7,13 +7,14 @@
         class="hamburger-container"
         @toggleClick="toggleSideBar"
       />
-
-      <breadcrumb id="breadcrumb-container" class="breadcrumb-container" />
+      <template v-if="device !== 'mobile'">
+        <breadcrumb id="breadcrumb-container" class="breadcrumb-container" />
+      </template>
     </div>
 
     <div class="right-menu">
       <div class="right-menu-item">
-        <company-select ref="companySelect" select-all global placeholder="请选择供应商" />
+        <company-select ref="companySelect" select-all global placeholder="请选择供应商" :style="{width:device === 'mobile' ? '200px' : '400px'}" />
       </div>
 
       <el-tooltip placement="bottom" :content="switchAccountModeText">
@@ -25,7 +26,7 @@
         />
       </el-tooltip>
 
-      <el-tooltip placement="bottom" content="登录采销结算平台">
+      <el-tooltip v-if="device !== 'mobile'" placement="bottom" content="登录采销结算平台">
         <i
           class="el-icon-s-promotion right-menu-item hover-effect "
           style="height: 50px; width: 40px; line-height: 52px; font-size: 22px;"
@@ -431,7 +432,6 @@ export default {
   height: 50px;
   position: relative;
   background: #fff;
-  min-width: 1000px;
   box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
   display: flex;
   justify-content: space-between;

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.