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
7b28d2f0
Commit
7b28d2f0
authored
Feb 21, 2023
by
沈良进
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接机,包车页面开发
parent
1b7cc065
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1602 additions
and
154 deletions
+1602
-154
search_sf2.vue
src/components/search_sf/search_sf2.vue
+1
-1
kkday.vue
src/components/searchdata/kkday.vue
+7
-0
app.scss
src/css/app.scss
+9
-0
detailsCar.vue
src/pages/detailsCar.vue
+1190
-0
detailsNew.vue
src/pages/detailsNew.vue
+389
-151
routes.js
src/router/routes.js
+6
-2
No files found.
src/components/search_sf/search_sf2.vue
View file @
7b28d2f0
...
...
@@ -178,7 +178,7 @@
</div>
<div
class=
"text-weight-bold q-pa-sm"
>
熱門目的地
</div>
<q-separator
/>
<div>
<div
class=
"flex flex-wrap"
>
<div
class=
"hot-tag"
@
click=
"handleHotTagClick(item)"
:class=
"{'hot-tag-select': setectHotTag === item.Id}"
:key=
"item.Id"
v-for=
"item in hotList"
>
{{item.Name}}
</div>
</div>
<!-- <div class="col full-width row">
...
...
src/components/searchdata/kkday.vue
View file @
7b28d2f0
...
...
@@ -756,6 +756,13 @@ export default {
);
},
GotoDetails
(
item
)
{
if
(
item
.
productType
===
4
)
{
// 接送机,包车
this
.
CommonJump
(
"/detailCar/"
+
item
.
configId
,
{}
);
return
}
this
.
CommonJump
(
"/detail/"
+
encodeURIComponent
(
item
.
id
)
+
"/"
+
item
.
tcid
,
{}
...
...
src/css/app.scss
View file @
7b28d2f0
...
...
@@ -5,6 +5,9 @@
.justify-between
{
justify-content
:
space-between
;
}
.flex-end
{
justify-content
:
end
;
}
.item-center
{
align-items
:
center
;
}
...
...
@@ -87,6 +90,12 @@
.f16
{
font-size
:
16px
;
}
.f18
{
font-size
:
18px
;
}
.f20
{
font-size
:
20px
;
}
.f26
{
font-size
:
26px
;
}
...
...
src/pages/detailsCar.vue
0 → 100644
View file @
7b28d2f0
This diff is collapsed.
Click to expand it.
src/pages/detailsNew.vue
View file @
7b28d2f0
This diff is collapsed.
Click to expand it.
src/router/routes.js
View file @
7b28d2f0
...
...
@@ -28,10 +28,14 @@ const routes = [{
path
:
'/details/:id/:tcid'
,
component
:
()
=>
import
(
'pages/details.vue'
)
},
{
//行程2
},
{
// 包车,接机
path
:
'/detailCar/:id'
,
component
:
()
=>
import
(
'pages/detailsCar.vue'
)
},
{
// 旅程
path
:
'/detail/:id/:tcid'
,
component
:
()
=>
import
(
'pages/details
New
.vue'
)
import
(
'pages/details
Car
.vue'
)
},
{
path
:
'/search'
,
//签证护照管理
component
:
()
=>
...
...
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