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
db8a449d
Commit
db8a449d
authored
Jun 23, 2020
by
罗超
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/viitto/million
parents
a237457b
b3665fe3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
610 additions
and
77 deletions
+610
-77
quasar.conf.js
quasar.conf.js
+1
-1
axios.js
src/boot/axios.js
+12
-0
utils.js
src/boot/utils.js
+83
-0
hor-big-tow.vue
src/components/navs/hor-big-tow.vue
+1
-1
hor-btm.vue
src/components/navs/hor-btm.vue
+428
-0
style8.vue
src/components/swiper/style8.vue
+24
-2
HomeLayout.vue
src/layouts/HomeLayout.vue
+61
-73
No files found.
quasar.conf.js
View file @
db8a449d
...
...
@@ -21,9 +21,9 @@ module.exports = function( /* ctx */ ) {
// --> boot files are part of "main.js"
// https://quasar.dev/quasar-cli/cli-documentation/boot-files
boot
:
[
'i18n'
,
'axios'
,
"utils"
],
ssr
:
{
pwa
:
true
,
...
...
src/boot/axios.js
View file @
db8a449d
import
Vue
from
'vue'
import
axios
from
'axios'
import
md5
from
'js-md5'
Vue
.
prototype
.
$axios
=
axios
export
default
({
app
})
=>
{
// Set i18n instance on app
app
.
axios
=
axios
}
export
{
axios
}
src/boot/utils.js
0 → 100644
View file @
db8a449d
import
Vue
from
'vue'
import
axios
from
'axios'
import
md5
from
'js-md5'
//域名管理对象
Vue
.
prototype
.
domainManager
=
function
()
{
let
domainUrl
=
''
;
domainUrl
=
"http://192.168.0.110"
;
let
locationName
=
window
.
location
.
hostname
;
if
(
locationName
.
indexOf
(
'testerp.oytour'
)
!==
-
1
)
{
domainUrl
=
"http://testapi.oytour.com"
;
}
else
if
(
locationName
.
indexOf
(
'oytour'
)
!==
-
1
)
{
domainUrl
=
"http://reborn.oytour.com"
;
}
var
obj
=
{
//主地址
DomainUrl
:
domainUrl
,
//常用提交数据URL
PostUrl
:
domainUrl
+
"/api/common/post"
,
};
return
obj
;
}
//HTTP提交数据
Vue
.
prototype
.
apipost
=
function
(
cmd
,
msg
,
successCall
,
faildCall
)
{
if
(
msg
==
null
||
msg
==
""
)
{
msg
=
{}
}
var
timestamp
=
(
new
Date
()).
valueOf
();
var
apiurl
=
this
.
domainManager
().
PostUrl
;
var
token
=
""
;
var
key
=
""
;
var
tempLanguage
=
0
;
if
(
this
.
getLocalStorage
()
!=
null
)
{
token
=
this
.
getLocalStorage
().
token
;
key
=
this
.
getLocalStorage
().
SecretKey
;
}
var
encodeMsg
=
encodeURIComponent
(
JSON
.
stringify
(
msg
)).
toLowerCase
();
var
md5Str
=
md5
(
`cmd=
${
cmd
}
&msg=
${
encodeMsg
}
×tamp=
${
timestamp
}
&token=
${
token
}
&key=
${
key
}
`
);
var
postData
=
{
msg
:
msg
,
cmd
:
cmd
,
timestamp
:
timestamp
,
token
:
token
,
sign
:
md5Str
,
languageId
:
tempLanguage
}
this
.
$axios
.
post
(
apiurl
,
postData
,
{
headers
:
{
'Content-Type'
:
'application/json'
,
'Referer-Viitto'
:
this
.
$route
.
path
}
})
.
then
(
res
=>
{
successCall
(
res
);
},
faildCall
)
}
//获取缓存
Vue
.
prototype
.
getLocalStorage
=
function
()
{
var
localStorageData
=
window
.
localStorage
[
"b2bUser"
];
if
(
localStorageData
!==
undefined
&&
localStorageData
!=
'undefined'
)
{
return
JSON
.
parse
(
localStorageData
);
}
else
{
return
null
;
}
}
//向外跳转
Vue
.
prototype
.
OpenNewUrl
=
function
(
URL
){
if
(
URL
!=
''
)
{
if
(
URL
.
indexOf
(
"https"
)
!=
-
1
)
{
var
str
=
'http://'
+
URL
.
substring
(
8
);
window
.
open
(
str
,
'_blank'
);
}
else
if
(
URL
.
indexOf
(
"http"
)
!=
-
1
)
{
var
str
=
'http://'
+
URL
.
substring
(
7
);
window
.
open
(
str
,
'_blank'
);
}
else
{
window
.
open
(
"http://"
+
URL
,
'_blank'
);
}
}
}
src/components/navs/hor-big-tow.vue
View file @
db8a449d
...
...
@@ -2,7 +2,7 @@
<q-header
reveal
elevated
:style=
"
{background:
'transparent'
,color:'#FFF'}"
:style=
"
{background:
baseData.nav.bg
,color:'#FFF'}"
height-hint="98"
>
<q-toolbar
style=
"height:60px;"
class=
"q-pr-lg q-pl-lg"
>
...
...
src/components/navs/hor-btm.vue
0 → 100644
View file @
db8a449d
This diff is collapsed.
Click to expand it.
src/components/swiper/style8.vue
View file @
db8a449d
<
style
>
.banner-style8
.Mymobile-only
{
display
:
none
;
}
@media
only
screen
and
(
max-width
:
820px
){
.banner-style8
.Mydesktop-only
{
display
:
none
;
}
.banner-style8
.Mymobile-only
{
display
:
block
;
}
}
.banner-style8
.MysearchDiv
{
position
:
absolute
;
width
:
100%
;
top
:
60%
;
}
</
style
>
<
template
>
<div
class=
"banner-style8"
>
<q-carousel
...
...
@@ -24,7 +42,7 @@
<div
class=
"title"
>
搜尋輪播淡出 - 大
</div>
<div
class=
"sub-title"
>
將您的夢變成一段真實的體驗,我們掌握今年冬季最受追捧的度假勝地,完成夢想就找我們
</div>
</div>
<div
class=
"desktop-only"
style=
"width: 760px
;"
>
<div
class=
"Mydesktop-only"
style=
"width: 760px;margin:auto
;"
>
<div
class=
"row"
>
<div
class=
"col-5"
style=
"width:calc(41.6667% - 22px)"
>
<q-input
...
...
@@ -228,7 +246,10 @@
</q-scroll-area>
</div>
</div>
<div
class=
"mobile-only"
style=
"width:100vw;"
>
</div>
<div
class=
"MysearchDiv"
>
<div
class=
"Mymobile-only"
style=
"width:100%;"
>
<q-input
filled
v-model=
"searchKey"
...
...
@@ -242,6 +263,7 @@
</
template
>
</q-input>
</div>
</div>
<popup
v-model=
"showPopup"
mode=
"top"
:safeAreaInsetBottom=
"true"
border-radius=
"5"
>
<div
class=
"chosen-box"
>
...
...
src/layouts/HomeLayout.vue
View file @
db8a449d
<
template
>
<q-layout
view=
"hHh lpr fFf"
>
<hor-big-one
v-if=
"headType==1"
:base-data=
"baseinfo"
ref=
"webhead"
></hor-big-one>
<hor-big-two
v-if=
"headType==2"
:base-data=
"baseinfo"
ref=
"webhead"
></hor-big-two>
<hor-big-two
v-if=
"headType==2"
:base-data=
"baseinfo"
ref=
"webhead"
></hor-big-two>
<q-page-container>
<router-view
/>
</q-page-container>
<q-footer
elevated
class=
"bg-grey-8 text-white"
style=
"position: unset;"
>
<q-toolbar>
<q-toolbar-title>
<q-avatar>
<img
src=
"https://cdn.quasar.dev/logo/svg/quasar-logo.svg"
/>
</q-avatar>
Title
</q-toolbar-title>
</q-toolbar>
<horBtm
:dataList=
"dataList"
></horBtm>
</q-footer>
</q-layout>
</
template
>
<
script
>
import
horBigOne
from
"../components/navs/hor-big-one"
;
import
horBigTwo
from
"../components/navs/hor-big-tow"
;
export
default
{
components
:
{
horBigOne
,
horBigTwo
},
data
()
{
return
{
leftDrawerOpen
:
false
,
baseinfo
:
{
logo
:
"https://de0s2vtm6rzpn.cloudfront.net/white_label/575/logo_1583290210_rsz.png"
,
name
:
"玩家旅遊"
,
nav
:
{
bg
:
"rgba(255,255,255,.95)"
,
color
:
"#222"
,
navs
:
[
{
title
:
"極上•深之旅"
,
url
:
"http://17658.byethost18.com/"
,
icon
:
""
},
{
title
:
"519住宿趣"
,
url
:
"http://winterfavor.byethost7.com/"
,
icon
:
""
},
{
title
:
"玩家旅遊論壇"
,
url
:
"https://www.facebook.com/papago17658/"
,
icon
:
""
},
{
title
:
"全球租車"
,
url
:
"https://yvonne.tripsaas.com/"
,
icon
:
""
},
{
title
:
"歐洲團體行程"
,
url
:
"https://yvonne.tripsaas.com/search/search_result?keyword=%E5%85%A8%E5%8D%80%20%E6%AD%90&type=area&from=2019-07-10&to=2020-01-06"
,
icon
:
""
},
{
title
:
"茸茸毛寵物用品商城"
,
url
:
"https://petsiloveyou.123web.tw/"
,
icon
:
""
}
]
import
horBigOne
from
"../components/navs/hor-big-one"
;
import
horBigTwo
from
"../components/navs/hor-big-tow"
;
import
horBtm
from
"../components/navs/hor-btm"
;
export
default
{
components
:
{
horBigOne
,
horBigTwo
,
horBtm
},
data
()
{
return
{
leftDrawerOpen
:
false
,
baseinfo
:
{
logo
:
""
,
name
:
""
,
nav
:
{
bg
:
""
,
color
:
"#222"
,
navs
:
[]
},
desc
:
"這是一家非常牛逼的旅遊網站"
},
desc
:
"這是一家非常牛逼的旅遊網站"
headType
:
0
,
dataList
:{}
};
},
created
()
{
this
.
$root
.
$on
(
'change-head-style'
,
param
=>
{
this
.
changeHeadHandler
(
param
);
this
.
getData
();
})
},
methods
:
{
changeHeadHandler
(
t
)
{
this
.
headType
=
t
;
},
headType
:
0
};
},
created
()
{
this
.
$root
.
$on
(
'change-head-style'
,
param
=>
{
this
.
changeHeadHandler
(
param
)
})
},
methods
:
{
changeHeadHandler
(
t
)
{
this
.
headType
=
t
;
}
},
};
getData
()
{
this
.
apipost
(
"ws_get_GetHomePage"
,
{
RB_Group_Id
:
2
},
res
=>
{
console
.
log
(
res
);
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
dataList
=
res
.
data
.
data
;
if
(
this
.
dataList
){
this
.
baseinfo
.
logo
=
this
.
dataList
.
Config
.
Logo
;
this
.
baseinfo
.
name
=
this
.
dataList
.
Config
.
Name
;
this
.
baseinfo
.
nav
.
navs
=
this
.
dataList
.
HeaderList
;
this
.
baseinfo
.
nav
.
bg
=
this
.
dataList
.
Config
.
BgColor
;
}
}
else
{
}
},
err
=>
{}
);
},
},
};
</
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