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, { custom: { loading: true }}); } // 信息公示详情 export function order(id){ return http.get('/enforce/order/'+id, { custom: { loading: true }}); }