index.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view class="exhibitor-index">
  3. <nav-bar title="展商信息"></nav-bar>
  4. <view class="main-container">
  5. <view class="exhibitor-filter">
  6. <view>
  7. <view>展馆号</view>
  8. <u-dropdown-select v-model="categoryId" placeholder="产品分类" :options="categories" />
  9. </view>
  10. <view>
  11. <view>产品类别</view>
  12. <u-dropdown-select v-model="categoryId" placeholder="产品分类" :options="categories" />
  13. </view>
  14. <view>
  15. <view>应用领域</view>
  16. <u-dropdown-select v-model="categoryId" placeholder="产品分类" :options="categories" />
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. import NavBar from '@/components/layout/nav-bar.vue'
  24. import UDropdownSelect from '@/components/common/u-dropdown-select/index.vue'
  25. export default {
  26. options: {
  27. // styleIsolation: 'shared'
  28. },
  29. components: {
  30. NavBar,
  31. UDropdownSelect
  32. },
  33. data() {
  34. return {
  35. categories: [{
  36. label: '表面贴装',
  37. value: 1,
  38. children: [{
  39. label: '表面贴装技术',
  40. value: 11
  41. }, {
  42. label: 'PCB焊接和连接技术',
  43. value: 12
  44. }, {
  45. label: '测试测量和质量保证',
  46. value: 13
  47. }, {
  48. label: '电子组装自动化',
  49. value: 14
  50. }, {
  51. label: '生产物流和物流技术',
  52. value: 15
  53. }, {
  54. label: '清洗技术',
  55. value: 16
  56. }]
  57. }, {
  58. label: '线束加工',
  59. value: 2
  60. }, {
  61. label: '工厂自动化',
  62. value: 3
  63. }, {
  64. label: '点胶注胶',
  65. value: 4
  66. }, {
  67. label: '电子制造服务',
  68. value: 5
  69. }, {
  70. label: '未来服务',
  71. value: 6
  72. }]
  73. }
  74. },
  75. created() {},
  76. methods: {}
  77. }
  78. </script>
  79. <style lang="scss" scoped>
  80. .exhibitor-filter{
  81. display: grid;
  82. grid-template-columns: repeat(3, 1fr);
  83. grid-gap: 29rpx;
  84. font-size: $fontSize2;
  85. color: #333333;
  86. }
  87. </style>