智能照明系统APP-本地串口
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.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/50/5063cf39f48079dac90433bb46a...

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: {
},
})
}