新版交易所前段管理后台
1
jhzh
2025-08-18 1107fcd6f49bf9543b23e1b74160f2dc9162bb3d
1
2
3
4
5
6
7
export const openImage = (img) => {
  console.log(img)
  const image = new Image();
  image.src = img;
  const newWindow = window.open();
  newWindow.document.body.appendChild(image);
}