This commit is contained in:
a0049873 2022-06-14 17:41:24 +08:00
parent 69e71e841a
commit f392764b0a
1 changed files with 13 additions and 3 deletions

View File

@ -2,7 +2,7 @@
* @Author: hisense.wuhongjian * @Author: hisense.wuhongjian
* @Date: 2022-04-20 17:16:35 * @Date: 2022-04-20 17:16:35
* @LastEditors: hisense.liangjunhua * @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-06-14 17:37:18 * @LastEditTime: 2022-06-14 17:40:14
* @Description: 告诉大家这是什么 * @Description: 告诉大家这是什么
*/ */
import request from '@/utils/request' import request from '@/utils/request'
@ -63,8 +63,18 @@ export function getHls(params) {
export function getRecord(params) { export function getRecord(params) {
return axios.get( return axios.get(
'http://10.134.135.24:30090/api/share-portal/platform/catalogue/query', 'http://10.134.135.24:30090/api/share-portal/platform/catalogue/query?serviceName=' +
params, params.serviceName +
'&orderField=' +
params.orderField +
'&orderType=' +
params.orderType +
'&pageNum=' +
params.pageNum +
'&pageSize=' +
params.pageSize +
'&serviceType=' +
params.serviceType,
config2 config2
) )
} }