|
|
|
@ -8,16 +8,15 @@
|
|
|
|
|
</div> |
|
|
|
|
<div class="avue-main"> |
|
|
|
|
<!-- 顶部导航栏 --> |
|
|
|
|
<top ref="top" /> |
|
|
|
|
<top ref="top" /> |
|
|
|
|
<!-- 顶部标签卡 --> |
|
|
|
|
<tags /> |
|
|
|
|
<search class="avue-view" v-show="isSearch"></search> |
|
|
|
|
<!-- 主体视图层 --> |
|
|
|
|
<div id="avue-view" v-show="!isSearch" v-if="isRefresh"> |
|
|
|
|
<router-view #="{ Component }"> |
|
|
|
|
|
|
|
|
|
<!-- <keep-alive :include="$store.getters.tagsKeep" :max="20"> --> |
|
|
|
|
<keep-alive :max="20"> |
|
|
|
|
<keep-alive :max="20"> |
|
|
|
|
<component :is="Component" /> |
|
|
|
|
</keep-alive> |
|
|
|
|
</router-view> |
|
|
|
@ -53,7 +52,6 @@ export default {
|
|
|
|
|
provide() { |
|
|
|
|
return { |
|
|
|
|
index: this, |
|
|
|
|
|
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
@ -72,19 +70,18 @@ export default {
|
|
|
|
|
(this.$route.meta || {}).menu === false || (this.$route.query || {}).menu === 'false' |
|
|
|
|
); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
data(){ |
|
|
|
|
return{ |
|
|
|
|
TabName:null, |
|
|
|
|
} |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
TabName: null, |
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
created() { |
|
|
|
|
getMyCurrentWarehouse().then(res=>{ |
|
|
|
|
console.log(res,'初始化请求参数'); |
|
|
|
|
console.log(res.data.name,'仓库名称'); |
|
|
|
|
getMyCurrentWarehouse().then(res => { |
|
|
|
|
console.log(res, '初始化请求参数'); |
|
|
|
|
console.log(res.data.name, '仓库名称'); |
|
|
|
|
localStorage.setItem('WarehouseName', res.data.name); |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
if (this.userInfo.tenant_id == '000000') { |
|
|
|
@ -102,7 +99,6 @@ export default {
|
|
|
|
|
}, |
|
|
|
|
props: [], |
|
|
|
|
methods: { |
|
|
|
|
|
|
|
|
|
//打开菜单 |
|
|
|
|
openMenu(item = {}) { |
|
|
|
|
this.$store.dispatch('GetMenu', item.id).then(data => { |
|
|
|
@ -140,4 +136,17 @@ export default {
|
|
|
|
|
.el-card__body { |
|
|
|
|
padding: 10px !important; |
|
|
|
|
} |
|
|
|
|
// .font-day{ |
|
|
|
|
|
|
|
|
|
// } |
|
|
|
|
.el-popup-parent--hidden font:first-of-type { |
|
|
|
|
z-index: 99999999999; |
|
|
|
|
position: fixed; |
|
|
|
|
top: 3%; |
|
|
|
|
left: 50%; |
|
|
|
|
transform: translate(-50%, -50%); |
|
|
|
|
width: 100%; |
|
|
|
|
height: 5%; |
|
|
|
|
background-color: #fff; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|