#
luxiaotao1123
2024-05-15 3f41ad8cf82b08585e89815feadb5a17938b3033
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));
}