#
whycq
2022-04-07 3bdac82e0066f97307fc6a7177cecdf89a5ba7e1
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>
@@ -64,6 +64,18 @@
                  name: 'logOut',
                  color: 'grey',
                  cuIcon: 'exit'
               },
               {
                  title: 'demo',
                  name: 'demo',
                  color: 'red',
                  cuIcon: 'exit'
               },
               {
                  title: 'baidu',
                  name: 'baidu',
                  color: 'red',
                  cuIcon: 'exit'
               }]
         }
      },
@@ -73,6 +85,9 @@
      methods: {
         changeImg(){
            console.log(1)
         },
         checked() {
            uni.vibrateShort();
         }
      }
   }