|
@@ -188,8 +188,8 @@ export default {
|
|
|
page: 1,
|
|
|
size: 10,
|
|
|
descs: 'id',
|
|
|
- startDate: '2024-05-01 00:00:00',
|
|
|
- endDate: '2024-06-01 00:00:00',
|
|
|
+ startDate: null,
|
|
|
+ endDate: null
|
|
|
},
|
|
|
listQuery2: {
|
|
|
page: 1,
|
|
@@ -306,6 +306,10 @@ export default {
|
|
|
this.getMyAssetsIncome();
|
|
|
},
|
|
|
getMyMajorIncome() {
|
|
|
+ if (this.findDate) {
|
|
|
+ this.listQuery1.startDate = this.findDate[0] + ' 00:00:00';
|
|
|
+ this.listQuery1.endDate = this.findDate[1] + ' 23:59:59';
|
|
|
+ }
|
|
|
this.$api.businessIncome.myMajorIncome(this.listQuery1).then(res => {
|
|
|
if (res.code === 200) {
|
|
|
this.majorIncome = res.data;
|