|
|
@ -426,7 +426,6 @@ class CustomerStore {
|
|
|
|
.then((response) => response.json())
|
|
|
|
.then((response) => response.json())
|
|
|
|
.then((json) => {
|
|
|
|
.then((json) => {
|
|
|
|
runInAction(() => {
|
|
|
|
runInAction(() => {
|
|
|
|
this.host_case_data.loading = false;
|
|
|
|
|
|
|
|
switch(groupBy){
|
|
|
|
switch(groupBy){
|
|
|
|
case "1":
|
|
|
|
case "1":
|
|
|
|
this.host_case_data.summaryData = json.result?json.result:[];
|
|
|
|
this.host_case_data.summaryData = json.result?json.result:[];
|
|
|
@ -439,6 +438,7 @@ class CustomerStore {
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
case "4":
|
|
|
|
case "4":
|
|
|
|
this.host_case_data.singleDetailData = json.result?json.result:[];
|
|
|
|
this.host_case_data.singleDetailData = json.result?json.result:[];
|
|
|
|
|
|
|
|
this.host_case_data.loading = false;
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|