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

common.js 244 B

123456789101112
  1. import service from '../service';
  2. // 获取promote配置数据
  3. export const getPromoteData = (filePathName) => {
  4. return service({
  5. url: '/dashboard/invitation',
  6. method: 'get',
  7. params: {
  8. filename: filePathName
  9. },
  10. });
  11. }