|
@@ -105,10 +105,11 @@ export default {
|
|
getData() {
|
|
getData() {
|
|
this.$http.get('/sc-community/statisticsCollectionRate', this.mixins_query).then(({ data, msg, status }) => {
|
|
this.$http.get('/sc-community/statisticsCollectionRate', this.mixins_query).then(({ data, msg, status }) => {
|
|
if (status == 0 && !!data) {
|
|
if (status == 0 && !!data) {
|
|
|
|
+ debugger;
|
|
this.dataObj = {
|
|
this.dataObj = {
|
|
receivableAmount: data.receivableAmount,
|
|
receivableAmount: data.receivableAmount,
|
|
receivedAmount: data.receivedAmount,
|
|
receivedAmount: data.receivedAmount,
|
|
- uncollected: parseInt((data.receivableAmount - data.receivedAmount || 0).toFixed(2))
|
|
|
|
|
|
+ uncollected: (data.receivableAmount - data.receivedAmount || 0).toFixed(2)
|
|
};
|
|
};
|
|
} else {
|
|
} else {
|
|
this.dataObj = {
|
|
this.dataObj = {
|