346149741
2024-06-22 d405d7cfefd8ac846e7ae4afd293198d6de6a9e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 order(id){
    return http.get('/enforce/order/'+id, { custom: { loading: true }});
}