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.

19 lines
338 B

4 weeks ago
  1. import { http } from '../../utils/http'
  2. export const getSetting = (data) => {
  3. return http({
  4. method: 'POST',
  5. url: '/api/my/getSetting',
  6. data: data,
  7. })
  8. }
  9. export const updateSetting = (data) => {
  10. return http({
  11. method: 'POST',
  12. url: '/api/my/updateSetting',
  13. data: data,
  14. })
  15. }