@@ -736,7 +736,11 @@ const getDict = () => {
}
});
proxy.post("/companyInfo/list", { pageNum: 1, pageSize: 999 }).then((res) => {
- logisticsData.value = res.reverse().slice(0, 100); //截取前100
+ logisticsData.value = res.reverse();
+ logisticsData.value = logisticsData.value.map((x) => ({
+ label: x.name,
+ value: x.code,
+ }));
};
getDict();