Commit 75c3c7fc39a1ecebc4ef9a71e8dfd4a731191ac6

Authored by chenbiao
1 parent b36ea78a

add 修复bug

Showing 1 changed file with 11 additions and 5 deletions
pages/index/index.vue
... ... @@ -63,7 +63,7 @@
63 63  
64 64 </view>
65 65 <view class="uni-flex uni-row">
66   - <view class="flex-item" @="toBusinessCardPage">
  66 + <view class="flex-item" @click="toBusinessCardPage">
67 67 <view class="">
68 68 <image src="../../static/me/me-coupon.png" class="index-icon"></image>
69 69 </view>
... ... @@ -182,10 +182,16 @@
182 182 });
183 183 },
184 184 toInvoicePage() {
185   - uni.navigateTo({
186   - url: '../invoiceClaim/invoiceClaim'
187   -
188   - });
  185 + uni.showToast({
  186 + title: '正在开发中...',
  187 + icon: 'none',
  188 + duration: 2000
  189 + })
  190 +
  191 + // uni.navigateTo({
  192 + // url: '../invoiceClaim/invoiceClaim'
  193 +
  194 + // });
189 195 },
190 196 toBusinessCardPage() {
191 197 uni.navigateTo({
... ...