|
|
|
|
@ -73,6 +73,13 @@
|
|
|
|
|
<iframe ref="oldIframe" :src="oldUrl">你的浏览器不支持该iframe</iframe>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else-if="$route.path === '/goods'">
|
|
|
|
|
<div
|
|
|
|
|
style="width: 100%; height: 100%; padding-top: 50px; overflow-x: hidden"
|
|
|
|
|
>
|
|
|
|
|
<iframe ref="goodsIframe" :src="goodsUrl">你的浏览器不支持该iframe</iframe>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else>
|
|
|
|
|
<sidebar class="sidebar-container" />
|
|
|
|
|
<div class="main-container">
|
|
|
|
|
@ -108,6 +115,7 @@ export default {
|
|
|
|
|
bookUrl: process.env.VUE_APP_OUT_Book,
|
|
|
|
|
gdzcUrl: `${process.env.VUE_APP_OUT_GDZC}/member/oss_login?id=${this.$store.state.user.userId}&username=${this.$store.state.user.username}`,
|
|
|
|
|
oldUrl: `${process.env.VUE_APP_OUT_OLD}/login/oss_login?id=${this.$store.state.user.userId}&username=${this.$store.state.user.username}`,
|
|
|
|
|
goodsUrl: `${process.env.VUE_APP_OUT_GOODS}/admin/oss-login?id=${this.$store.state.user.userId}&username=${this.$store.state.user.username}`,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
|