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.
17 lines
398 B
17 lines
398 B
import request from '@/utils/request'
|
|
// 月度报表 必备件明细
|
|
export default {
|
|
// 查询分页列表
|
|
listPage: function(params) {
|
|
return request({
|
|
baseURL: "http://127.0.0.1:4523/m1/613533-0-default",
|
|
url: '/as/v1/essentialDetails/listPage',
|
|
method: 'post',
|
|
data: params,
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
}
|
|
})
|
|
},
|
|
|
|
}
|
|
|