baseAdvertisement.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. import request from '@/utils/request'
  2. import qs from 'qs'
  3. export const advertisementTotals = (params) => {
  4. return new request({
  5. url: './op/advertisementTotals',
  6. method: 'get',
  7. params: params
  8. });
  9. }
  10. export const advertisementInfos = (params) => {
  11. return new request({
  12. url: './op/advertisementInfos',
  13. method: 'get',
  14. params: params
  15. });
  16. }
  17. export const advertisementEntitys = (params) => {
  18. return new request({
  19. url: './op/advertisementEntitys',
  20. method: 'get',
  21. params: params
  22. });
  23. }
  24. export const getAppAdvert = (params) => {
  25. return new request({
  26. url: './op/advertisementLocations/getAppAdvert',
  27. method: 'get',
  28. params: params
  29. });
  30. }
  31. export const getNewInternationalInformationList = (params) => {
  32. return new request({
  33. url: './op/internationalInformationInfos/getNewInternationalInformationList',
  34. method: 'get',
  35. params: params
  36. });
  37. }
  38. export const getServiceDataEntityList = (params) => {
  39. return new request({
  40. url: './cms/serviceDataEntitys/getServiceDataEntityList',
  41. method: 'get',
  42. params: params
  43. });
  44. }
  45. export const geiWeeklyReportViews = (params) => {
  46. return new request({
  47. url: './cms/geiWeeklyReportViews',
  48. method: 'get',
  49. params: params
  50. });
  51. }
  52. export const getGeiWeeklyReportPicture = (params) => {
  53. return new request({
  54. url: './cms/geiWeeklyReportViews/getGeiWeeklyReportPicture',
  55. method: 'get',
  56. params: params
  57. });
  58. }
  59. export const getNewDataArticle= (params) => {
  60. return new request({
  61. url: './cms/dataArticles/getNewDataArticle',
  62. method: 'get',
  63. params: params
  64. });
  65. }
  66. export const dataArticleGate = (params) => {
  67. return new request({
  68. url: './cms/dataArticles/dataArticleGate',
  69. method: 'get',
  70. params: params
  71. });
  72. }
  73. export const getGeiWeeklyReportByButton = (params) => {
  74. return new request({
  75. url: './cms/geiWeeklyReportViews/getGeiWeeklyReportByButton',
  76. method: 'get',
  77. params: params
  78. });
  79. }
  80. export const weeklyClassificationEntitys = (params) => {
  81. return new request({
  82. url: './cms/weeklyClassificationEntitys',
  83. method: 'get',
  84. params: params
  85. });
  86. }
  87. export const searchInformationByNextButton = (params) => {
  88. return new request({
  89. url: './op/internationalInformationInfos/searchInformationByNextButton',
  90. method: 'get',
  91. params: params
  92. });
  93. }
  94. export const searchDataArticleByNextButton = (params) => {
  95. return new request({
  96. url: './cms/dataArticles/searchDataArticleByNextButton',
  97. method: 'get',
  98. params: params
  99. });
  100. }