diff --git a/pages/index/home.vue b/pages/index/home.vue index 71959ad..41cdca6 100644 --- a/pages/index/home.vue +++ b/pages/index/home.vue @@ -54,9 +54,9 @@ - + {{item.goodsCategoryName}} @@ -66,9 +66,9 @@ - + {{item.goodsCategoryName}} diff --git a/pages/index/index.vue b/pages/index/index.vue index 5cfc177..494d07d 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -24,7 +24,7 @@ 公司、家居家政雇佣上门服务 - + + + diff --git a/pages/index/my-home.vue b/pages/index/my-home.vue index b94f973..6aee92c 100644 --- a/pages/index/my-home.vue +++ b/pages/index/my-home.vue @@ -1,8 +1,8 @@ @@ -280,7 +280,7 @@ name: '服务中' }, { type: 4, - name: '完成待确认' + name: '待确认' }, { type: 5, name: '已完成' @@ -343,9 +343,16 @@ }) }, showPage(pageUrl) { - uni.navigateTo({ - url: pageUrl - }) + if (pageUrl) { + uni.navigateTo({ + url: pageUrl + }) + } else { + uni.showToast({ + icon: 'none', + title: '功能开发中' + }) + } } } } diff --git a/pages/product/product-detail.vue b/pages/product/product-detail.vue index 5448093..28c5374 100644 --- a/pages/product/product-detail.vue +++ b/pages/product/product-detail.vue @@ -2,16 +2,16 @@ - - + + 返回 - + 商品详情 服务 - 评价 + 详情 @@ -128,14 +128,14 @@ :class="'cuIcon-' + (isShowAllSpecs ? 'fold' : 'unfold')"> - - - 商品评价 + + + - - 开发中,敬请期待 + + - + @@ -155,22 +155,30 @@ + + + 首页 + + + + + 店铺 + - + + 立即订购 @@ -363,6 +371,11 @@ uni.navigateTo({ url: '/pages/my/my-cart?myCartInfo=' + encodeURIComponent(JSON.stringify(myCartInfo)) }); + }, + showIndex() { + uni.navigateTo({ + url: '/pages/index/index' + }); } } }