12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- import request from '@/utils/request'
- export function getCommonBanners(data = {}) {
- return request({
- 'url': '/common/client/index/banner/list',
- headers: {
- isToken: true
- },
- method: 'post',
- data,
- timeout: 20000
- })
- }
- export function getCommonXinwenYuanxiaoList(data = {}) {
- return request({
- 'url': '/common/xinwen/yuanxiao/list',
- headers: {
- isToken: true
- },
- method: 'post',
- data,
- timeout: 20000
- })
- }
- export function getCommonXinwenTongzhiList(data = {}) {
- return request({
- 'url': '/common/xinwen/tongzhi/list',
- headers: {
- isToken: true
- },
- method: 'post',
- data,
- timeout: 20000
- })
- }
- export function getCommonXinwenXiaowuList(data = {}) {
- return request({
- 'url': '/common/xinwen/xiaowu/list',
- headers: {
- isToken: true
- },
- method: 'post',
- data,
- timeout: 20000
- })
- }
- export function getCommonGaikuangJianjieInfo(data = {}) {
- return request({
- 'url': '/common/gaikuang/jianjie/info',
- headers: {
- isToken: true
- },
- method: 'post',
- data,
- timeout: 20000
- })
- }
- export function getCommonGaikuangJigouShezhiInfo(data = {}) {
- return request({
- 'url': '/common/gaikuang/jigou/info',
- headers: {
- isToken: true
- },
- method: 'post',
- data,
- timeout: 20000
- })
- }
- export function getCommonGaikuangRongyuList(data = {}) {
- return request({
- 'url': '/common/gaikuang/rongyu/list',
- headers: {
- isToken: true
- },
- method: 'post',
- data,
- timeout: 20000
- })
- }
|