Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
db3da7e7
Commit
db3da7e7
authored
Jul 09, 2020
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
parent
e12ae0b6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
5 deletions
+38
-5
tripUtils.js
src/assets/utils/tripUtils.js
+10
-0
WebSiteAbout.vue
src/components/WebSet/WebSiteAbout.vue
+15
-3
WebSiteTrip.vue
src/components/WebSet/WebSiteTrip.vue
+13
-2
No files found.
src/assets/utils/tripUtils.js
View file @
db3da7e7
...
...
@@ -828,5 +828,15 @@ var tripUtils = {
);
}
},
//跳转至b2c about页面
GotoB2CAbout
(
B2BDomain
){
if
(
B2BDomain
)
{
var
url
=
"http://"
+
B2BDomain
;
window
.
open
(
url
+
"/#/About"
);
}
},
}
export
default
tripUtils
;
src/components/WebSet/WebSiteAbout.vue
View file @
db3da7e7
<
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
);
}
}
}
...
...
src/components/WebSet/WebSiteTrip.vue
View file @
db3da7e7
...
...
@@ -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
));
},
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment