|
@@ -446,11 +446,11 @@ const statConfig = computed(() => [
|
|
|
},
|
|
|
]);
|
|
|
const getHeaderData = () => {
|
|
|
- proxy.post("/commission/getHeadStatistics").then((res) => {
|
|
|
- headerData.value = res;
|
|
|
- });
|
|
|
+ // proxy.post("/commission/getHeadStatistics").then((res) => {
|
|
|
+ // headerData.value = res;
|
|
|
+ // });
|
|
|
};
|
|
|
-getHeaderData();
|
|
|
+// getHeaderData();
|
|
|
const config = computed(() => {
|
|
|
return [];
|
|
|
});
|
|
@@ -504,6 +504,11 @@ const getList = async (req) => {
|
|
|
loading.value = false;
|
|
|
}, 200);
|
|
|
});
|
|
|
+ proxy
|
|
|
+ .post("/commission/getHeadStatistics", sourceList.value.pagination)
|
|
|
+ .then((res) => {
|
|
|
+ headerData.value = res;
|
|
|
+ });
|
|
|
};
|
|
|
|
|
|
const onQuery = () => {
|
|
@@ -663,7 +668,7 @@ const submitChangeForm = () => {
|
|
|
});
|
|
|
openChange.value = false;
|
|
|
getList();
|
|
|
- getHeaderData();
|
|
|
+ // getHeaderData();
|
|
|
},
|
|
|
(err) => {
|
|
|
console.log(err);
|