From c93eff979aba7e4e071b3363f9146d5b4d49996e Mon Sep 17 00:00:00 2001
From: li-guang <153605324@qq.com>
Date: Mon, 21 Dec 2020 14:47:43 +0800
Subject: [PATCH] 服务单

---
 hive-app/pages/member/index.vue |   20 +++++++++++---------
 1 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/hive-app/pages/member/index.vue b/hive-app/pages/member/index.vue
index 85cb984..e92d9e2 100644
--- a/hive-app/pages/member/index.vue
+++ b/hive-app/pages/member/index.vue
@@ -1,6 +1,9 @@
 <template>
 	<view class="container">
-		<search-bar :placeholder=placeholder></search-bar>
+		<!-- #ifndef H5 -->
+		<view class="status_bar"></view>
+		<!-- #endif -->
+		<search-bar></search-bar>
 		<view class="sort-wrap">
 			<view @click="filterCustom(1)">
 				<text>本月到店次数</text>
@@ -30,8 +33,10 @@
 			</view>
 			<indexed-list></indexed-list>
 		</view>
-		<view class="quick-entry" @click="addMember">
-			<text class="iconfont iconjiahao"></text>
+		<view class="quick-entry">
+			<navigator url="./editMember" hover-class="navigator-hover">
+				<text class="iconfont iconjia"></text>
+			</navigator>
 		</view>
 	</view>
 </template>
@@ -48,7 +53,6 @@
 		},
 		data() {
 			return {
-				placeholder:"请输入会员姓名、手机号、编号查询",
 				colors: ['#CCC6B4', '#C0CCB4', '#B4C2CC', '#BEB4CC', '#B4CCBE', '#B4CCCA', '#CCB4C6', '#CCB4B4'],
 				filterType: 1,
 				filterList: [],
@@ -131,11 +135,6 @@
 					this.filterList = this.filter3;
 					this.filterType = 0;
 				}
-			},
-			addMember(){
-				uni.navigateTo({
-					url:'./addMember'
-				})
 			}
 		}
 	}
@@ -188,4 +187,7 @@
 	.quick-entry .iconfont{
 		font-size: 24px;
 	}
+	.navigator-hover{
+		border-radius: 50%;
+	}
 </style>

--
Gitblit v1.9.1