diff --git a/pages/my/my.vue b/pages/my/my.vue
index b2d457f..077ee87 100755
--- a/pages/my/my.vue
+++ b/pages/my/my.vue
@@ -46,6 +46,12 @@
商城订单
+
+
+
+ 家政订单
+
+
@@ -333,6 +339,20 @@
url: '/pages/hcWebView/hcWebView?url='+_url
});
});
+ },
+ housekeepingOrder:function(){
+ let that = this;
+ let _communityId = '';
+ getCurCommunity()
+ .then(res=>{
+ _communityId = res.communityId;
+ return getHcCode();
+ }).then(_data => {
+ let _url = "/pages/homemarking/order?hcCommunityId="+_communityId+"&hcCode="+_data.hcCode;
+ uni.navigateTo({
+ url: '/pages/hcWebView/hcWebView?url='+_url
+ });
+ });
}
}