1.优化
This commit is contained in:
2025-07-08 17:50:37 +08:00
parent 7565056a7e
commit f6e5bb78da
8 changed files with 39 additions and 28 deletions
+9 -6
View File
@@ -96,12 +96,15 @@
twoLApi({
sex: chooseType.value,
depart: selectValue.value,
}).then((res) => {
console.log(res, 'resessss');
if (res.code == 200) {
initChart(res.result);
}
});
})
.then((res: any) => {
if (res.code == 200) {
initChart(res.result);
}
})
.catch((err) => {
console.log(err);
});
}
function initChart(value) {