交易所前端蓝色ui 4.5 jiem
lxf
2025-04-18 02a3d94d359b34e915f34abec024cbc1504a6a7c
src/views/forex/home.vue
@@ -366,17 +366,19 @@
  router.push("/trading/spreads-swaps-commissions");
};
const getSymbol = () => {
  console.log('getSymbol')
  API.url("wap/api/item!list.action", {}).then((res) => {
    allSymbol.value = res.data
      .map((val) => {
        return val.symbol;
      })
      .join(",");
    getList();
  }).catch((err) => {
    console.log(err)
  });
  console.log("getSymbol");
  API.url("wap/api/item!list.action", {})
    .then((res) => {
      allSymbol.value = res.data
        .map((val) => {
          return val.symbol;
        })
        .join(",");
      getList();
    })
    .catch((err) => {
      console.log(err);
    });
};
const getList = () => {
  API.url("wap/api/hobi!getRealtime.action", { symbol: allSymbol.value }).then(