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.
 
 
 
 

37 lines
731 B

import api from '@/utils/api'
export default {
getCyJyxm: (modelId, sort) => {
return api({
url: '/jyxm/getCyJyxm',
method: 'get',
params: {
templateId: modelId,
order: sort
}
})
},
getJdCyJyxm: (ysjlId, templateId, orders, cjState) => {
return api({
url: '/jyxm/getJdJyxmByYsjl',
method: 'get',
params: {
ysjlId: ysjlId,
templateId: templateId,
orders: orders,
cjState
}
})
},
getCyJyxmByYsjl: (ysjlId, isReport, sort) => {
return api({
url: '/jyxm/getCyJyxmByYsjl',
method: 'get',
params: {
ysjlId: ysjlId,
isReport: isReport,
order: sort
}
})
}
}