#
luxiaotao1123
2024-06-08 3796a650323aa5efbdf6c5ef00a23bc9bec8e43a
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));
}