You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
619 B
35 lines
619 B
import axios from '@/common/network/request.js';
|
|
|
|
//分页查询产品列表
|
|
export function getProductPage(data) {
|
|
return axios({
|
|
url: '/line/doPagedQuery.do',
|
|
method: 'POST',
|
|
params: {
|
|
'start':data.perpage*(data.currentPage-1)+1,
|
|
'limit':data.perpage,
|
|
},
|
|
})
|
|
}
|
|
|
|
//条件查询项目列表
|
|
export function getProductAll() {
|
|
return axios({
|
|
url: '/line/doexecute.do',
|
|
method: 'POST',
|
|
params: {
|
|
|
|
},
|
|
})
|
|
}
|
|
|
|
//查询单个项目详情
|
|
export function getProductOne(prodid) {
|
|
return axios({
|
|
url: '/line/doLoadData',
|
|
method: 'POST',
|
|
params: {
|
|
|
|
},
|
|
})
|
|
} |