Rap 原分销系统代码Web
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
308B

  1. import request from '@/utils/request'
  2. export function testDbConnect(data) {
  3. return request({
  4. url: 'api/database/testConnect',
  5. method: 'post',
  6. data
  7. })
  8. }
  9. export function testServerConnect(data) {
  10. return request({
  11. url: 'api/serverDeploy/testConnect',
  12. method: 'post',
  13. data
  14. })
  15. }