四零语境前端代码仓库
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.

14 lines
196 B

  1. import request from '@/api/request'
  2. export default{
  3. // 查询音色列表
  4. async list(){
  5. return request({
  6. url: "/tts/list",
  7. method: "GET",
  8. needToken: true
  9. })
  10. }
  11. }