page.js 201 B

12345678910111213
  1. import request from '@/utils/request'
  2. // api地址
  3. const apiUri = {
  4. detail: 'page/detail'
  5. }
  6. // 页面数据
  7. export function detail(pageId) {
  8. return request.get(apiUri.detail, {
  9. pageId
  10. })
  11. }