Commit db3da7e7 authored by zhengke's avatar zhengke

修改

parent e12ae0b6
......@@ -828,5 +828,15 @@ var tripUtils = {
);
}
},
//跳转至b2c about页面
GotoB2CAbout(B2BDomain){
if (B2BDomain) {
var url = "http://" + B2BDomain;
window.open(
url + "/#/About"
);
}
},
}
export default tripUtils;
<style>
.WebSiteAbout .WebSiteTopdiv {
/* text-align: right; */
margin: 10px 0;
width: 1080px;
display: flex;
......@@ -13,8 +12,11 @@
<!--关于我们-->
<div class="WebSiteAbout">
<div class="WebSiteTopdiv">
关于我们版面設定
<el-button type="primary" size="small" @click="saveData()">保存</el-button>
<div>关于我们版面設定</div>
<div>
<el-button type="primary" size="small" @click="saveData()">保存</el-button>
<el-button type="primary" size="small" @click="goAbout()">瀏覽頁面</el-button>
</div>
</div>
<div>
<WebSiteEdit ref="WebSiteEdit" :templateData="postMsg.HomeDataList"
......@@ -31,11 +33,16 @@
postMsg: {
Id: 0,
AboutDataList: [],
//当前登录用户信息
CurrentUserInfo: {},
}
};
},
mounted() {
this.getData();
let userInfo = this.getLocalStorage();
this.CurrentUserInfo = userInfo;
},
components: {
WebSiteEdit
......@@ -82,6 +89,11 @@
//获取模板数据
getNewTemplateData(templateDataList) {
this.postMsg.AboutDataList = templateDataList;
},
//跳转至预览
goAbout(){
var B2BDomain = this.CurrentUserInfo.B2BDomain;
this.$tripUtils.GotoB2CAbout(B2BDomain);
}
}
}
......
......@@ -82,7 +82,10 @@
<div class="layout_preview_inner">
<div class="layout_box_header">
<h1 class="layout_box_title">行程內容頁 功能開關</h1>
<el-button type="primary" size="small" @click="saveData()" style="float:right;margin-top:-6px;">保存</el-button>
<div style="float:right;margin-top:-6px;">
<el-button type="primary" size="small" @click="saveData()">保存</el-button>
<el-button type="primary" size="small" @click="goTripList()">預覽</el-button>
</div>
</div>
<div class="layout_preview_list">
<div class="layout_temp_item">
......@@ -316,10 +319,13 @@
postMsg: {
Id: 0,
//行程数据
}
},
CurrentUserInfo:{}
};
},
mounted() {
let userInfo = this.getLocalStorage();
this.CurrentUserInfo = userInfo;
this.getData();
},
methods: {
......@@ -436,6 +442,11 @@
err => {}
);
},
//预览b2b行程
goTripList(){
var B2BDomain = this.CurrentUserInfo.B2BDomain;
window.open(this.$tripUtils.GetB2BUrl(B2BDomain,0,10101));
},
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment