|
|
@@ -27,7 +27,28 @@ let request = new Request().http
|
|
|
return request('/app/companyUser/bindCompanyUser',data,'POST','application/json;charset=UTF-8');
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ //语音接口
|
|
|
+ export function addVoicePrintUrl(data) {
|
|
|
+ return request('/app/companyUser/addVoicePrintUrl',data,'POST','application/json;charset=UTF-8');
|
|
|
+ }
|
|
|
+ // 模板语音上传接口
|
|
|
+ export function companyUserVoiceNew(data) {
|
|
|
+ return request('/app/companyUser/companyUserVoiceNew',data,'GET','application/json;charset=UTF-8');
|
|
|
+ }
|
|
|
+ // 模板语音上传接口
|
|
|
+ export function companyUserVoice(data) {
|
|
|
+ return request('/app/companyUser/companyUserVoice',data,'GET','application/json;charset=UTF-8');
|
|
|
+ }
|
|
|
+ // 获取语音列表
|
|
|
+ export function querySopVoiceList(data) {
|
|
|
+ return request('/app/companyUser/querySopVoiceList',data,'GET','application/json;charset=UTF-8');
|
|
|
+ }
|
|
|
+ // 获取语音详情
|
|
|
+ export function queryDetail(id) {
|
|
|
+ return request('/app/companyUser/query/'+id,null,'GET','application/json;charset=UTF-8');
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
-
|
|
|
+ export function createUserAllVoice(id) {
|
|
|
+ return request('/app/companyUser/createUserAllVoice',null,'GET','application/json;charset=UTF-8');
|
|
|
+ }
|
|
|
+
|