rule.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <template>
  2. <view>
  3. <view class="wp-80 pd-tb-40 mg-auto">
  4. <button type="warn" @click="showDrawer('showRight')">筛选</button>
  5. </view>
  6. <!-- 筛选-uni-drawer -->
  7. <view class="dra_position safe_area">
  8. <scroll-view class="scroll-view-box dra_position" scroll-y="true">
  9. <view class="pd-25">
  10. <block v-for="(item,n) in drawer_list" :key="n">
  11. <view class="pd-b-20">{{item.title}}</view>
  12. <view class="fss flex-wrap scroll-view-div">
  13. <block v-for="(aitem,index) in item.options" :key="index">
  14. <view class="radius5 fcc" :class="subIndex[n] == index?'active':''"
  15. @click="chooseItem(n,aitem.name,index)">
  16. <text>{{aitem.name}}</text>
  17. </view>
  18. </block>
  19. </view>
  20. </block>
  21. </view>
  22. </scroll-view>
  23. <view class="dra_close fbc bg-fff">
  24. <view class="btns wp-47 radius50" @click="reset">重置</view>
  25. <view class="btns1 wp-47 radius50" @click="closeDrawer('showRight')">确定</view>
  26. </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. export default {
  32. data() {
  33. return {
  34. drawer_list: [
  35. { "title": "客户来源", "name": "source",
  36. options:[
  37. { id: 25, "name": "百度贴吧" },
  38. { id: 26, "name": "淘宝" },
  39. { id: 27, "name": "抖音粉丝" },
  40. { id: 28, "name": "官网客服" },
  41. { id: 29, "name": "百度点击" },
  42. ]
  43. },{ "title": "客户级别", "name": "level",
  44. options:[
  45. { id: 22, "name": "意向极高" },
  46. { id: 23, "name": "中等意向" },
  47. { id: 24, "name": "一般意向" },
  48. ]
  49. },{ "title": "客服", "name": "kefu",
  50. options:[
  51. { id: 1, "name": "男客服" },
  52. { id: 2, "name": "女客服" },
  53. ]
  54. }
  55. ],
  56. selectArr: [],
  57. subIndex: [],
  58. }
  59. },
  60. methods: {
  61. chooseItem( _pIndex, _name, index) {
  62. if (this.selectArr[_pIndex] != _name) {
  63. this.$set(this.selectArr, _pIndex, _name);
  64. this.$set(this.subIndex, _pIndex, index);
  65. } else {
  66. this.$set(this.selectArr, _pIndex, '');
  67. this.$set(this.subIndex, _pIndex, -1); //去掉选中颜色
  68. }
  69. console.log(this.selectArr)
  70. },
  71. // 抽屉状态发生变化触发
  72. change(e, type) { this[type] = e },
  73. // 打开抽屉
  74. showDrawer(e) { this.$refs[e].open() },
  75. // 关闭抽屉
  76. closeDrawer(e) { this.$refs[e].close() },
  77. // 重置
  78. reset() {
  79. this.selectArr=[]
  80. this.subIndex=[]
  81. },
  82. }
  83. }
  84. </script>
  85. <style lang="scss">
  86. .wp-80{ width: 80%; }
  87. .wp-47{ width: 47%; }
  88. .mg-auto{ margin: 0 auto; }
  89. .pd-25{ padding: 25rpx; }
  90. .pd-b-20{ padding: 0 0 20rpx; }
  91. .pd-tb-40{ padding: 40rpx 0; }
  92. .bg-fff{ background-color: #FFFFFF; }
  93. .radius5{ border-radius: 5rpx; }
  94. .radius50{ border-radius: 50rpx; }
  95. .flex-wrap{ flex-wrap: wrap; }
  96. .fss{
  97. display: flex;
  98. justify-content: flex-start;
  99. align-items: flex-start;
  100. }
  101. .fbc{
  102. display: flex;
  103. justify-content: space-between;
  104. align-items: center;
  105. }
  106. .fcc{
  107. display: flex;
  108. justify-content: center;
  109. align-items: center;
  110. }
  111. .safe_area{
  112. margin-bottom: constant(safe-area-inset-bottom);
  113. margin-bottom: env(safe-area-inset-bottom);
  114. }
  115. .dra_position{
  116. position: absolute;
  117. top: 0;
  118. bottom: 0;
  119. width: 100%;
  120. height: auto;
  121. }
  122. .scroll-view-box{ font-size: 28rpx; bottom: 84rpx; }
  123. .dra_close{
  124. box-sizing: border-box;
  125. position: absolute;
  126. bottom: 0;
  127. width: 100%;
  128. padding: 15rpx 30rpx 20rpx;
  129. >view{
  130. height: 68rpx;
  131. line-height: 68rpx;
  132. text-align: center;
  133. }
  134. .btns{ color: #a12a30; border: 1px solid #a12a30; }
  135. .btns1{ color: #FFFFFF; background-color: #a12a30; }
  136. }
  137. .scroll-view-div{
  138. >view:nth-child(3n-1){ margin: 0 10rpx; }
  139. >view{
  140. width: 32%;
  141. height: 72rpx;
  142. margin-bottom: 16rpx;
  143. text-align: center;
  144. background-color: #F5F5F5;
  145. }
  146. .active{
  147. color: #ff000b;
  148. background-color: #fff4f3;
  149. }
  150. }
  151. </style>