|
@@ -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;
|