rightSlider.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <template>
  2. <view class="right-wrapper" @touchmove.stop.prevent="moveStop" :style="viewColor">
  3. <view class="control-wrapper animated" :class="showBox?'slideInRight':''">
  4. <view class="header">
  5. <view class="title">价格区间</view>
  6. <view class="input-wrapper">
  7. <input placeholder="最低价" v-model="min" type="number"/>
  8. <view class="line"></view>
  9. <input placeholder="最高价" v-model="max" type="number"/>
  10. </view>
  11. </view>
  12. <view class="store_type">
  13. <view class="title">店铺类型</view>
  14. <view class="brand-wrapper">
  15. <view class="wrapper">
  16. <view class="item line1" v-for="(item,index) in storeTypeList" :key="index" :class="item.check?'on':''" @tap="bindChenckType(item,index)">
  17. {{item.name}}
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="content-box">
  23. <view class="title">品牌</view>
  24. <view class="brand-wrapper">
  25. <scroll-view :style="{'height':isShow?'90%':'250rpx'}" :scroll-y="isShow">
  26. <view class="wrapper">
  27. <view class="item line1" v-for="(item,index) in list" :key="index" :class="item.check?'on':''" @tap="bindChenck(item)">
  28. {{item.brand_name}}
  29. </view>
  30. </view>
  31. </scroll-view>
  32. <view class="btns" v-if="!isShow && list.length>9" @click="isShow = true">展开全部<text class="iconfont icon-xiangxia"></text></view>
  33. <view class="btns" v-if="isShow && list.length>9" @click="isShow = false">收起<text class="iconfont icon-xiangshang"></text></view>
  34. </view>
  35. <view class="foot-btn">
  36. <view class="btn-item" @click="reset">重置</view>
  37. <view class="btn-item confirm" @click="confirm">确定</view>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="right-bg" @click="close"></view>
  42. </view>
  43. </template>
  44. <script>
  45. // +----------------------------------------------------------------------
  46. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  47. // +----------------------------------------------------------------------
  48. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  49. // +----------------------------------------------------------------------
  50. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  51. // +----------------------------------------------------------------------
  52. // | Author: CRMEB Team <admin@crmeb.com>
  53. // +----------------------------------------------------------------------
  54. import { mapGetters } from "vuex";
  55. export default{
  56. props: {
  57. brandList: {
  58. type: Array,
  59. },
  60. status:{
  61. type:Boolean,
  62. default:false
  63. },
  64. price_on:{
  65. type:String,
  66. default:''
  67. },
  68. price_off:{
  69. type:String,
  70. default:''
  71. },
  72. activeIndex:{
  73. type:Number,
  74. default:0
  75. }
  76. },
  77. computed: mapGetters(['viewColor']),
  78. data(){
  79. return {
  80. min: '',
  81. max:'',
  82. is_trader: '',
  83. isShow:false,
  84. list:[],
  85. storeTypeList: [
  86. {name: '全部', value: '',check: true},
  87. {name: '自营', value: 'trader',check: false},
  88. {name: '非自营', value: 'trader',check: false},
  89. ],
  90. activeList:[],
  91. showBox:false,
  92. index: this.activeIndex
  93. }
  94. },
  95. mounted() {
  96. // 重要组件挂载后
  97. this.list = this.brandList
  98. this.showBox = this.status
  99. this.min = this.price_on
  100. this.max = this.price_off
  101. this.storeTypeList = [
  102. {name: '全部', value: '',check: false},
  103. {name: '自营', value: 'trader',check: false},
  104. {name: '非自营', value: 'trader',check: false}
  105. ]
  106. this.storeTypeList[this.index]['check'] = true
  107. this.is_trader = this.storeTypeList[0]['check'] ? '' : this.storeTypeList[1]['check'] ? 1 : 0
  108. },
  109. methods:{
  110. bindChenck(item){
  111. item.check = !item.check
  112. this.arrFilter()
  113. },
  114. bindChenckType(item,index){
  115. this.storeTypeList = [
  116. {name: '全部', value: '',check: false},
  117. {name: '自营', value: 'trader',check: false},
  118. {name: '非自营', value: 'trader',check: false},
  119. ]
  120. this.storeTypeList[index]['check'] = true
  121. this.is_trader = this.storeTypeList[0]['check'] ? '' : this.storeTypeList[1]['check'] ? 1 : 0
  122. this.index = index
  123. },
  124. arrFilter(){
  125. this.activeList = this.list.filter(item=>{
  126. return item.check == true
  127. })
  128. },
  129. reset(){
  130. this.list.forEach((el,index)=>{
  131. el.check = false
  132. })
  133. this.storeTypeList = [
  134. {name: '全部', value: '',check: true},
  135. {name: '自营', value: 'trader',check: false},
  136. {name: '非自营', value: 'trader',check: false}
  137. ]
  138. this.min = this.max = ''
  139. this.arrFilter()
  140. },
  141. confirm(){
  142. this.arrFilter()
  143. let obj = {
  144. brandList:this.activeList,
  145. price_on:this.min,
  146. price_off:this.max,
  147. status:false,
  148. is_trader: this.is_trader
  149. }
  150. this.showBox = false
  151. this.$emit('confirm',obj,this.index)
  152. },
  153. close(){
  154. this.showBox = false
  155. this.$emit('close')
  156. },
  157. moveStop(){}
  158. }
  159. }
  160. </script>
  161. <style lang="scss">
  162. .slideInRight{
  163. animation-duration:.5s
  164. }
  165. .right-wrapper{
  166. z-index: 99;
  167. position: fixed;
  168. left: 0;
  169. top: 0;
  170. width: 100%;
  171. height: 100%;
  172. .control-wrapper{
  173. z-index: 90;
  174. position: absolute;
  175. right: 0;
  176. top: 0;
  177. display: flex;
  178. flex-direction: column;
  179. width: 635rpx;
  180. height: 100%;
  181. background-color: #F5F5F5;
  182. .header{
  183. padding: 50rpx 26rpx 40rpx;
  184. background-color: #fff;
  185. .title{
  186. font-size: 26rpx;
  187. font-weight: bold;
  188. color: #282828;
  189. }
  190. .input-wrapper{
  191. display: flex;
  192. align-items: center;
  193. justify-content: space-between;
  194. margin-top: 28rpx;
  195. input{
  196. width:260rpx;
  197. height:56rpx;
  198. padding: 0 10rpx;
  199. background:rgba(242,242,242,1);
  200. border-radius:28rpx;
  201. font-size: 22rpx;
  202. text-align: center;
  203. }
  204. .line{
  205. width:15rpx;
  206. height:2rpx;
  207. background:#7D7D7D;
  208. }
  209. }
  210. }
  211. .content-box{
  212. position: relative;
  213. flex: 1;
  214. display: flex;
  215. flex-direction: column;
  216. margin-top: 20rpx;
  217. padding: 0 26rpx;
  218. background-color: #fff;
  219. overflow: hidden;
  220. .title{
  221. padding: 40rpx 0 20rpx;
  222. font-size: 26rpx;
  223. font-weight: bold;
  224. color: #282828;
  225. }
  226. .brand-wrapper{
  227. flex: 1;
  228. overflow: hidden;
  229. .wrapper{
  230. display: flex;
  231. flex-wrap: wrap;
  232. padding-bottom: 20rpx;
  233. }
  234. .item{
  235. display: block;
  236. width:186rpx;
  237. height:56rpx;
  238. line-height: 56rpx;
  239. text-align: center;
  240. background:rgba(242,242,242,1);
  241. border-radius:28rpx;
  242. margin-top: 25rpx;
  243. padding: 0 10rpx;
  244. margin-right: 12rpx;
  245. &:nth-child(3n){
  246. margin-right: 0;
  247. }
  248. &.on{
  249. background: var(--view-minorColor);
  250. border:1px solid var(--view-theme);
  251. color: var(--view-theme);
  252. }
  253. }
  254. .btns{
  255. display: flex;
  256. align-items: center;
  257. justify-content: center;
  258. padding-top: 10rpx;
  259. font-size: 22rpx;
  260. color: #999;
  261. .iconfont{
  262. margin-left: 10rpx;
  263. margin-top: 5rpx;
  264. font-size: 20rpx;
  265. }
  266. }
  267. }
  268. .foot-btn{
  269. display: flex;
  270. align-items: center;
  271. justify-content: space-between;
  272. padding-bottom: 30rpx;
  273. .btn-item{
  274. display: flex;
  275. align-items: center;
  276. justify-content: center;
  277. width:286rpx;
  278. height:68rpx;
  279. background:rgba(255,255,255,1);
  280. border:1px solid rgba(170,170,170,1);
  281. border-radius:34rpx;
  282. font-size: 26rpx;
  283. color: #282828;
  284. &.confirm{
  285. background: var(--view-theme);
  286. border-color: var(--view-theme);
  287. color: #fff;
  288. }
  289. }
  290. }
  291. }
  292. .store_type{
  293. position: relative;
  294. margin-top: 20rpx;
  295. padding: 0 26rpx;
  296. background-color: #fff;
  297. overflow: hidden;
  298. .title{
  299. padding: 40rpx 0 20rpx;
  300. font-size: 26rpx;
  301. font-weight: bold;
  302. color: #282828;
  303. }
  304. .brand-wrapper{
  305. overflow: hidden;
  306. .wrapper{
  307. display: flex;
  308. flex-wrap: wrap;
  309. padding-bottom: 20rpx;
  310. }
  311. .item{
  312. display: block;
  313. width:186rpx;
  314. height:56rpx;
  315. line-height: 56rpx;
  316. text-align: center;
  317. background:rgba(242,242,242,1);
  318. border-radius:28rpx;
  319. margin-top: 25rpx;
  320. padding: 0 10rpx;
  321. margin-right: 12rpx;
  322. &:nth-child(3n){
  323. margin-right: 0;
  324. }
  325. &.on{
  326. background: var(--view-minorColor);
  327. border:1px solid var(--view-theme);
  328. color: var(--view-theme);
  329. }
  330. }
  331. }
  332. }
  333. }
  334. .right-bg{
  335. position: absolute;
  336. left: 0;
  337. top: 0;
  338. width: 100%;
  339. height: 100%;
  340. background-color: rgba(0,0,0,.5);
  341. }
  342. }
  343. </style>