details.js 647 B

1234567891011121314151617181920212223242526272829303132
  1. import upload from '@/utils/upload'
  2. import request from '@/utils/request'
  3. // 获取选择项健值每一项
  4. export function typeOptionSelect() {
  5. return request({
  6. url: '/system/dict/data/list?pageNum=1&pageSize=10&dictType=lrr_service_category',
  7. method: 'get',
  8. })
  9. }
  10. // 获取志愿者详情页
  11. // export function getDetailsvolunteerId(volunteerId) {
  12. // return request({
  13. // url: `/system/core/volunteer/info/getDetails/${volunteerId}`,
  14. // method: 'get',
  15. // })
  16. // }
  17. // 获取志愿者列表信息
  18. export function volunteerinfolist() {
  19. return request({
  20. url: '/core/volunteer/info/list',
  21. method: 'get',
  22. })
  23. }