From c366ccb5e814eba5711dd9edf78cac8379b14a70 Mon Sep 17 00:00:00 2001
From: whycq <whycq>
Date: 星期三, 06 四月 2022 16:43:48 +0800
Subject: [PATCH] #
---
pages/index/index.vue | 43 ++++++++-----------------------------------
1 files changed, 8 insertions(+), 35 deletions(-)
diff --git a/pages/index/index.vue b/pages/index/index.vue
index 76b3a88..4d07d13 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -8,7 +8,7 @@
</view>
<view class="nav-list" >
<navigator hover-class="none" :url="'/pages/basics/' + item.name" class="nav-li" navigateTo :class="'bg-'+item.color"
- :style="[{animation: 'show ' + ((index+1)*0.2+1) + 's 1'}]" v-for="(item,index) in elements" :key="index">
+ :style="[{animation: 'show ' + ((index+1)*0.2+1) + 's 1'}]" v-for="(item,index) in elements" :key="index" @click="checked()">
<view class="nav-title">{{item.title}}</view>
<view class="nav-name">{{item.name}}</view>
<text :class="'cuIcon-' + item.cuIcon"></text>
@@ -24,51 +24,21 @@
return {
elements:[
{
- title: '鍏ュ簱',
- name: 'store',
- color: 'orange',
- cuIcon: 'deliver'
- },
- {
- title: '鍑哄簱',
- name: 'delivery',
- color: 'brown',
- cuIcon: 'deliver_fill'
- },
- {
title: '涓婃灦绠$悊',
name: 'sale',
color: 'olive',
cuIcon: 'goods'
},
{
- title: '蹇�熶笂鏋�',
- name: 'publish',
- color: 'green',
- cuIcon: 'goodsnew'
- },
- {
- title: '鎷h揣鍗�',
- name: 'orders',
- color: 'cyan',
- cuIcon: 'calendar'
- },
- {
- title: '鐩樼偣',
- name: 'stock',
- color: 'blue',
- cuIcon: 'squarecheck'
+ title: '鍏ュ簱绠$悊',
+ name: 'pakin',
+ color: 'olive',
+ cuIcon: 'goods'
},
{
title: '閫�鍑虹櫥褰�',
name: 'logOut',
color: 'grey',
- cuIcon: 'exit'
- },
- {
- title: 'demo',
- name: 'demo',
- color: 'red',
cuIcon: 'exit'
}]
}
@@ -79,6 +49,9 @@
methods: {
changeImg(){
console.log(1)
+ },
+ checked() {
+ uni.vibrateShort();
}
}
}
--
Gitblit v1.9.1