Home.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <template>
  2. <div class="home">
  3. <div class="box">123</div>
  4. <van-tabs v-model="active">
  5. <!-- <van-tab v-for="value in testArr" :key="value" title="基础组件">{{value}}</van-tab> -->
  6. <van-tab title="基础内容">
  7. <van-grid square :column-num="2" :icon-size="80">
  8. <van-grid-item
  9. v-for="basicComponent in basicComponents"
  10. :key="basicComponent.componentName"
  11. v-bind:icon="basicComponent.previewUrl"
  12. v-bind:text="basicComponent.title"
  13. v-on:click="showActionSheet(basicComponent.title, basicComponent.componentName)"
  14. >
  15. </van-grid-item>
  16. </van-grid>
  17. </van-tab>
  18. <van-tab title="JSAPI">
  19. <div>
  20. <van-cell-group
  21. v-for="jsapiListItem in jsapi"
  22. :key="jsapiListItem.header"
  23. :title="jsapiListItem.header"
  24. >
  25. <van-cell
  26. v-for="jsapiItem in jsapiListItem.items"
  27. :key="jsapiItem.key"
  28. :title="jsapiItem.name"
  29. :label="jsapiItem.desc"
  30. clickable
  31. v-on:click="showActionSheet(jsapiItem.name, jsapiItem.key)"
  32. />
  33. </van-cell-group>
  34. </div>
  35. </van-tab>
  36. </van-tabs>
  37. <van-action-sheet v-model="show" v-bind:title="currentActionSheetTitle">
  38. <div class="content">
  39. <component :is="currentActionSheetComponent" />
  40. </div>
  41. </van-action-sheet>
  42. </div>
  43. </template>
  44. <script>
  45. import Vue from 'vue';
  46. import {
  47. Tab,
  48. Tabs,
  49. Grid,
  50. GridItem,
  51. Image,
  52. ActionSheet,
  53. Divider,
  54. Cell,
  55. List,
  56. CellGroup,
  57. } from 'vant';
  58. import Button from '../components/basic-components/button/index.vue'
  59. import DropdownMenu from '../components/basic-components/dropdownMenu/index.vue'
  60. import Popover from '../components/basic-components/popover/index.vue'
  61. import BizCalendarChooseDateTime from '../components/jsapi/biz.calendar.chooseDateTime/index.vue'
  62. import BizContactComplexPicker from '../components/jsapi/biz.contact.complexPicker/index.vue'
  63. Vue.use(CellGroup);
  64. Vue.use(List);
  65. Vue.use(Cell);
  66. Vue.use(Divider);
  67. Vue.use(ActionSheet);
  68. Vue.use(Grid);
  69. Vue.use(GridItem);
  70. Vue.use(Image);
  71. Vue.use(Tab);
  72. Vue.use(Tabs);
  73. export default {
  74. name: 'Home',
  75. components: {
  76. Button,
  77. DropdownMenu,
  78. Popover,
  79. BizCalendarChooseDateTime,
  80. BizContactComplexPicker,
  81. },
  82. methods: {
  83. showActionSheet(title, componentName) {
  84. this.show = true;
  85. this.currentActionSheetTitle = title;
  86. this.currentActionSheetComponent = componentName;
  87. }
  88. },
  89. data() {
  90. return {
  91. active: 0,
  92. show: false,
  93. currentActionSheetTitle: '',
  94. currentActionSheetComponent: '',
  95. basicComponents: [{
  96. title: '按钮',
  97. componentName: 'Button',
  98. previewUrl: 'https://img.alicdn.com/imgextra/i1/O1CN01rGcU9X1by9xPcJjuK_!!6000000003533-2-tps-612-292.png'
  99. }, {
  100. title: '下拉菜单',
  101. componentName: 'DropdownMenu',
  102. previewUrl: 'https://img.alicdn.com/imgextra/i1/O1CN015SSxf71IWFB5imj3p_!!6000000000900-2-tps-612-292.png'
  103. }, {
  104. title: '气泡弹出框',
  105. componentName: 'Popover',
  106. previewUrl: 'https://gw.alicdn.com/imgextra/i1/O1CN01rECNlj1TSXiAlsxOl_!!6000000002381-2-tps-612-292.png'
  107. }],
  108. jsapi: [
  109. {
  110. header: 'UI-dd',
  111. items: [{
  112. name: 'biz.calendar.chooseDateTime',
  113. key: 'BizCalendarChooseDateTime',
  114. desc: '选择某时间'
  115. },
  116. ],
  117. },
  118. {
  119. header: 'Contact',
  120. items: [
  121. {
  122. name: 'biz.contact.complexPicker',
  123. key: 'BizContactComplexPicker',
  124. desc: '选择部门和人'
  125. },
  126. ],
  127. },
  128. ]
  129. };
  130. },
  131. }
  132. </script>
  133. <style lang="less">
  134. .content {
  135. padding: 16px 16px 160px;
  136. }
  137. .box {
  138. font-size: 37.5px;
  139. }
  140. </style>