#
luxiaotao1123
2024-06-17 6c238c4ff0fb437de1983eed6b7f340b06402341
1
2
3
4
5
6
7
8
9
import request from '../../utils/request';
 
export async function getBoxData(_params) {
    const res = await request.get('/digital/stock/info', _params);
    if (res.data.code === 200) {
        return res.data.data;
    }
    return Promise.reject(new Error(res.data.msg));
}