123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- import request from '@/utils/request'
- import qs from 'qs'
- export const advertisementTotals = (params) => {
- return new request({
- url: './op/advertisementTotals',
- method: 'get',
- params: params
- });
- }
- export const advertisementInfos = (params) => {
- return new request({
- url: './op/advertisementInfos',
- method: 'get',
- params: params
- });
- }
- export const advertisementEntitys = (params) => {
- return new request({
- url: './op/advertisementEntitys',
- method: 'get',
- params: params
- });
- }
- export const getAppAdvert = (params) => {
- return new request({
- url: './op/advertisementLocations/getAppAdvert',
- method: 'get',
- params: params
- });
- }
- export const getNewInternationalInformationList = (params) => {
- return new request({
- url: './op/internationalInformationInfos/getNewInternationalInformationList',
- method: 'get',
- params: params
- });
- }
- export const getServiceDataEntityList = (params) => {
- return new request({
- url: './cms/serviceDataEntitys/getServiceDataEntityList',
- method: 'get',
- params: params
- });
- }
- export const geiWeeklyReportViews = (params) => {
- return new request({
- url: './cms/geiWeeklyReportViews',
- method: 'get',
- params: params
- });
- }
- export const getGeiWeeklyReportPicture = (params) => {
- return new request({
- url: './cms/geiWeeklyReportViews/getGeiWeeklyReportPicture',
- method: 'get',
- params: params
- });
- }
- export const getNewDataArticle= (params) => {
- return new request({
- url: './cms/dataArticles/getNewDataArticle',
- method: 'get',
- params: params
- });
- }
- export const dataArticleGate = (params) => {
- return new request({
- url: './cms/dataArticles/dataArticleGate',
- method: 'get',
- params: params
- });
- }
- export const getGeiWeeklyReportByButton = (params) => {
- return new request({
- url: './cms/geiWeeklyReportViews/getGeiWeeklyReportByButton',
- method: 'get',
- params: params
- });
- }
- export const weeklyClassificationEntitys = (params) => {
- return new request({
- url: './cms/weeklyClassificationEntitys',
- method: 'get',
- params: params
- });
- }
- export const searchInformationByNextButton = (params) => {
- return new request({
- url: './op/internationalInformationInfos/searchInformationByNextButton',
- method: 'get',
- params: params
- });
- }
- export const searchDataArticleByNextButton = (params) => {
- return new request({
- url: './cms/dataArticles/searchDataArticleByNextButton',
- method: 'get',
- params: params
- });
- }
|