1234567891011121314151617181920212223242526272829303132333435363738 |
- <template>
- <view class="confirmation">
- <view class="cart-content empty" :class="showEmptyClass">
- <view class="empty-container">
- <image class="empty-container-image" src="https://img.caimei365.com/group1/M00/03/71/Cmis2F3wna-AX-p9AAEv0C5HQdI477.png" mode="aspectFit"></image>
- <text class="error-text">本页面正在开发中,敬请期待~~</text>
- <view class="login-btn" @click="goIndex">回到商城首页</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
-
- }
- },
- onLoad() {
-
- },
- methods:{
- goIndex(){
- uni.switchTab({
- url: '/pages/tabBar/home/home'
- });
- }
- },
- onShow() {
-
- }
- }
- </script>
- <style>
-
- </style>
|