newPaper-api.js 409 B

123456789101112131415161718192021
  1. // const baseUrl = "https://www.cqna.gov.cn/data/"
  2. import {request} from "./request";
  3. export function getNewsPaper(data) {
  4. return request({
  5. url: `/mini/hlw/nanNewsPaper`,
  6. method: 'GET',
  7. contentType: 'application/json;charset=UTF-8',
  8. data: data
  9. })
  10. }
  11. export function getDocumentPageFront(data) {
  12. return request({
  13. url: `yxna/getDocumentPageFront`,
  14. method: 'GET',
  15. data: data
  16. })
  17. }