From 3bdac82e0066f97307fc6a7177cecdf89a5ba7e1 Mon Sep 17 00:00:00 2001 From: whycq <whycq> Date: 星期四, 07 四月 2022 09:23:39 +0800 Subject: [PATCH] # --- pages/index/index.vue | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/pages/index/index.vue b/pages/index/index.vue index 76b3a88..2e06c43 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> @@ -70,6 +70,12 @@ name: 'demo', color: 'red', cuIcon: 'exit' + }, + { + title: 'baidu', + name: 'baidu', + color: 'red', + cuIcon: 'exit' }] } }, @@ -79,6 +85,9 @@ methods: { changeImg(){ console.log(1) + }, + checked() { + uni.vibrateShort(); } } } -- Gitblit v1.9.1