346149741
2024-06-22 e0912ef49e4e5d55028dc8e6373911718a65c7c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import Vue from 'vue';
import { config } from '@/common/config.js'
const http = uni.$u.http
 
// 企业详情
export function company(id){
    return http.get('/system/company/'+id, { custom: { loading: true }});
}
// 执法记录列表
export function companyList(data){
    return http.get('/enforce/order/companyList', {params: data}, { custom: { loading: true }});
}
// 获取执法评价配置详情
export function evaluate(){
    return http.get('/enforce/evaluate/detail', { custom: { loading: true }});
}
// 保存执法评价
export function saveOrder(param) {
  return http.post('/enforce/evaluate/saveOrder', param, { custom: { loading: true }});
}
// 发起投诉
export function orderComplaint(param) {
  return http.post('/enforce/order/orderComplaint', param, { custom: { loading: true }});
}