|
|
<template>
|
|
|
<LayoutBody>
|
|
|
<IFrame :src="iframeUrl"></IFrame>
|
|
|
请在新页面查看
|
|
|
</LayoutBody>
|
|
|
</template>
|
|
|
<script>
|
|
|
import _ from 'lodash';
|
|
|
import shopService from 'shop-service';
|
|
|
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
iframeUrl: ''
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
|
shopService.findShopsDecorator().then(result => {
|
|
|
let shop = _.get(result, 'data.list[0]');
|
|
|
|
|
|
if (shop) {
|
|
|
this.iframeUrl = `http://shops.yohobuy.com:30016/supplier/shop/decorationDetail/${shop.shopsId}/${shop.shopsType}/editor/${shop.id}/`;
|
|
|
window.open(`http://shops.yohobuy.com:30016/supplier/shop/decorationDetail/${shop.shopsId}/${shop.shopsType}/editor/${shop.id}/`);
|
|
|
}
|
|
|
});
|
|
|
}
|
...
|
...
|
|