#
luxiaotao1123
2024-05-11 4c9f92527ec05fc6be9d0115ac3cf28b007ba8f0
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));
}