21 lines
828 B
JavaScript
21 lines
828 B
JavaScript
/* 球机树 */
|
|
function loadVideoTree() {
|
|
const bidCode = parent.$('#bidPro').val();
|
|
const paramData = 'bidCode=' + bidCode + '&roleCode=' + roleCode + '&orgId=' + orgId + '&userId=' + userId;
|
|
let montageParam = aqEnnable ? encryptCBC(paramData) : ' &' + encryptCBC(paramData);
|
|
const url = commonUrl + 'screen/largeScreen/video/getVideoTree?params=' + montageParam;
|
|
ajaxRequestGet(url, "GET", true, function () {
|
|
}, function (result) {
|
|
console.log(result);
|
|
if (result.code === 200) {
|
|
// setData(result.data);
|
|
} else if (result.code === 500) {
|
|
console.error('视频树' + result.msg);
|
|
} else if (result.code === 401) {
|
|
loginout(1);
|
|
}
|
|
}, function (xhr, status, error) {
|
|
error(xhr, status, error)
|
|
}, aqEnnable);
|
|
|
|
} |