Commit e0afda20 authored by 黄奎's avatar 黄奎

新增页面

parent ecb92de0
<template>
<!--廣告版面管理(广告管理)-->
<div class="WebSiteAdmanage">
广告管理
</div>
</template>
<script>
export default {
data() {
return {
obj: {}
};
},
mounted() {
this.getData();
},
methods: {
//获取配置
getData() {
}
}
}
</script>
<template>
<!--護照簽證資料(护照签证管理)-->
<div class="WebSiteCertificate">
护照签证管理
</div>
</template>
<script>
export default {
data() {
return {
obj: {}
};
},
mounted() {
this.getData();
},
methods: {
//获取配置
getData() {
}
}
}
</script>
<template>
<!--网站设定(网站设置)-->
<div class="WebSiteConfig">
<div class="BasicSet">
基本设置
<br />
网站名称 <el-input></el-input>
</div>
<div class="BasicInfo">
旅行社基本資料
<br />
网站名称 <el-input></el-input>
</div>
</div>
</template>
<script>
export default {
data() {
return {
//旅行社类型
travelAgencyType: [{
Id: 1,
Name: "甲種旅行社"
},
{
Id: 2,
Name: "乙種旅行社"
},
{
Id: 3,
Name: "綜合旅行社"
},
],
//
SaleSeatType: [{
}]
};
},
mounted() {
this.getData();
},
methods: {
//获取配置
getData() {
}
}
}
</script>
<template>
<!--契约管理(合同管理)-->
<div class="WebSiteContract">
契约管理
</div>
</template>
<script>
export default {
data() {
return {
obj: {}
};
},
mounted() {
this.getData();
},
methods: {
//获取配置
getData() {
}
}
}
</script>
<template>
<!--前台搜尋設定(前台搜索设置)-->
<div class="WebSiteSearch">
<div class="BasicSet">
热门关键字
<br />
</div>
</div>
</template>
<script>
export default {
data() {
return {
searchObj: {},
};
},
mounted() {
this.getData();
},
methods: {
//获取配置
getData() {
}
}
}
</script>
This source diff could not be displayed because it is too large. You can view the blob instead.
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