Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
million
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
viitto
million
Commits
6981d7f1
Commit
6981d7f1
authored
Jun 24, 2020
by
zhengke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加页面
parent
427abb33
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
77 additions
and
2 deletions
+77
-2
utils.js
src/boot/utils.js
+10
-1
hor-btm.vue
src/components/navs/hor-btm.vue
+1
-1
About.vue
src/pages/About.vue
+22
-0
contract.vue
src/pages/contract.vue
+22
-0
tour_visa.vue
src/pages/tour_visa.vue
+22
-0
No files found.
src/boot/utils.js
View file @
6981d7f1
...
...
@@ -68,7 +68,7 @@ Vue.prototype.getLocalStorage = function () {
}
//向外跳转
Vue
.
prototype
.
OpenNewUrl
=
function
(
URL
){
Vue
.
prototype
.
OpenNewUrl
=
function
(
URL
)
{
if
(
URL
!=
''
)
{
if
(
URL
.
indexOf
(
"https"
)
!=
-
1
)
{
var
str
=
'http://'
+
URL
.
substring
(
8
);
...
...
@@ -81,3 +81,12 @@ Vue.prototype.OpenNewUrl = function (URL){
}
}
}
//公用跳转
Vue
.
prototype
.
CommonJump
=
function
(
path
,
obj
)
{
console
.
log
(
path
,
'path'
);
this
.
$router
.
push
({
name
:
path
,
query
:
obj
});
}
src/components/navs/hor-btm.vue
View file @
6981d7f1
...
...
@@ -275,7 +275,7 @@
<ul
class=
"hor_footuu"
>
<li>
{{
dataList
.
Config
.
Name
}}
</li>
<li
class=
"other_li"
v-for=
"(item,index) in dataList.FooterList"
:key=
"index"
>
<a
:href=
"item.Url"
target=
"_blank
"
>
{{
item
.
title
}}
</a>
<a
@
click=
"CommonJump(item.url,
{})
">
{{
item
.
title
}}
</a>
</li>
</ul>
</div>
...
...
src/pages/About.vue
0 → 100644
View file @
6981d7f1
<
template
>
<div>
关于我们
</div>
</
template
>
<
script
>
export
default
{
props
:
[],
data
()
{
return
{
};
},
created
()
{},
mounted
()
{
},
methods
:
{
},
};
</
script
>
src/pages/contract.vue
0 → 100644
View file @
6981d7f1
<
template
>
<div>
合约书下载
</div>
</
template
>
<
script
>
export
default
{
props
:
[],
data
()
{
return
{
};
},
created
()
{},
mounted
()
{
},
methods
:
{
},
};
</
script
>
src/pages/tour_visa.vue
0 → 100644
View file @
6981d7f1
<
template
>
<div>
护照签证费用说明
</div>
</
template
>
<
script
>
export
default
{
props
:
[],
data
()
{
return
{
};
},
created
()
{},
mounted
()
{
},
methods
:
{
},
};
</
script
>
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