From 31a5566dd7ff56a3405ce79a764cd9e3d63154c9 Mon Sep 17 00:00:00 2001
From: li-guang <153605324@qq.com>
Date: Wed, 23 Dec 2020 16:21:11 +0800
Subject: [PATCH] 排行榜
---
hive-app/pages/member/index.vue | 190 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 188 insertions(+), 2 deletions(-)
diff --git a/hive-app/pages/member/index.vue b/hive-app/pages/member/index.vue
index 4646a47..d03f6d2 100644
--- a/hive-app/pages/member/index.vue
+++ b/hive-app/pages/member/index.vue
@@ -1,9 +1,195 @@
<template>
- <!-- 会员 -->
+ <view class="container">
+ <!-- #ifndef H5 -->
+ <view class="status_bar"></view>
+ <!-- #endif -->
+ <search-bar></search-bar>
+ <view class="sort-wrap">
+ <view @click="filterCustom(1)">
+ <text>本月到店次数</text>
+ <text class="iconfont iconjiantouarrow486 gray"></text>
+ </view>
+ <view @click="filterCustom(3)">
+ <text>筛选</text>
+ <text class="iconfont iconshaixuan gray"></text>
+ </view>
+ </view>
+ <filter-dropdown ref="filterDropdownEl" :list="filterList" :type="filterType"></filter-dropdown>
+ <view class="flex justify-between" @click="toDetail">
+ <view class="flex-1 mr-10">
+ <view class="member-list flex align-center" v-for="(item, index) in 15">
+ <text class="first-name" :style="{background: caculateBgcolor(index)}">李</text>
+ <view class="flex-1 flex align-center justify-between member-list-con">
+ <view>
+ <text>李广</text>
+ <text class="ml-10">152****9645</text>
+ </view>
+ <view>
+ <text class="blue">30天未到店</text>
+ <text class="iconfont iconarrow-backimg gray"></text>
+ </view>
+ </view>
+ </view>
+ </view>
+ <indexed-list></indexed-list>
+ </view>
+ <view class="quick-entry">
+ <navigator url="./editMember" hover-class="navigator-hover">
+ <text class="iconfont iconjia"></text>
+ </navigator>
+ </view>
+ </view>
</template>
<script>
+ import searchBar from '../../components/searchBar/index.vue';
+ import indexedList from '../../components/indexedList/index.vue';
+ import filterDropdown from '../../components/filterDropdown/index.vue';
+ export default {
+ components:{
+ searchBar,
+ indexedList,
+ filterDropdown
+ },
+ data() {
+ return {
+ colors: ['#CCC6B4', '#C0CCB4', '#B4C2CC', '#BEB4CC', '#B4CCBE', '#B4CCCA', '#CCB4C6', '#CCB4B4'],
+ filterType: 1,
+ filterList: [],
+ filter1: ['本月到店次数(由低到高)','本月到店次数(由高到低)','本年到店次数(由低到高)','本年到店次数(由高到低)','本月消费(由高到低)','本月消费(由低到高)','本月消耗(由高到低)','本月消耗(由低到高)'],
+ filter2: ['7天内卡项到期','15天内卡项到期','30天内卡项到期'],
+ filter3: [{
+ title: '到店途径',
+ list: [
+ {
+ 'title': '美团预约',
+ 'value': ''
+ },
+ {
+ 'title': '网络预约',
+ 'value': ''
+ }
+ ]
+ },
+ {
+ title: '会员等级',
+ list: [
+ {
+ 'title': '一级会员',
+ 'value': ''
+ },
+ {
+ 'title': '二级会员',
+ 'value': ''
+ },
+ {
+ 'title': '三级会员',
+ 'value': ''
+ }
+ ]
+ },
+ {
+ title: '活跃度',
+ list: [
+ {
+ 'title': '活跃',
+ 'value': ''
+ },
+ {
+ 'title': '不活跃',
+ 'value': ''
+ },
+ {
+ 'title': '睡眠',
+ 'value': ''
+ },
+ {
+ 'title': '沉睡',
+ 'value': ''
+ }
+ ]
+ }]
+ };
+ },
+ onHide(){
+ this.$refs.filterDropdownEl.hide();
+ },
+ methods:{
+ caculateBgcolor(index){
+ return this.colors[index%8];
+ },
+ toDetail(){
+ uni.navigateTo({
+ url:'./detail'
+ })
+ },
+ filterCustom(type){
+ this.$refs.filterDropdownEl.show();
+ if(type===1){
+ this.filterList = this.filter1;
+ this.filterType = 1;
+ } else if(type===2){
+ this.filterList = this.filter2;
+ this.filterType = 1;
+ } else {
+ this.filterList = this.filter3;
+ this.filterType = 0;
+ }
+ }
+ }
+ }
</script>
-<style>
+<style scoped>
+ .container{
+ padding: 10px 10px 0;
+ }
+ .sort-wrap{
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ font-size: 13px;
+ padding: 10px 0;
+ }
+ .sort-wrap .iconfont{
+ font-size: 14px;
+ padding-left: 4px;
+ }
+ .first-name{
+ display: inline-block;
+ width: 38px;
+ height: 38px;
+ line-height: 38px;
+ margin-right: 10px;
+ border-radius: 50%;
+ text-align: center;
+ color: #FFFFFF;
+ font-size: 16px;
+ }
+ .member-list{
+ font-size: 14px;
+ }
+ .member-list-con{
+ padding: 18px 0 18px 5px;
+ border-bottom: 1px solid #EDEAF4;
+ }
+ .quick-entry{
+ position: fixed;
+ bottom: 80px;
+ right: 15px;
+ width: 50px;
+ height: 50px;
+ line-height: 50px;
+ text-align: center;
+ border-radius: 50%;
+ background: #518EFF;
+ color: #FFFFFF;
+ box-shadow: 4px 4px 5px #ddd;
+ }
+ .quick-entry .iconfont{
+ font-size: 24px;
+ }
+ .navigator-hover{
+ border-radius: 50%;
+ }
</style>
--
Gitblit v1.9.1