|
@@ -184,4 +184,28 @@ export default {
|
|
|
data: form,
|
|
|
})
|
|
|
},
|
|
|
+ //按月封装
|
|
|
+ async byMonthPack(form) {
|
|
|
+ return HcApi({
|
|
|
+ url: '/api/blade-business/contractLog/byMonthPack',
|
|
|
+ method: 'post',
|
|
|
+ data: form,
|
|
|
+ })
|
|
|
+ },
|
|
|
+ //
|
|
|
+ //查询按月封装
|
|
|
+ async selectByMonthPack(form) {
|
|
|
+ return HcApi({
|
|
|
+ url: '/api/blade-business/contractLog/selectByMonthPack',
|
|
|
+ method: 'post',
|
|
|
+ data: form,
|
|
|
+ })
|
|
|
+ },
|
|
|
+ async deleteByMonthPack(form) {
|
|
|
+ return HcApi({
|
|
|
+ url: '/api/blade-business/contractLog/deleteByMonthPack',
|
|
|
+ method: 'get',
|
|
|
+ params: form,
|
|
|
+ })
|
|
|
+ },
|
|
|
}
|