fixed bug 8.11

This commit is contained in:
2020-08-11 09:46:05 +08:00
parent 003bc07c6b
commit 4739ef71a9
8 changed files with 21 additions and 13 deletions

View File

@@ -98,7 +98,7 @@ export default {
},
onNavigationBarButtonTap(e) {
if( e.index == 0 ) uni.navigateBack();
if( e.index == 1 ) this.customers();
// if( e.index == 1 ) this.customers();
},
methods: {
customers(){

View File

@@ -46,7 +46,7 @@ export default {
this.$u.api.getMemberPointsStat().then((res)=>{
if (res.errCode == 0) {
this.memberInfo = res.data;
this.nodes = common.unescapeHTML(this.memberInfo.points_rule);
this.nodes = common.unescapeHTML(this.memberInfo.points_rule.document_content);
}
})
},