Commit 269bb44b by 陈超

T

parent f835f08b
......@@ -685,3 +685,18 @@ div::-webkit-scrollbar {
margin-top: 0.5rem;
margin-left: 0.75rem;
}
.all_gap_line {
width: 0.75rem;
height: 0.0625rem;
background:rgba(204,204,204,1);
margin-left: 0.75rem;
margin-right: 0.75rem;
}
.all_range_input {
width: 6.25rem;
height: 2rem;
background:rgba(245,245,245,1);
border-radius: 1rem;
}
\ No newline at end of file
......@@ -39,7 +39,11 @@
<div @click="onBuy('2')" class="van-ellipsis" :class="selectedBuy('2') ? 'drop_down_option_selected' : 'drop_down_option'">未购买</div>
</div>
<span class="all_category_title text_16_600 color_333333">价格区间</span>
<div class="layout_h">
<van-field class="all_range_input" v-model="minPrice" input-align="center" placeholder="最低价" ></van-field>
<div class="all_gap_line self_center"></div>
<van-field class="all_range_input" v-model="maxPrice" input-align="center" placeholder="最高价" ></van-field>
</div>
<div class="two_button_container layout_h" style="margin-top: 2.5rem;">
<div class="two_button_left">重置</div>
<div class="two_button_right">确认</div>
......@@ -246,6 +250,8 @@
return {
cate: "",
buy: "",
minPrice: "",
maxPrice: ""
}
},
computed: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment