confirmation.vue 722 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="confirmation">
  3. <view class="cart-content empty" :class="showEmptyClass">
  4. <view class="empty-container">
  5. <image class="empty-container-image" src="https://img.caimei365.com/group1/M00/03/71/Cmis2F3wna-AX-p9AAEv0C5HQdI477.png" mode="aspectFit"></image>
  6. <text class="error-text">本页面正在开发中,敬请期待~~</text>
  7. <view class="login-btn" @click="goIndex">回到商城首页</view>
  8. </view>
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default{
  14. data(){
  15. return{
  16. }
  17. },
  18. onLoad() {
  19. },
  20. methods:{
  21. goIndex(){
  22. uni.switchTab({
  23. url: '/pages/tabBar/home/home'
  24. });
  25. }
  26. },
  27. onShow() {
  28. }
  29. }
  30. </script>
  31. <style>
  32. </style>