Commit 3ca9fed3 authored by 黄奎's avatar 黄奎

页面修改

parent 4858a214
...@@ -4,28 +4,28 @@ ...@@ -4,28 +4,28 @@
<h2 class="block-title q-mb-lg">專人服務</h2> <h2 class="block-title q-mb-lg">專人服務</h2>
<q-form @submit="onSubmit" class="q-gutter-md"> <q-form @submit="onSubmit" class="q-gutter-md">
<div class="row q-gutter-xl desktop-only q-mb-lg q-pl-md"> <div class="row q-gutter-xl desktop-only q-mb-lg q-pl-md">
<q-input filled v-model="params.name" label="如何稱呼您" class="col" lazy-rules <q-input filled v-model="params.Name" label="如何稱呼您" class="col" lazy-rules
:rules="[ val => val && val.length > 0 || '請填寫您的稱呼']" /> :rules="[ val => val && val.length > 0 || '請填寫您的稱呼']" />
<q-input filled v-model="params.phone" label="聯絡電話" class="col" lazy-rules <q-input filled v-model="params.Mobile" label="聯絡電話" class="col" lazy-rules
:rules="[ val => val && val.length > 0 || '請填寫您的聯絡電話哦']" /> :rules="[ val => val && val.length > 0 || '請填寫您的聯絡電話哦']" />
</div> </div>
<div class="row mobile-only q-mb-lg"> <div class="row mobile-only q-mb-lg">
<q-input filled v-model="params.name" label="如何稱呼您" class="col" lazy-rules <q-input filled v-model="params.Name" label="如何稱呼您" class="col" lazy-rules
:rules="[ val => val && val.length > 0 || '請填寫您的稱呼']" /> :rules="[ val => val && val.length > 0 || '請填寫您的稱呼']" />
</div> </div>
<div class="row mobile-only q-mb-lg"> <div class="row mobile-only q-mb-lg">
<q-input filled v-model="params.phone" label="聯絡電話" class="col" lazy-rules <q-input filled v-model="params.Mobile" label="聯絡電話" class="col" lazy-rules
:rules="[ val => val && val.length > 0 || '請填寫您的聯絡電話哦']" /> :rules="[ val => val && val.length > 0 || '請填寫您的聯絡電話哦']" />
</div> </div>
<div class="row q-mb-lg"> <div class="row q-mb-lg">
<q-input filled v-model="params.eMail" label="聯絡E-Mail" type="email" class="col" lazy-rules <q-input filled v-model="params.EMail" label="聯絡E-Mail" type="email" class="col" lazy-rules
:rules="[ val => val && val.length > 0 || '請填寫您的聯絡E-Mail哦']" /> :rules="[ val => val && val.length > 0 || '請填寫您的聯絡E-Mail哦']" />
</div> </div>
<div class="row q-mb-lg"> <div class="row q-mb-lg">
<q-input filled v-model="params.remark" label="備註" class="col" type="textarea" /> <q-input filled v-model="params.Remarks" label="備註" class="col" type="textarea" />
</div> </div>
<div class="row q-mb-lg"> <div class="row q-mb-lg">
<q-btn type="submit" unelevated color="primary" size="lg" label="送出" class="col" /> <q-btn type="submit" unelevated color="primary" size="lg" label="送出" class="col" @click="onSubmit" />
</div> </div>
</q-form> </q-form>
</div> </div>
...@@ -37,21 +37,36 @@ ...@@ -37,21 +37,36 @@
data() { data() {
return { return {
params: { params: {
name: "", Name: "",
phone: "", Mobile: "",
eMail: "", EMail: "",
remark: "" Remarks: "",
RB_Group_Id: 0,
} }
}; };
}, },
methods: { methods: {
onSubmit() { onSubmit() {
this.$q.notify({ var jObj = JSON.parse(window.localStorage.getItem('groupinfo'));
color: "green-4", this.params.RB_Group_Id = jObj.GroupId;
textColor: "white", this.apipost(
icon: "cloud_done", "ws_post_SetService", this.params,
message: "提交成功" res => {
}); if (res.data.resultCode == 1) {
this.params.Name = '';
this.params.Mobile = '';
this.params.EMail = '';
this.params.Remarks = '';
this.$q.notify({
color: "green-4",
textColor: "white",
icon: "cloud_done",
message: "提交成功"
});
}
},
err => {}
);
} }
} }
}; };
......
...@@ -273,7 +273,7 @@ ...@@ -273,7 +273,7 @@
<div class="footer-top"> <div class="footer-top">
<div class="footer-link"> <div class="footer-link">
<ul class="hor_footuu"> <ul class="hor_footuu">
<li>{{dataList.Config.Name}}</li> <li><a @click="CommonJump('/index',{})">{{dataList.Config.Name}}</a></li>
<li class="other_li" v-for="(item,index) in dataList.FooterList" :key="index"> <li class="other_li" v-for="(item,index) in dataList.FooterList" :key="index">
<a @click="CommonJump(item.url,{})">{{item.title}}</a> <a @click="CommonJump(item.url,{})">{{item.title}}</a>
</li> </li>
......
...@@ -234,7 +234,6 @@ ...@@ -234,7 +234,6 @@
data() { data() {
return { return {
slide: 0, slide: 0,
searchKey: "", searchKey: "",
searchDate: "", searchDate: "",
searchEndDate: "", searchEndDate: "",
......
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
dataList: {}, dataList: {},
//集团编号 //集团编号
RB_Group_Id: 0, RB_Group_Id: 0,
}; };
}, },
created() { created() {
...@@ -47,23 +48,24 @@ ...@@ -47,23 +48,24 @@
}) })
}, },
mounted() { mounted() {
localStorage.clear();
//获取集团数据 //获取集团数据
if (localStorage.baseifo) { if (localStorage.baseifo) {
var jObj = JSON.parse(window.localStorage.getItem('groupinfo')); var jObj = JSON.parse(window.localStorage.getItem('groupinfo'));
this.RB_Group_Id = jObj.GroupId; this.RB_Group_Id = jObj.GroupId;
} else { } else {
this.getGroupData(); this.getGroupData();
} //获取网站基础配置
//获取网站基础配置 if (localStorage.baseifo) {
if (localStorage.baseifo) { var jObj = JSON.parse(window.localStorage.getItem('baseifo'));
var jObj = JSON.parse(window.localStorage.getItem('baseifo')); this.baseinfo.logo = jObj.Config.Logo;
this.baseinfo.logo = jObj.Config.Logo; this.baseinfo.name = jObj.Config.Name;
this.baseinfo.name = jObj.Config.Name; this.baseinfo.nav.navs = jObj.HeaderList;
this.baseinfo.nav.navs = jObj.HeaderList; this.baseinfo.nav.bg = jObj.Config.BgColor;
this.baseinfo.nav.bg = jObj.Config.BgColor; this.dataList = jObj;
this.dataList=jObj; } else {
} else { this.getConfigData();
this.getData(); }
} }
}, },
methods: { methods: {
...@@ -81,6 +83,7 @@ ...@@ -81,6 +83,7 @@
"admin_get_GetGroupDomain", msg, "admin_get_GetGroupDomain", msg,
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.RB_Group_Id = res.data.data.GroupId;
var jsonData = JSON.stringify(res.data.data); var jsonData = JSON.stringify(res.data.data);
window.localStorage.setItem("groupinfo", jsonData); window.localStorage.setItem("groupinfo", jsonData);
} }
...@@ -88,10 +91,13 @@ ...@@ -88,10 +91,13 @@
err => {} err => {}
); );
}, },
getData() { //获取网站配置数据
getConfigData() {
let locationName = window.location.hostname;
this.apipost( this.apipost(
"ws_get_GetWebSiteConfig", { "ws_get_GetWebSiteConfig", {
RB_Group_Id: this.RB_Group_Id RB_Group_Id: this.RB_Group_Id,
B2BDomain: locationName
}, },
res => { res => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
......
...@@ -99,11 +99,11 @@ ...@@ -99,11 +99,11 @@
</template> </template>
<script> <script>
//出團表 group -Start //出團表 group -Start
import travelList from "../components/group/travel-list"; import travelList from "../components/group/travel-list";
//出團表 group -End //出團表 group -End
//搜尋區塊(輪播橫)search_s -Start //搜尋區塊(輪播橫)search_s -Start
import searchs1 from "../components/search_s/search_s1"; import searchs1 from "../components/search_s/search_s1";
import searchs2 from "../components/search_s/search_s2"; import searchs2 from "../components/search_s/search_s2";
import searchs3 from "../components/search_s/search_s3"; import searchs3 from "../components/search_s/search_s3";
//搜尋區塊(輪播橫)search_s -End //搜尋區塊(輪播橫)search_s -End
...@@ -236,10 +236,11 @@ ...@@ -236,10 +236,11 @@
}; };
}, },
created() { created() {
var jObj = JSON.parse(window.localStorage.getItem('groupinfo'));
this.RB_Group_Id = jObj.GroupId;
}, },
mounted() { mounted() {
var jObj = JSON.parse(window.localStorage.getItem('groupinfo'));
this.RB_Group_Id = jObj.GroupId;
this.getAbout(); this.getAbout();
}, },
methods: { methods: {
...@@ -252,7 +253,6 @@ ...@@ -252,7 +253,6 @@
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
if (res.data.data) { if (res.data.data) {
this.AboutData = res.data.data; this.AboutData = res.data.data;
console.log("AboutData", this.AboutData);
} }
} }
}, },
......
<template> <template>
<q-page> <q-page>
<head-style1 v-if="styleType==1"></head-style1> <template v-for="(item,index) in HomeData">
<head-style2 v-if="styleType==2"></head-style2> <div :key="index">
<head-style3 v-if="styleType==3"></head-style3> <!--自訂版型(影片)-->
<head-style4 v-if="styleType==4"></head-style4> <videoOne v-if="item.Id=='white_label_video'&&item.plugData.Type==1" :plugData="item.plugData"></videoOne>
<head-style5 v-if="styleType==5"></head-style5> <videoTwo v-if="item.Id=='white_label_video'&&item.plugData.Type==2" :plugData="item.plugData"></videoTwo>
<head-style6 v-if="styleType==6"></head-style6> <!--自訂版型(圖片)和挑選自有行程(圖片)-->
<head-style7 v-if="styleType==7"></head-style7> <diyImgOne v-if="item.Id=='white_label_picture'&&item.plugData.Type==1" :plugData="item.plugData"></diyImgOne>
<head-style8 v-if="styleType==8"></head-style8> <diyImgTwo v-if="item.Id=='white_label_picture'&&item.plugData.Type==2" :plugData="item.plugData"></diyImgTwo>
<head-style9 v-if="styleType==9"></head-style9> <diyImgThree v-if="item.Id=='white_label_picture'&&item.plugData.Type==3" :plugData="item.plugData">
<head-style10 v-if="styleType==10"></head-style10> </diyImgThree>
<head-style11 v-if="styleType==11"></head-style11> <diyImgFour v-if="item.Id=='white_label_picture'&&item.plugData.Type==4" :plugData="item.plugData"></diyImgFour>
<video-one></video-one> <diyImgFive v-if="item.Id=='white_label_picture'&&item.plugData.Type==5" :plugData="item.plugData"></diyImgFive>
<!-- <video-two></video-two> --> <diyImgSix v-if="item.Id=='white_label_picture'&&item.plugData.Type==6" :plugData="item.plugData"></diyImgSix>
<diy-img-one></diy-img-one> <!--自訂版型(QRcode)white_label_qrcode-->
<diy-img-two></diy-img-two> <qrLeft v-if="item.Id=='white_label_qrcode'&&item.plugData.Type==1" :plugData="item.plugData"></qrLeft>
<diy-title></diy-title> <qrRight v-if="item.Id=='white_label_qrcode'&&item.plugData.Type==2" :plugData="item.plugData"></qrRight>
<paragraph></paragraph> <!--自訂版型(其他)white_label_other -Start-->
<!-- <swiper-big></swiper-big> --> <empty v-if="item.Id=='white_label_other'&&item.plugData.Type==1" :plugData="item.plugData"></empty>
<swiper-small></swiper-small> <downloadTable v-if="item.Id=='white_label_other'&&item.plugData.Type==2" :plugData="item.plugData">
<empty></empty> </downloadTable>
<diy-img-three></diy-img-three> <diyTitle v-if="item.Id=='white_label_other'&&item.plugData.Type==3" :plugData="item.plugData"></diyTitle>
<diy-img-four></diy-img-four> <paragraph v-if="item.Id=='white_label_other'&&item.plugData.Type==4" :plugData="item.plugData"></paragraph>
<diy-img-five></diy-img-five> <photo v-if="item.Id=='white_label_other'&&item.plugData.Type==5" :plugData="item.plugData"></photo>
<diy-img-six></diy-img-six> <!--待完善-->
<qr-left></qr-left> <diyForm v-if="item.Id=='white_label_other'&&item.plugData.Type==6" :plugData="item.plugData"> </diyForm>
<!-- <qr-right></qr-right> -->
<about-center></about-center> <!--自訂版型(背景圖)white_label_background_article-->
<!-- <about-left></about-left> <bgArticleLeft v-if="item.Id=='white_label_background_article'&&item.plugData.Type==1"
<about-right></about-right> --> :plugData="item.plugData"></bgArticleLeft>
<!-- <paragraph1></paragraph1> --> <bgArticleRight v-if="item.Id=='white_label_background_article'&&item.plugData.Type==2"
<!-- <paragraph2></paragraph2> --> :plugData="item.plugData"></bgArticleRight>
<paragraph3></paragraph3> <bgArticleCenter v-if="item.Id=='white_label_background_article'&&item.plugData.Type==3"
<!-- <paragraph-left></paragraph-left> --> :plugData="item.plugData"></bgArticleCenter>
<!-- <paragraph-right></paragraph-right> --> <!--自訂版型(段落標題)-->
<paragraph-after></paragraph-after> <paragraph1 v-if="item.Id=='white_label_paragraph_title'&&item.plugData.Type==1" :plugData="item.plugData">
<!-- <plink-left></plink-left> --> </paragraph1>
<plink-right></plink-right> <paragraph2 v-if="item.Id=='white_label_paragraph_title'&&item.plugData.Type==2" :plugData="item.plugData">
<!-- <ilink-left></ilink-left> --> </paragraph2>
<ilink-right></ilink-right> <paragraph3 v-if="item.Id=='white_label_paragraph_title'&&item.plugData.Type==3" :plugData="item.plugData">
<download-table></download-table> </paragraph3>
<photo></photo> <paragraphleft v-if="item.Id=='white_label_paragraph_title'&&item.plugData.Type==4" :plugData="item.plugData">
<diy-form></diy-form> </paragraphleft>
<paragraphright v-if="item.Id=='white_label_paragraph_title'&&item.plugData.Type==5" :plugData="item.plugData">
</paragraphright>
<paragraphafter v-if="item.Id=='white_label_paragraph_title'&&item.plugData.Type==6" :plugData="item.plugData">
</paragraphafter>
<!--自訂版型(段落連結)和挑選自有行程(段落連結) white_label_link_paragraph和b2b_LinkP -->
<plinkLeft v-if="(item.Id=='white_label_link_paragraph'||item.Id=='b2b_LinkP')&&item.plugData.Type==1"
:plugData="item.plugData"></plinkLeft>
<plinkRight v-if="(item.Id=='white_label_link_paragraph'||item.Id=='b2b_LinkP')&&item.plugData.Type==2"
:plugData="item.plugData"></plinkRight>
<!--自訂版型(圖片連結)和挑選自有行程(圖片連結)white_label_link_picture和b2b_LinkPicture-->
<ilinkLeft v-if="(item.Id=='white_label_link_picture'||item.Id=='b2b_LinkPicture')&&item.plugData.Type==1"
:plugData="item.plugData"></ilinkLeft>
<ilinkRight v-if="(item.Id=='white_label_link_picture'||item.Id=='b2b_LinkPicture')&&item.plugData.Type==2"
:plugData="item.plugData"></ilinkRight>
<!--自訂版型(輪播圖)white_label_slider-->
<sliderBig v-if="item.Id=='white_label_slider'&&item.plugData.Type==1" :plugData="item.plugData"></sliderBig>
<sliderSmall v-if="item.Id=='white_label_slider'&&item.plugData.Type==2" :plugData="item.plugData">
</sliderSmall>
<!--出团表-->
<!--挑选自有行程(图片)b2b -->
<diyImgOne v-if="item.Id=='b2b'&&item.plugData.Type==1" :plugData="item.plugData"></diyImgOne>
<diyImgTwo v-if="item.Id=='b2b'&&item.plugData.Type==2" :plugData="item.plugData"></diyImgTwo>
<diyImgFour v-if="item.Id=='b2b'&&item.plugData.Type==3" :plugData="item.plugData"></diyImgFour>
<diyImgSix v-if="item.Id=='b2b'&&item.plugData.Type==4" :plugData="item.plugData"></diyImgSix>
<!--搜尋區塊(Banner)search_b -->
<searchb1 v-if="item.Id=='search_b'&&item.plugData.Type==1" :plugData="item.plugData"></searchb1>
<searchb2 v-if="item.Id=='search_b'&&item.plugData.Type==2" :plugData="item.plugData"></searchb2>
<searchb3 v-if="item.Id=='search_b'&&item.plugData.Type==3" :plugData="item.plugData"></searchb3>
<searchb4 v-if="item.Id=='search_b'&&item.plugData.Type==4" :plugData="item.plugData"></searchb4>
<!--搜尋區塊(輪播淡出)search_sf -->
<searchsf1 v-if="item.Id=='search_sf'&&item.plugData.Type==1" :plugData="item.plugData"></searchsf1>
<searchsf2 v-if="item.Id=='search_sf'&&item.plugData.Type==2" :plugData="item.plugData"></searchsf2>
<searchsf3 v-if="item.Id=='search_sf'&&item.plugData.Type==3" :plugData="item.plugData"></searchsf3>
<!--搜尋區塊(輪播橫)search_s -->
<searchsf1 v-if="item.Id=='search_s'&&item.plugData.Type==1" :plugData="item.plugData"></searchsf1>
<searchsf2 v-if="item.Id=='search_s'&&item.plugData.Type==2" :plugData="item.plugData"></searchsf2>
<searchsf3 v-if="item.Id=='search_s'&&item.plugData.Type==3" :plugData="item.plugData"></searchsf3>
<!--搜尋區塊(其他)search_el -->
<searchel1 v-if="item.Id=='search_el'&&item.plugData.Type==1" :plugData="item.plugData"></searchel1>
<!--出團表group -->
<travelList v-if="item.Id=='group'" :plugData="item.plugData"></travelList>
</div>
</template>
</q-page> </q-page>
</template> </template>
<script> <script>
//搜尋區塊(輪播橫)search_s -Start //出團表 group -Start
import searchs1 from "../components/search_s/search_s1"; import travelList from "../components/group/travel-list";
import searchs2 from "../components/search_s/search_s2"; //出團表 group -End
import searchs3 from "../components/search_s/search_s3";
//搜尋區塊(輪播橫)search_s -End //搜尋區塊(輪播橫)search_s -Start
import searchs1 from "../components/search_s/search_s1";
//搜尋區塊(Banner)search_b -Start import searchs2 from "../components/search_s/search_s2";
import searchb1 from "../components/search_b/search_b1"; import searchs3 from "../components/search_s/search_s3";
import searchb2 from "../components/search_b/search_b2"; //搜尋區塊(輪播橫)search_s -End
import searchb3 from "../components/search_b/search_b3";
import searchb4 from "../components/search_b/search_b4"; //搜尋區塊(Banner)search_b -Start
//搜尋區塊(Banner)search_b -End import searchb1 from "../components/search_b/search_b1";
import searchb2 from "../components/search_b/search_b2";
//搜尋區塊(輪播淡出)search_sf -Start import searchb3 from "../components/search_b/search_b3";
import searchsf1 from "../components/search_sf/search_sf1"; import searchb4 from "../components/search_b/search_b4";
import searchsf2 from "../components/search_sf/search_sf2"; //搜尋區塊(Banner)search_b -End
import searchsf3 from "../components/search_sf/search_sf3";
//搜尋區塊(輪播淡出)search_sf -End //搜尋區塊(輪播淡出)search_sf -Start
import searchsf1 from "../components/search_sf/search_sf1";
//搜尋區塊(其他)search_el -Start import searchsf2 from "../components/search_sf/search_sf2";
import searchel1 from "../components/search_el/search_el1"; import searchsf3 from "../components/search_sf/search_sf3";
//搜尋區塊(其他)search_el -End //搜尋區塊(輪播淡出)search_sf -End
//自訂版型(影片)white_label_video -Start //搜尋區塊(其他)search_el -Start
import videoOne from "../components/label_video/video-one"; import searchel1 from "../components/search_el/search_el1";
import videoTwo from "../components/label_video/video-two"; //搜尋區塊(其他)search_el -End
//自訂版型(影片)white_label_video -End
//自訂版型(影片)white_label_video -Start
//自訂版型(圖片)和挑選自有行程(圖片) white_label_picture和b2b -Start import videoOne from "../components/label_video/video-one";
import diyImgOne from "../components/label_picture/diy-img-one"; import videoTwo from "../components/label_video/video-two";
import diyImgTwo from "../components/label_picture/diy-img-two"; //自訂版型(影片)white_label_video -End
import diyImgThree from "../components/label_picture/diy-img-three";
import diyImgFour from "../components/label_picture/diy-img-four"; //自訂版型(圖片)和挑選自有行程(圖片) white_label_picture和b2b -Start
import diyImgFive from "../components/label_picture/diy-img-five"; import diyImgOne from "../components/label_picture/diy-img-one";
import diyImgSix from "../components/label_picture/diy-img-six"; import diyImgTwo from "../components/label_picture/diy-img-two";
//自訂版型(圖片)和挑選自有行程(圖片) white_label_picture和b2b -End import diyImgThree from "../components/label_picture/diy-img-three";
import diyImgFour from "../components/label_picture/diy-img-four";
//自訂版型(QRcode)white_label_qrcode -Start import diyImgFive from "../components/label_picture/diy-img-five";
import qrLeft from "../components/label_qrcode/left"; import diyImgSix from "../components/label_picture/diy-img-six";
import qrRight from "../components/label_qrcode/right"; //自訂版型(圖片)和挑選自有行程(圖片) white_label_picture和b2b -End
//自訂版型(QRcode)white_label_qrcode -End
//自訂版型(QRcode)white_label_qrcode -Start
//自訂版型(背景圖)white_label_background_article -Start import qrLeft from "../components/label_qrcode/left";
import bgArticleLeft from "../components/label_background_article/left"; import qrRight from "../components/label_qrcode/right";
import bgArticleRight from "../components/label_background_article/right"; //自訂版型(QRcode)white_label_qrcode -End
import bgArticleCenter from "../components/label_background_article/center";
//自訂版型(背景圖)white_label_background_article -ENd //自訂版型(背景圖)white_label_background_article -Start
import bgArticleLeft from "../components/label_background_article/left";
//自訂版型(段落標題)white_label_paragraph_title -Start import bgArticleRight from "../components/label_background_article/right";
import paragraph1 from "../components/label_paragraph_title/paragraph1"; import bgArticleCenter from "../components/label_background_article/center";
import paragraph2 from "../components/label_paragraph_title/paragraph2"; //自訂版型(背景圖)white_label_background_article -ENd
import paragraph3 from "../components/label_paragraph_title/paragraph3";
import paragraphleft from "../components/label_paragraph_title/paragraph-left"; //自訂版型(段落標題)white_label_paragraph_title -Start
import paragraphright from "../components/label_paragraph_title/paragraph-right"; import paragraph1 from "../components/label_paragraph_title/paragraph1";
import paragraphafter from "../components/label_paragraph_title/paragraph-after"; import paragraph2 from "../components/label_paragraph_title/paragraph2";
//自訂版型(段落標題)white_label_paragraph_title -End import paragraph3 from "../components/label_paragraph_title/paragraph3";
import paragraphleft from "../components/label_paragraph_title/paragraph-left";
//自訂版型(段落連結)和挑選自有行程(段落連結)white_label_link_paragraph和b2b_LinkP -Start import paragraphright from "../components/label_paragraph_title/paragraph-right";
import plinkLeft from "../components/label_link_paragraph/left"; import paragraphafter from "../components/label_paragraph_title/paragraph-after";
import plinkRight from "../components/label_link_paragraph/right"; //自訂版型(段落標題)white_label_paragraph_title -End
//自訂版型(段落連結)和挑選自有行程(段落連結)white_label_link_paragraph和b2b_LinkP -End
//自訂版型(段落連結)和挑選自有行程(段落連結)white_label_link_paragraph和b2b_LinkP -Start
//自訂版型(圖片連結)和挑選自有行程(圖片連結)white_label_link_picture和b2b_LinkPicture -Start import plinkLeft from "../components/label_link_paragraph/left";
import ilinkLeft from "../components/label_link_picture/left"; import plinkRight from "../components/label_link_paragraph/right";
import ilinkRight from "../components/label_link_picture/right"; //自訂版型(段落連結)和挑選自有行程(段落連結)white_label_link_paragraph和b2b_LinkP -End
//自訂版型(圖片連結)和挑選自有行程(圖片連結)white_label_link_picture和b2b_LinkPicture -End
//自訂版型(圖片連結)和挑選自有行程(圖片連結)white_label_link_picture和b2b_LinkPicture -Start
//自訂版型(輪播圖)white_label_slider -Start import ilinkLeft from "../components/label_link_picture/left";
import sliderBig from "../components/label_slider/big"; import ilinkRight from "../components/label_link_picture/right";
import sliderSmall from "../components/label_slider/small"; //自訂版型(圖片連結)和挑選自有行程(圖片連結)white_label_link_picture和b2b_LinkPicture -End
//自訂版型(輪播圖)white_label_slider -End
//自訂版型(輪播圖)white_label_slider -Start
//自訂版型(其他)white_label_other-Start import sliderBig from "../components/label_slider/big";
import empty from "../components/label_other/empty"; import sliderSmall from "../components/label_slider/small";
import downloadTable from "../components/label_other/downloadTable"; //自訂版型(輪播圖)white_label_slider -End
import diyTitle from "../components/label_other/diy-title";
import paragraph from "../components/label_other/paragraph"; //自訂版型(其他)white_label_other-Start
import photo from "../components/label_other/photo"; import empty from "../components/label_other/empty";
import diyForm from "../components/label_other/diy-form"; import downloadTable from "../components/label_other/downloadTable";
//自訂版型(其他)white_label_other-End import diyTitle from "../components/label_other/diy-title";
export default { import paragraph from "../components/label_other/paragraph";
name: "PageIndex", import photo from "../components/label_other/photo";
components: { import diyForm from "../components/label_other/diy-form";
searchs1, export default {
searchs2, name: "PageIndex",
searchs3, components: {
searchb1, searchs1,
searchb2, searchs2,
searchb3, searchs3,
searchb4, searchb1,
searchsf1, searchb2,
searchsf2, searchb3,
searchsf3, searchb4,
searchel1, searchsf1,
videoOne, searchsf2,
videoTwo, searchsf3,
diyImgOne, searchel1,
diyImgTwo, videoOne,
diyImgThree, videoTwo,
diyImgFour, diyImgOne,
diyImgFive, diyImgTwo,
diyImgSix, diyImgThree,
qrLeft, diyImgFour,
qrRight, diyImgFive,
bgArticleLeft, diyImgSix,
bgArticleRight, qrLeft,
bgArticleCenter, qrRight,
paragraph1, bgArticleLeft,
paragraph2, bgArticleRight,
paragraph3, bgArticleCenter,
paragraphleft, paragraph1,
paragraphright, paragraph2,
paragraphafter, paragraph3,
plinkLeft, paragraphleft,
plinkRight, paragraphright,
ilinkLeft, paragraphafter,
ilinkRight, plinkLeft,
sliderBig, plinkRight,
sliderSmall, ilinkLeft,
empty, ilinkRight,
downloadTable, sliderBig,
diyTitle, sliderSmall,
paragraph, empty,
photo, downloadTable,
diyForm diyTitle,
}, paragraph,
data() { photo,
return { diyForm,
styleType:1 travelList
}; },
} data() {
}; return {
RB_Group_Id: 0,
HomeData: {},
};
},
mounted() {
var jObj = JSON.parse(window.localStorage.getItem('groupinfo'));
this.RB_Group_Id = jObj.GroupId;
this.getAbout();
},
methods: {
getAbout() {
this.apipost(
"ws_get_GetHomePage", {
RB_Group_Id: this.RB_Group_Id
},
res => {
if (res.data.resultCode == 1) {
if (res.data.data) {
this.HomeData = res.data.data;
}
}
},
err => {}
);
}
},
};
</script> </script>
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