diff --git a/package/pages/zysc/member/order.vue b/package/pages/zysc/member/order.vue index 7dd1043..abc498c 100644 --- a/package/pages/zysc/member/order.vue +++ b/package/pages/zysc/member/order.vue @@ -184,12 +184,17 @@ console.log(e); // this.sendId = this.WayListTwo[e.detail.value].id; this.sendName = this.WayList[e.detail.value]; + console.log('this.sendName---->',this.sendName); + if (this.sendName === '快递') { this.sendWay = 1; this.postagePrice = this.postagePrices; } else if (this.sendName === '自取') { this.sendWay = 2; this.postagePrice = 0; + }else if (this.sendName === '同城自取') { + this.sendWay = 2; + this.postagePrice = 0; } }, // 根据地址id查询地址 diff --git a/pages.json b/pages.json index b167bf1..88cbafe 100644 --- a/pages.json +++ b/pages.json @@ -50,6 +50,18 @@ "navigationBarTitleText": "当前收益" } }, + { + "path": "pages/index/currentYeji", + "style": { + "navigationBarTitleText": "当前业绩" + } + }, + { + "path": "pages/index/previousYeji", + "style": { + "navigationBarTitleText": "往期业绩" + } + }, { "path": "pages/index/addClock", "style": { diff --git a/pages/index/index.vue b/pages/index/index.vue index 4a795ad..faf4e0d 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -118,7 +118,7 @@ --> - + {{ currentWholeIncome ? currentWholeIncome : 0 }} 当前业绩 @@ -815,6 +815,11 @@ export default { url:'/pages/index/currentIncome' }) }, + handleYeji(){//跳往业绩页面 + uni.navigateTo({ + url:'/pages/index/currentYeji' + }) + }, showMoreMaterialPackageList() { this.showMaterialPackageListStatus = true; },