You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.4 KiB
JavaScript

$(()=>{
$.get(ctx + 'broad/home/queryCustomer', {}, (e) => {
let treeData = e.data.map(e => {
return {
value: e.customerName,
id: e.objid
}
})
treeData.forEach(e=>{
let html = `
<div class="item" onclick="leftClick(this,${e.id},'${e.value}')">
<div class="span">${e.value}</div>
</div>
`
$("#left").append(html)
})
})
})
const leftClick = (e,id,name)=>{
$(e).attr('class', 'itemClick');
$(e).siblings().attr('class', 'item');
$.post(ctx + 'manage/base_file/fileList', {name: name}, (e) => {
console.log(e)
let tableData = e.data.map((e, i) => {
return {
...e,
no: i,
name: e.fileName,
date: e.createTime,
people: e.customName,
objid:e.objid
}
})
let html = ``
tableData.forEach(e=>{
html += `
<div class="item" onclick="leftClick1(this,'${e.filePath}')">
<div class="video">
<video src="${e.filePath}"
style="width:100%!important; height:100%!important;"></video>
</div>
</div>
`
})
$("#left1").html(html)
})
}
const leftClick1 = (e,path)=> {
$(e).attr('class', 'itemClick');
$(e).siblings().attr('class', 'item');
$("#rightVideo").html(`<video controls preload="auto" src="${path}"
style="width:100%!important; height:100%!important;"></video>`)
}