index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <template>
  2. <section class="container">
  3. <expericeBanner :bannerSrc="bannerSrc"></expericeBanner>
  4. <expericePlaceDesc :placeDescData="placeDescData"></expericePlaceDesc>
  5. <expericePeopleDesc :peopleDescData="peopleDescData"></expericePeopleDesc>
  6. <lineService></lineService>
  7. <expericePanoramic :PanoramicData="PanoramicData"></expericePanoramic>
  8. <expericeStyle :styleData="nativeStyleData"></expericeStyle>
  9. <expericeStyle :styleData="elegantStyleData"></expericeStyle>
  10. <expericeStyle :styleData="chineseStyleData"></expericeStyle>
  11. <expericeStyle :styleData="naturalStyleData"></expericeStyle>
  12. <expericeVideo></expericeVideo>
  13. <expericeHighLights :highLightsData="highLightsData"></expericeHighLights>
  14. <commonMap :mapData="mapData"></commonMap>
  15. <expericeAddress :addressData="addressData"></expericeAddress>
  16. </section>
  17. </template>
  18. <script>
  19. import axios from 'axios'
  20. import expericeBanner from '~/components/experice/expericeBanner'
  21. import expericePlaceDesc from '~/components/experice/expericePlaceDesc'
  22. import expericePeopleDesc from '~/components/experice/expericePeopleDesc'
  23. import expericePanoramic from '~/components/experice/expericePanoramic'
  24. import expericeStyle from '~/components/experice/expericeStyle'
  25. import expericeVideo from '~/components/experice/expericeVideo.vue'
  26. import expericeHighLights from '~/components/experice/expericeHighLights'
  27. import lineService from '~/components/experice/lineService.vue'
  28. import commonMap from '~/components/common/commonMap'
  29. import expericeAddress from '~/components/experice/expericeAddress'
  30. export default {
  31. data (){
  32. return {
  33. bannerSrc:'http://img.visney.cn/img/nuxtPc/experice-cd/banner.jpg',
  34. placeDescData: {
  35. placeDescTitle: '成都',
  36. placeDescTitleE: 'Cheng Du',
  37. placeDesc: '成都,四川省省会,简称“蓉”。是四川省的政治、经济和文化中心,素有“天府之国”“美食之都”的美誉',
  38. placeDescEn: [
  39. 'Chengdu, the capital of Sichuan Province, is referred to as "Rong".',
  40. 'It is the political, economic and cultural center of Sichuan province.',
  41. 'Known as "the land of abundance" and "the capital of food".'
  42. ],
  43. placeDescImgSrc: [
  44. 'http://img.visney.cn/img/nuxtPc/experice-cd/place_desc_right1.png',
  45. 'http://img.visney.cn/img/nuxtPc/experice-cd/place_desc_right2.png',
  46. 'http://img.visney.cn/img/nuxtPc/experice-cd/place_desc_right3.png',
  47. 'http://img.visney.cn/img/nuxtPc/experice-cd/place_desc_right4.png',
  48. 'http://img.visney.cn/img/nuxtPc/experice-cd/place_desc_right5.png',
  49. ],
  50. placeDescImgName: ['峨眉山','九寨沟','稻城亚丁','蜀绣','金沙遗址']
  51. },
  52. peopleDescData: {
  53. peopleDescTitleCn: 'CHENGDU',
  54. peopleDescTitleEn: '成都卫诗理体验馆',
  55. placeImgSrc: 'http://img.visney.cn/img/nuxtPc/experice-cd/place_people_desc_right_img.png',
  56. peopleName: '苏轼',
  57. peopleImgSrc: 'http://img.visney.cn/img/nuxtPc/experice-cd/place_people_desc_left_img.png',
  58. peopleDescCn: [
  59. '“莫听穿林打叶声,何妨吟啸且徐行。',
  60. '竹杖芒鞋轻似马,谁怕?一蓑烟雨任平生”'
  61. ],
  62. peopleDescEn: []
  63. },
  64. PanoramicData: {
  65. PanoramicTitleCn1: '成都体验馆',
  66. PanoramicTitleCn2: '唯美实景曝光',
  67. PanoramicTitleEn: 'Panoramic hall',
  68. PanoramicTitleDesc: '馆内产品实景展示,呈现空间艺术的美感,让生活处处皆美学',
  69. PanoramicLIWidth: 1,
  70. PanoramicListData: [
  71. {
  72. PanoramicListTitle: ['致敬·先锋'],
  73. PanoramicListIntro: ['中高端空间美学MYD设计团队匠心呈现,缔造纯正欧美贵族古典风范。'],
  74. PanoramicListIntroEn: 'Professional team',
  75. PanoramicListImg: 'http://img.visney.cn/img/nuxtPc/experice-cd/panoramic_hall_list_img1.png',
  76. },
  77. {
  78. PanoramicListTitle: ['诚献·臻品'],
  79. PanoramicListIntro: ['2400㎡生态生活体验馆,1135款臻尚奢品,风格涵盖现代美式、后现代美式、欧式、英式、轻奢小法、禅意中式、新古典、中式、北欧等海量精品供您臻选'],
  80. PanoramicListIntroEn: 'Quality products',
  81. PanoramicListImg: 'http://img.visney.cn/img/nuxtPc/experice-cd/panoramic_hall_list_img2.png',
  82. }
  83. ]
  84. },
  85. nativeStyleData: {
  86. styleTitle: ['体验馆 第一层'],
  87. styleDesc: ['麦巴赫·纽约摩登系列','美的产品传递出来的是人和世界的理解'],
  88. styleDescEn: 'Beautiful products',
  89. styleImg: [
  90. 'http://img.visney.cn/img/nuxtPc/experice-cd/native_level_list1.png',
  91. 'http://img.visney.cn/img/nuxtPc/experice-cd/native_level_list2.png',
  92. 'http://img.visney.cn/img/nuxtPc/experice-cd/native_level_list3.png',
  93. 'http://img.visney.cn/img/nuxtPc/experice-cd/native_level_list4.png'
  94. ],
  95. styleMore: false,
  96. changeRight: false
  97. },
  98. elegantStyleData: {
  99. styleTitle: ['体验馆 第二层'],
  100. styleDesc: ['麦巴赫·纽约摩登系列','宾丽·美式简奢系列 比弗利·新现代轻奢系列','爱把简单生活过成甜'],
  101. styleDescEn: 'Sweet',
  102. styleImg: [
  103. 'http://img.visney.cn/img/nuxtPc/experice-cd/elegant_style_list1.png',
  104. 'http://img.visney.cn/img/nuxtPc/experice-cd/elegant_style_list2.png',
  105. 'http://img.visney.cn/img/nuxtPc/experice-cd/elegant_style_list3.png',
  106. 'http://img.visney.cn/img/nuxtPc/experice-cd/elegant_style_list4.png'
  107. ],
  108. styleMore: false,
  109. changeRight: true
  110. },
  111. chineseStyleData: {
  112. styleTitle: ['体验馆 第三层'],
  113. styleDesc: ['丘吉尔庄园·英式名流系列 杜兰戈美式系列','梵地亚欧式II系列 翡丽·后现代高端艺术系列','愈品味,愈懂品味'],
  114. styleDescEn: 'Understand taste',
  115. styleImg: [
  116. 'http://img.visney.cn/img/nuxtPc/experice-cd/chinese_style_list1.png',
  117. 'http://img.visney.cn/img/nuxtPc/experice-cd/chinese_style_list2.png',
  118. 'http://img.visney.cn/img/nuxtPc/experice-cd/chinese_style_list3.png',
  119. 'http://img.visney.cn/img/nuxtPc/experice-cd/chinese_style_list4.png'
  120. ],
  121. styleMore: false,
  122. changeRight: false
  123. },
  124. naturalStyleData: {
  125. styleTitle: ['体验馆 第四层'],
  126. styleDesc: ['溯·东方新中式系列 麦巴赫·纽约摩登系列','延祚·中式刺猬紫系列 佩洛·北欧系列 大斑马木系列','纯粹生态,自然礼遇'],
  127. styleDescEn: 'Natural',
  128. styleImg: [
  129. 'http://img.visney.cn/img/nuxtPc/experice-cd/natural_style_list1.png',
  130. 'http://img.visney.cn/img/nuxtPc/experice-cd/natural_style_list2.png',
  131. 'http://img.visney.cn/img/nuxtPc/experice-cd/natural_style_list3.png',
  132. 'http://img.visney.cn/img/nuxtPc/experice-cd/natural_style_list4.png'
  133. ],
  134. styleMore: true,
  135. changeRight: true
  136. },
  137. highLightsData: {
  138. highLightsTitleCn1: '卫诗理成都体验馆',
  139. highLightsTitleCn2: '六大专属亮点',
  140. highLightsTitleEn: 'Olivelife',
  141. highLightsList: [
  142. {
  143. highLightsListNum: '01',
  144. highLightsListTitle: '欧奢软装',
  145. highLightsListTitleEn: 'European luxury soft outfit',
  146. highLightsListDesc: '纯真欧美软装搭配,回溯一个时代的繁华',
  147. highLightsListImg: 'http://img.visney.cn/img/nuxtPc/experice-bt/high_lights_list_img1.png',
  148. highLightsListImgAlt: '欧奢软装'
  149. },
  150. {
  151. highLightsListNum: '02',
  152. highLightsListTitle: '生态绿植',
  153. highLightsListTitleEn: 'Ecological green plant',
  154. highLightsListDesc: '纯粹生态,自然礼遇,缔造都市里的绿野仙踪',
  155. highLightsListImg: 'http://img.visney.cn/img/nuxtPc/experice-bt/high_lights_list_img2.png',
  156. highLightsListImgAlt: '生态绿植'
  157. },
  158. {
  159. highLightsListNum: '03',
  160. highLightsListTitle: '安神香薰',
  161. highLightsListTitleEn: 'Nerves aromatherapy',
  162. highLightsListDesc: '法国南部香水之都格拉斯特配香薰',
  163. highLightsListImg: 'http://img.visney.cn/img/nuxtPc/experice-bt/high_lights_list_img3.png',
  164. highLightsListImgAlt: '安神香薰'
  165. },
  166. {
  167. highLightsListNum: '04',
  168. highLightsListTitle: '特配餐饮',
  169. highLightsListTitleEn: 'Especially with the dining',
  170. highLightsListDesc: '舌尖上的包头,蒙古包的美食',
  171. highLightsListImg: 'http://img.visney.cn/img/nuxtPc/experice-bt/high_lights_list_img4.png',
  172. highLightsListImgAlt: '特配餐饮'
  173. },
  174. {
  175. highLightsListNum: '05',
  176. highLightsListTitle: '免费接送',
  177. highLightsListTitleEn: 'Free Shuttle',
  178. highLightsListDesc: '在线预约,尊享高铁站、机场专人专车服务',
  179. highLightsListImg: 'http://img.visney.cn/img/nuxtPc/experice-bt/high_lights_list_img5.png',
  180. highLightsListImgAlt: '免费接送'
  181. },
  182. {
  183. highLightsListNum: '06',
  184. highLightsListTitle: '精致伴手礼',
  185. highLightsListTitleEn: 'Set fine',
  186. highLightsListDesc: '为每一位卫诗理尊贵客户准备的专属伴手礼',
  187. highLightsListImg: 'http://img.visney.cn/img/nuxtPc/experice-bt/high_lights_list_img6.png',
  188. highLightsListImgAlt: '精致伴手礼'
  189. }
  190. ]
  191. },
  192. mapData: {
  193. longitude: 103.9864779602,
  194. latitude: 30.6127248839,
  195. title: '成都体验店',
  196. description: '地址:成都市武侯区首信红星国际广场1号楼卫诗理家具旗舰店'
  197. },
  198. addressData: {
  199. addressDetils: [
  200. '成都市武侯区首信红星国际广场1号楼卫诗理家具旗舰店',
  201. '距离双流机场8公里,驾车需17分钟',
  202. '距离火车站成都站20公里,驾车需38分钟,距离火车站成都东站21公里,驾车需40分钟'
  203. ],
  204. hotLineTitle: '线下招商热线:',
  205. hotLineNum: '400 900 6267',
  206. phoneTitle: '预约电话(李姐 Lecoo)',
  207. phoneNum: '15884588477',
  208. contentNum: '02885007888',
  209. contentPeople: ''
  210. }
  211. }
  212. },
  213. components: {
  214. expericeBanner,
  215. expericePlaceDesc,
  216. expericePeopleDesc,
  217. expericePanoramic,
  218. expericeStyle,
  219. expericeHighLights,
  220. commonMap,
  221. expericeVideo,
  222. lineService,
  223. expericeAddress
  224. },
  225. head () {
  226. return {
  227. title:this.metaData.navigationTitle,
  228. meta: [
  229. {name:'keywords',hid: 'keywords',content:`${this.metaData.navigationKeyword}`},
  230. {name:'description',hid:'description',content:`${this.metaData.navigationDescription}`}
  231. ],
  232. script: [
  233. {src:'http://api.map.baidu.com/api?v=2.0&ak=MDdqxkqhQzfdBzfu2tfGiidGbHgTfGrB'}
  234. ]
  235. }
  236. },
  237. async asyncData({params,store}){
  238. //head信息
  239. let metaData = await axios(`${store.state.wordpressAPI}/NavigationMeta/get/21`);
  240. return {
  241. metaData: metaData.data,
  242. }
  243. }
  244. }
  245. </script>
  246. <style scoped>
  247. </style>