移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

27 lines
463 B

  1. import request from '@/utils/request'
  2. //新闻列表
  3. export function newList(query) {
  4. return request({
  5. url: '/transaction/website/newsList',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. //新闻详情
  11. export function newDetails(id) {
  12. return request({
  13. url: '/transaction/website/news/'+id,
  14. method: 'get',
  15. })
  16. }
  17. //新闻详情
  18. export function websiteConfig() {
  19. return request({
  20. url: '/transaction/website/config',
  21. method: 'get',
  22. })
  23. }