diff --git a/components/bonus/sgsy.vue b/components/bonus/sgsy.vue
index 0ba8f81..dde3ad1 100644
--- a/components/bonus/sgsy.vue
+++ b/components/bonus/sgsy.vue
@@ -1,410 +1,419 @@
-
-
-
-
- {{'查询时间'}}
-
-
- {{query.startDate}}
- {{'开始日期'}}
-
-
- {{'至'}}
-
-
- {{query.endDate}}
- {{'结束日期'}}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{'奖金日期'}}
-
-
- {{item.settleDate }}
-
-
-
-
- {{'直推收益'}}({{ isLocaled() }})
-
-
- {{item.directIncome| toThousandthAndKeepDecimal }}
-
-
-
-
- {{'拓展收益'}}({{ isLocaled() }})
-
-
- {{item.expandIncome| toThousandthAndKeepDecimal}}
-
-
-
+
+
+
+ {{ '查询时间' }}
+
+
+ {{
+ query.startDate
+ }}
+ {{ '开始日期' }}
+
+
+ {{ '至' }}
+
+
+ {{
+ query.endDate
+ }}
+ {{ '结束日期' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ '奖金日期' }}
+
+
+ {{ item.settleDate }}
+
+
+
+
+ {{ '直推收益' }}
+
+
+ {{ item.directIncome | toThousandthAndKeepDecimal }}
+
+
+
+
+ {{ '拓展收益' }}
+
+
+ {{ item.expandIncome | toThousandthAndKeepDecimal }}
+
+
+
+
+ {{ '辅导收益' }}
+
+
+ {{ item.coachIncome | toThousandthAndKeepDecimal }}
+
+
+
-
-
- {{'服务补贴'}}({{ isLocaled() }})
-
-
- {{item.serviceIncome| toThousandthAndKeepDecimal}}
-
-
-
-
- 级差收益({{ isLocaled() }})
-
-
- {{item.repurRangeIncome| toThousandthAndKeepDecimal}}
-
-
-
-
- {{$t('直推级差')}}({{ isLocaled() }})
-
-
- {{item.globalPoints| toThousandthAndKeepDecimal}}
-
-
-
-
- {{'重复消费'}}({{ isLocaled() }})
-
-
- {{item.backPoints| toThousandthAndKeepDecimal}}
-
-
-
-
- {{'平台服务费'}}({{ isLocaled() }})
-
-
- {{item.serviceSpend| toThousandthAndKeepDecimal}}
-
-
-
-
- {{'实发小计'}}({{ isLocaled() }})
-
-
- {{item.purRealSubtotal| toThousandthAndKeepDecimal}}
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
+.search-bg {
+ width: 432rpx;
+ height: 35rpx;
+ background: #f5f6f8;
+ border-radius: 33rpx;
+ display: flex;
+ position: relative;
+ padding: 20rpx 50rpx;
+ margin-left: 20rpx;
+}
+
diff --git a/config/request.js b/config/request.js
index 7a85d8a..ef3e1f9 100644
--- a/config/request.js
+++ b/config/request.js
@@ -13,7 +13,7 @@ module.exports = vm => {
//#ifdef DEV_SERVER
console.log('DEV_SERVER')
- config.baseURL = 'http://localhost:8080'
+ config.baseURL = 'http://t-app.beida413.com/prod-api'
//#endif
//#ifdef QA_SERVER
diff --git a/pages/bonus/index.vue b/pages/bonus/index.vue
index 05d15c5..5b76bc1 100644
--- a/pages/bonus/index.vue
+++ b/pages/bonus/index.vue
@@ -1,234 +1,320 @@
-
-
-
-
- {{ item.name }}
-
-
-
-
- 本月合计: {{monthIncomeTotal | toThousandthAndKeepDecimal}}
- 昨日合计: {{toSum | toThousandthAndKeepDecimal}}
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ 本月合计
+ {{
+ formatCurrency(monthIncomeTotal)
+ }}
+
+
+
+ 昨日合计
+ {{
+ formatCurrency(toSum)
+ }}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
+.texts {
+ color: #333;
+ font-size: 26rpx;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ /* width:200rpx; */
+ text-align: right;
+}
+
+.select-text {
+ display: flex;
+ margin-right: 20rpx;
+ font-size: 26rpx;
+ color: #333;
+ position: relative;
+}
+
+.selIcon {
+ width: 30rpx;
+ height: 30rpx;
+ margin: 5rpx 0 0 20rpx;
+}
+
+page {
+ background-color: #f2f2f2;
+}
+
+.styles {
+ border: none !important;
+ color: #fff !important;
+ background: #005bac;
+}
+
+.top-lists {
+ width: fit-content;
+ display: flex;
+ padding: 30rpx 30rpx 0 0;
+ background-color: #fff;
+ height: 80rpx;
+ line-height: 80rpx;
+
+ .nav-view {
+ width: 200rpx;
+ cursor: pointer;
+ padding: 0 26rpx;
+ height: 44rpx;
+ border-radius: 10rpx;
+ border: 1rpx solid #999999;
+ font-size: 14rpx;
+ text-align: center;
+ line-height: 44rpx;
+ margin-left: 20rpx;
+ color: #999;
+ }
+}
+