This commit is contained in:
KindSeven
2024-09-25 03:04:01 +08:00
parent 8301e9365b
commit 018ac4a8cf
6 changed files with 130 additions and 50 deletions

View File

@@ -0,0 +1,11 @@
import request from '@/utils/request.js'
import { method } from 'lodash'
//获取历史通话文本记录
export const getHistoryCallContent=(params)=>{
return request({
url:`/text/history/list/${params}`,
method:'get'
})
}