百富门答题小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.9 KiB

  1. <template>
  2. <view class="home">
  3. <view class="content" style="padding-top: 20vh;">
  4. <view class="flex-col" style="gap: 40rpx; width: 90vw;">
  5. <view class="flex-col">
  6. <span v-for="(item,index) in textList1" :key="index" class="context-text" style="font-size: 26rpx; line-height: 1;">
  7. {{item}}
  8. </span>
  9. </view>
  10. <view class="flex-col">
  11. <span v-for="(item,index) in textList2" :key="index" class="context-text" style="font-size: 26rpx;line-height: 1;">
  12. {{item}}
  13. </span>
  14. </view>
  15. </view>
  16. <view style="margin-top: 6vh;" @click="query">
  17. <view class="btn2" style="padding: 16rpx 100rpx;">
  18. 开始测试
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. textList1:[
  29. '百富门酒业,全球知名美国洋酒公司。',
  30. '1870年,由George Garvin Brown先生创立于肯塔基州。',
  31. '150多年来,历经市场变革,',
  32. '我们丰常的历史和承诺共同打造了我们坚实的基础,',
  33. '继往开今,不断为世界带来丰富优质的产品。'
  34. ],
  35. textList2:[
  36. '作为美国首屈一指的烈酒及葡萄酒公司,',
  37. '百富门酒业跻身全球销售额前十烈港公司之列(IWSR2022),',
  38. '且为全球第五大顶级烈酒企业。',
  39. '旗下拥有杰克丹尼、活福珍藏、本利亚克、',
  40. '格兰多纳、格兰格拉索等知名威士忌品牌;',
  41. '同时旗下拥有赫尔德拉马蹄铁龙舌兰酒、',
  42. '香博法围力娇酒等在内的近30个品牌:',
  43. '现如今,百富门酒业在全球六大洲拥有约5600名员工',
  44. '生产营销和分销优质烈酒和葡萄酒,',
  45. '并通过在世界各地的办事处,将产品销往近170多个国家。'
  46. ]
  47. }
  48. },
  49. methods: {
  50. query() {
  51. uni.redirectTo({
  52. url: '/pages_order/info/appoint'
  53. })
  54. }
  55. }
  56. }
  57. </script>
  58. <style lang="scss" scoped>
  59. </style>