1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- import { HcApi } from '../../../../request/index'
- // 合同支付项
- export default {
- //系统中期支付项列表(ype=0(未被引用),type=1(已引用),type=空(全部))
- async getSyslist(form) {
- return HcApi({
- url: '/api/blade-meter/mid/pay/item/system/list',
- method: 'post',
- params: form,
- })
- },
- //合同段中期支付项引用项目级数据
- async referenced(form) {
- return HcApi({
- url: '/api/blade-meter/mid/pay/item/contract/referenced',
- method: 'post',
- params: form,
- }, false)
- },
- //合同段中期支付项分页
- async getProListPage(form) {
- return HcApi({
- url: '/api/blade-meter/mid/pay/item/contract/page',
- method: 'post',
- data: form,
- })
- },
- //合同段中期支付项详情
- async getProDetail(form) {
- return HcApi({
- url: '/api/blade-meter/mid/pay/item/contract/detail',
- method: 'get',
- params: form,
- })
- },
- //合同段中期支付项修改
- async updateProList(form) {
- return HcApi({
- url: '/api/blade-meter/mid/pay/item/contract/update',
- method: 'post',
- data: form,
- }, false)
- },
- //合同段中期支付项删除
- async removeProList(form) {
- return HcApi({
- url: '/api/blade-meter/mid/pay/item/contract/remove',
- method: 'get',
- params: form,
- })
- },
- //合同段中期支付项列表(全部)
- async getProPayList(form) {
- return HcApi({
- url: '/api/blade-meter/mid/pay/item/contract/all-list',
- method: 'post',
- params: form,
- })
- },
- //中期支付项添加汇总项
- async addCollect(form) {
- return HcApi({
- url: '/api/blade-meter/mid/pay/item/bind/submit',
- method: 'post',
- params: form,
- }, false)
- },
- //中期支付项删除汇总项
- async removeCollect(form) {
- return HcApi({
- url: '/api/blade-meter/mid/pay/item/bind/remove',
- method: 'post',
- params: form,
- }, false)
- },
- //合同段中期支付项排序
- async getSort(form) {
- return HcApi({
- url: '/api/blade-meter/mid/pay/item/contract/sort',
- method: 'post',
- params: form,
- }, false)
- },
- }
|