zjf
2023-03-08 92b359a6458fb985b78431e0a2f54b548e01b1ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import request from '@/utils/request'
 
export function GetAutoProductTypeList (data) {
  return request({
    url: '/Product/GetAutoProductTypeList',
    method: 'get'
  })
}
export function GetAutoProductListAsync (data) {
  return request({
    url: '/Product/GetAutoProductListAsync?' + (data.TypeName ? data.TypeName + '&' : '') + 'Name=' + data.Name + '&PageIndex=' + data.PageIndex + '&PageSize=' + data.PageSize,
    method: 'get'
  })
}