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
c8245a34
Commit
c8245a34
authored
Jun 09, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增页面
parent
e0afda20
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
132 additions
and
0 deletions
+132
-0
WebSiteAbout.vue
src/components/WebSet/WebSiteAbout.vue
+25
-0
WebSiteCustomer.vue
src/components/WebSet/WebSiteCustomer.vue
+25
-0
WebSiteIndex.vue
src/components/WebSet/WebSiteIndex.vue
+25
-0
WebSiteTrip.vue
src/components/WebSet/WebSiteTrip.vue
+25
-0
config.js
src/router/config.js
+32
-0
No files found.
src/components/WebSet/WebSiteAbout.vue
0 → 100644
View file @
c8245a34
<
template
>
<!--關於我們(关于我们)-->
<div
class=
"WebSiteAbout"
>
关于我们
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
obj
:
{}
};
},
mounted
()
{
this
.
getData
();
},
methods
:
{
//获取配置
getData
()
{
}
}
}
</
script
>
src/components/WebSet/WebSiteCustomer.vue
0 → 100644
View file @
c8245a34
<
template
>
<!--自訂頁面(自订页面)-->
<div
class=
"WebSiteCustomer"
>
自订页面
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
obj
:
{}
};
},
mounted
()
{
this
.
getData
();
},
methods
:
{
//获取配置
getData
()
{
}
}
}
</
script
>
src/components/WebSet/WebSiteIndex.vue
0 → 100644
View file @
c8245a34
<
template
>
<!--首頁(首页)-->
<div
class=
"WebSiteIndex"
>
首页
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
obj
:
{}
};
},
mounted
()
{
this
.
getData
();
},
methods
:
{
//获取配置
getData
()
{
}
}
}
</
script
>
src/components/WebSet/WebSiteTrip.vue
0 → 100644
View file @
c8245a34
<
template
>
<!--行程內容頁(行程内容页)-->
<div
class=
"WebSiteTrip"
>
行程内容页
</div>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
obj
:
{}
};
},
mounted
()
{
this
.
getData
();
},
methods
:
{
//获取配置
getData
()
{
}
}
}
</
script
>
src/router/config.js
View file @
c8245a34
...
@@ -4521,6 +4521,38 @@ export default {
...
@@ -4521,6 +4521,38 @@ export default {
title
:
'搜索管理'
title
:
'搜索管理'
},
},
},
},
{
path
:
'/WebSiteAbout'
,
//前台网站关于我们【自定义前端网站】
name
:
'WebSiteAbout'
,
component
:
resolve
=>
require
([
'@/components/WebSet/WebSiteAbout'
],
resolve
),
meta
:
{
title
:
'关于我们'
},
},
{
path
:
'/WebSiteCustomer'
,
//前台网站自订页面【自定义前端网站】
name
:
'WebSiteCustomer'
,
component
:
resolve
=>
require
([
'@/components/WebSet/WebSiteCustomer'
],
resolve
),
meta
:
{
title
:
'自订页面'
},
},
{
path
:
'/WebSiteIndex'
,
//前台网站首页【自定义前端网站】
name
:
'WebSiteIndex'
,
component
:
resolve
=>
require
([
'@/components/WebSet/WebSiteIndex'
],
resolve
),
meta
:
{
title
:
'首页'
},
},
{
path
:
'/WebSiteTrip'
,
//前台网站行程内容【自定义前端网站】
name
:
'WebSiteTrip'
,
component
:
resolve
=>
require
([
'@/components/WebSet/WebSiteTrip'
],
resolve
),
meta
:
{
title
:
'行程内容页'
},
},
]
]
},
},
{
{
...
...
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