Commit db3da7e7 authored by zhengke's avatar zhengke

修改

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