Commit 33562d97 by 姜雷

Merge branch 'develop' into 'test'

Develop See merge request !47
parents 6c65044d 557d9b7f
......@@ -78,8 +78,9 @@ export default {
},
'g2-legend': {
width: '230px',
'max-width': '230px',
'max-height': this.height + 'px',
// left: '-20px',
right: 0,
},
'g2-legend-list-item': {
color: '#333',
......
......@@ -66,9 +66,14 @@ export default {
console.log('in getAllData', this.showMoney);
if (this.showMoney) {
fetchUserAccount({
customerId: this.customerId,
})
const entity = this.customerId
? {
customerId: this.customerId,
}
: {
customerPhone: this.customerPhone,
};
fetchUserAccount(entity)
.then(res => {
this.serviceList = res.data;
})
......
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