346149741
2024-06-22 69273c1c63c195289e281772e92fa10a2c93a46e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import Vue from 'vue';
import { config } from '@/common/config.js'
const http = uni.$u.http
// 惠企政策 
export function docList(data){
    return http.get('/system/doc/list', {params: data}, { custom: { loading: true }});
}
// 信息公示
export function showList(data){
    return http.get('/enforce/order/showList', {params: data}, { custom: { loading: true }});
}
// 惠企政策详情
export function doc(id){
    return http.get('/system/doc/'+id, {params: data}, { custom: { loading: true }});
}
// 企业注册
export function companyRegister(data) {
    return http.post('/system/company/add', {params: data}, { custom: { loading: true }});
}