diff --git a/yudao-ui-app/pages/member_application/index.vue b/yudao-ui-app/pages/member_application/index.vue
index 016c2f5e5..a2333e1cd 100644
--- a/yudao-ui-app/pages/member_application/index.vue
+++ b/yudao-ui-app/pages/member_application/index.vue
@@ -75,13 +75,13 @@
icon: "icon-weixinzhifu",
value: 'WXPAY',
title: '微信快捷支付'
- },
- {
- name: "支付宝",
- icon: "icon-zhifubao",
- value: 'ALIPAY',
- title: '支付宝快捷支付'
}
+ // {
+ // name: "支付宝",
+ // icon: "icon-zhifubao",
+ // value: 'ALIPAY',
+ // title: '支付宝快捷支付'
+ // }
],
pay_close: false,
activeIndex: [],
diff --git a/yudao-ui-app/pages/member_equity/index.vue b/yudao-ui-app/pages/member_equity/index.vue
index a97999a24..ed5dfd6d2 100644
--- a/yudao-ui-app/pages/member_equity/index.vue
+++ b/yudao-ui-app/pages/member_equity/index.vue
@@ -56,7 +56,7 @@
返费结束时间
- {{item.endTime}}
+ {{dateConvert(item.startTime)}}
@@ -136,6 +136,18 @@
this.equityData = equity.data
},
methods: {
+ dateConvert(date){
+ const _date = new Date(date)
+ _date.setFullYear(_date.getFullYear() + 1)
+ _date.setDate(_date.getDate() - 30)
+ const Y = _date.getFullYear() + "-"
+ const M =
+ (_date.getMonth() + 1 < 10
+ ? "0" + (_date.getMonth() + 1)
+ : _date.getMonth() + 1) + "-";
+ const D = (_date.getDate() < 10 ? "0" + _date.getDate() : _date.getDate())
+ return Y + M + D
+ },
handleDetailed(reportId){
uni.navigateTo({
url:`/pages/member_detail/index?reportId=${reportId}`,
diff --git a/yudao-ui-app/pages/member_others/index.vue b/yudao-ui-app/pages/member_others/index.vue
index 322c08a35..433105fea 100644
--- a/yudao-ui-app/pages/member_others/index.vue
+++ b/yudao-ui-app/pages/member_others/index.vue
@@ -88,13 +88,13 @@
icon: "icon-weixinzhifu",
value: 'WXPAY',
title: '微信快捷支付'
- },
- {
- name: "支付宝",
- icon: "icon-zhifubao",
- value: 'ALIPAY',
- title: '支付宝快捷支付'
}
+ // {
+ // name: "支付宝",
+ // icon: "icon-zhifubao",
+ // value: 'ALIPAY',
+ // title: '支付宝快捷支付'
+ // }
],
pay_close: false,
activeIndex: [],
diff --git a/yudao-ui-app/pages/member_renew/index.vue b/yudao-ui-app/pages/member_renew/index.vue
index 1bbd12ca6..44f814207 100644
--- a/yudao-ui-app/pages/member_renew/index.vue
+++ b/yudao-ui-app/pages/member_renew/index.vue
@@ -83,13 +83,13 @@ import store from '@/store/index';
icon: "icon-weixinzhifu",
value: 'WXPAY',
title: '微信快捷支付'
- },
- {
- name: "支付宝",
- icon: "icon-zhifubao",
- value: 'ALIPAY',
- title: '支付宝快捷支付'
}
+ // {
+ // name: "支付宝",
+ // icon: "icon-zhifubao",
+ // value: 'ALIPAY',
+ // title: '支付宝快捷支付'
+ // }
],
pay_close: false,
activeIndex:[],
diff --git a/yudao-ui-app/pages/sale_performance/index.vue b/yudao-ui-app/pages/sale_performance/index.vue
index e7e53ee0b..e318ce445 100644
--- a/yudao-ui-app/pages/sale_performance/index.vue
+++ b/yudao-ui-app/pages/sale_performance/index.vue
@@ -71,7 +71,10 @@
{{ item.grade }}
- ¥{{item.payPrice | currency}}
+
+ ¥{{item.payPrice | currency}}
+
+