Commit d03df6c7 authored by 黄奎's avatar 黄奎

页面修改

parent c98bba05
<template> <template>
<q-page> <q-page>
<div> <div>
关于我们 {{AboutData}}
</div> </div>
</q-page> </q-page>
......
<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> <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> </div>
</q-page>
</template> </template>
<script> <script>
export default { export default {
props: [], props: [],
data() { data() {
return { return {
RB_Group_Id: 0,
ContractList: [],
}; };
}, },
created() {}, created() {
var jObj = JSON.parse(window.localStorage.getItem('groupinfo'));
this.RB_Group_Id = jObj.GroupId;
},
mounted() { mounted() {
this.getContract();
}, },
methods: { 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 => {}
);
}
}, },
}; };
......
<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> <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> </div>
</q-page>
</template> </template>
<script> <script>
export default { export default {
props: [], props: [],
data() { data() {
return { return {
RB_Group_Id: 0,
CertificateList: [],
}; };
}, },
created() {}, created() {
var jObj = JSON.parse(window.localStorage.getItem('groupinfo'));
this.RB_Group_Id = jObj.GroupId;
},
mounted() { mounted() {
this.getCertificate();
}, },
methods: { 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 => {}
);
}
}, },
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment