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
d03df6c7
Commit
d03df6c7
authored
Jun 24, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
c98bba05
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
125 additions
and
11 deletions
+125
-11
About.vue
src/pages/About.vue
+1
-1
contract.vue
src/pages/contract.vue
+48
-5
tour_visa.vue
src/pages/tour_visa.vue
+76
-5
No files found.
src/pages/About.vue
View file @
d03df6c7
<
template
>
<q-page>
<div>
关于我们
{{
AboutData
}}
</div>
</q-page>
...
...
src/pages/contract.vue
View file @
d03df6c7
<
style
scoped
>
.contract
{
padding-top
:
70px
;
padding-bottom
:
40px
;
width
:
100%
;
max-width
:
1200px
;
margin
:
0
auto
;
padding
:
0
20px
;
}
.contract
.title
{
font-size
:
25px
;
}
</
style
>
<
template
>
<div>
合约书下载
<q-page>
<div
class=
"contract"
>
<h1
class=
"title"
>
旅遊合約書下載
</h1>
<ul
class=
"download-block"
>
<li
v-for=
"(item,index) in ContractList"
:key=
"index"
>
<a
:href=
"item.Url"
target=
"_blank"
>
<i
class=
"material-icons"
>
</i>
<p>
{{
item
.
Name
}}
</p>
</a></li>
</ul>
</div>
</q-page>
</
template
>
<
script
>
export
default
{
props
:
[],
data
()
{
return
{
RB_Group_Id
:
0
,
ContractList
:
[],
};
},
created
()
{},
created
()
{
var
jObj
=
JSON
.
parse
(
window
.
localStorage
.
getItem
(
'groupinfo'
));
this
.
RB_Group_Id
=
jObj
.
GroupId
;
},
mounted
()
{
this
.
getContract
();
},
methods
:
{
getContract
()
{
this
.
apipost
(
"ws_get_GetContractPage"
,
{
RB_Group_Id
:
this
.
RB_Group_Id
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
data
)
{
this
.
ContractList
=
res
.
data
.
data
;
}
}
},
err
=>
{}
);
}
},
};
...
...
src/pages/tour_visa.vue
View file @
d03df6c7
<
style
scoped
>
.tour_visa
{
padding-top
:
70px
;
padding-bottom
:
40px
;
width
:
100%
;
max-width
:
1200px
;
margin
:
0
auto
;
padding
:
0
20px
;
}
.tour_visa
.title
{
font-size
:
25px
;
}
</
style
>
<
template
>
<div>
护照签证费用说明
<q-page>
<div
class=
"tour_visa"
>
<h1
class=
"title"
>
護照簽證費用說明
</h1>
<table>
<thead>
<tr>
<th>
項目
</th>
<th>
工作天
</th>
<th>
證件效期
</th>
<th>
可停留天數
</th>
<th>
辦證費用
</th>
<th>
備註
</th>
</tr>
</thead>
<tbody>
<tr
v-for=
"(item,index) in CertificateList"
:key=
"index"
>
<td>
{{
item
.
Name
}}
</td>
<td>
{{
item
.
WorkDay
}}
</td>
<td>
{{
item
.
Validity
}}
</td>
<td>
{{
item
.
StayDay
}}
</td>
<td>
{{
item
.
Fee
}}
</td>
<td>
{{
item
.
Notice
}}
</td>
</tr>
</tbody>
</table>
</div>
</q-page>
</
template
>
<
script
>
export
default
{
props
:
[],
data
()
{
return
{
RB_Group_Id
:
0
,
CertificateList
:
[],
};
},
created
()
{},
created
()
{
var
jObj
=
JSON
.
parse
(
window
.
localStorage
.
getItem
(
'groupinfo'
));
this
.
RB_Group_Id
=
jObj
.
GroupId
;
},
mounted
()
{
this
.
getCertificate
();
},
methods
:
{
getCertificate
()
{
this
.
apipost
(
"ws_get_GetTourVisaPage"
,
{
RB_Group_Id
:
this
.
RB_Group_Id
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
if
(
res
.
data
.
data
)
{
this
.
CertificateList
=
res
.
data
.
data
;
}
}
},
err
=>
{}
);
}
},
};
...
...
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