heyuntao
2023-10-23 45e3e2f4b3a55c3949c8a5bc5e6928f0cc2cacb1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import request from '@/utils/request'
 
const api = {
    CreateShortLink: '/ShortLink/CreateShortLink',
    GetWxShortLink: '/WxMiniPro/GetWxShortLink'
}
 
export function GetWxShortLink (parameter) {
  return request({
    url: api.GetWxShortLink,
    method: 'post',
    data: parameter
  })
}
 
export function CreateShortLink (parameter) {
    return request({
      url: api.CreateShortLink,
      method: 'post',
      data: parameter
    })
  }