1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import {httpApi} from "../../request/httpApi";
- export default {
- //获取当前合同段下的日志类型
- async queryLogList(form, msg = true) {
- return httpApi({
- url: '/api/blade-business/contractLog/queryCurrentContractLogList',
- method: 'get',
- params: form
- }, msg)
- },
- //获取当前日志类型的填报人
- async queryFillUser(form, msg = true) {
- return httpApi({
- url: '/api/blade-business/contractLog/queryFillUser',
- method: 'get',
- params: form
- }, msg)
- },
- //施工日志分页
- async constructionLogPage(form, msg = true) {
- return httpApi({
- url: '/api/blade-business/contractLog/constructionLogPage',
- method: 'post',
- data: form
- }, msg)
- },
- //批量废除
- async batchAbolish(form, msg = true) {
- return httpApi({
- url: '/api/blade-business/contractLog/batchAbolish',
- method: 'post',
- params: form
- }, msg)
- },
- //获取合同段当前日志节点下的填报日期记录
- async getSubmitLogDateList(form, msg = true) {
- return httpApi({
- url: '/api/blade-business/contractLog/getSubmitLogDateList',
- method: 'post',
- params: form
- }, msg)
- },
- }
|