mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-23 21:36:38 +08:00
21 lines
712 B
Vue
Executable File
21 lines
712 B
Vue
Executable File
<template>
|
|
<view>
|
|
<template name="sort_list">
|
|
<view class="sort-list">
|
|
<view class="sort" @tap="onOverallTag">{{sortSelected}}<image src="../../static/images/down.png" style="width:20rpx;height:20rpx;"></image></view>
|
|
<view data-index="0" @tap="onTapTag" :class="'sort ' + (selected == 0?'sort-active':'')">销量最高</view>
|
|
<view data-index="1" @tap="onTapTag" :class="'sort ' + (selected == 1?'sort-active':'')">距离最近</view>
|
|
<view class="sort" @tap="onFilter">筛选<image src="../../static/images/screen.png" style="width:22rpx;height:22rpx;"></image></view>
|
|
</view>
|
|
</template>
|
|
</view>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
props: []
|
|
}
|
|
</script>
|
|
|