Commit 4d8f9b0e authored by honghy's avatar honghy

Merge branch 'jd_dev' of...

Merge branch 'jd_dev' of http://110.41.143.128:8081/lanbaoming/jiedao-app-customer-new-master into jd_dev
parents 3260f7e7 08ab2a83
......@@ -106,8 +106,11 @@ export default {
},
methods: {
formattedLevelData(value) {
const item=this.levelData.filter(item => value==item.value)[0]
return item[this.$lang.label];
if (value!=null){
const item=this.levelData.filter(item => value==item.value)[0]
return item[this.$lang.label];
}
return '';
},
getLevels () {
this.$request.getConfig('membership_levels').then(res => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment