wanshenmean
13 小时以前 f288ccc545f8cc32bc922c96dfb3cab9a1f92ec6
1
2
3
4
5
6
import { client } from '../client';
 
export const stockApi = {
  getPageList: (params: any) => client.get('/api/StockInfo/getDetailPageList', { params }),
  getDetail: (id: number) => client.get(`/api/StockInfoDetail/${id}`),
};