zhangwencui
2 天以前 8f858825a5001ce2f4d0a6fb1e4a089e6748a8e4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import request from "@/utils/request.js";
 
export function productModelList(query) {
    return request({
        url: '/basic/product/pageModel',
        method: 'get',
        params: query
    })
}
 
/** 产品定性(parentName)下拉选项 */
export function getProductParentNames() {
    return request({
        url: '/basic/product/getParentNames',
        method: 'get',
    })
}