Commit 33562d97 by 姜雷

Merge branch 'develop' into 'test'

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