本文整理匯總了TypeScript中ts/opg.api.copyrights方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript api.copyrights方法的具體用法?TypeScript api.copyrights怎麽用?TypeScript api.copyrights使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ts/opg.api
的用法示例。
在下文中一共展示了api.copyrights方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: constructor
constructor(row){
opg.api.copyrights({id: row.id} , (data)=>{
let html:string ;
console.log('版權',data);
if(data&& data.length){
html = '' ;
data.forEach((cp)=>{
let program = cp.program||{} ;
html += `
<table class="search-table">
<tr><td colspan="4" class="lead text-center">關聯版權內容</td></tr>
<tr>
<td class="lead">版權內容名稱</td><td style="width: 40%;">${program.name||''}</td>
<td class="lead">版權內容別名</td><td>${program.alias||''}</td>
</tr>
</table>
<table class="search-table">
<thead>
<tr>
<td class="lead text-center" style="width: 180px;">版權類型</td><td class="lead text-center" style="width: 160px;">版權開始時間</td>
<td class="lead text-center" style="width: 160px;">版權結束時間</td><td class="lead text-center" style="width: 120px;">使用期限(天)</td>
<td class="lead text-center">授權平台</td>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center">${cp.copyrightTypeDesc||''}</td><td class="text-center">${cp.copyrightBeginDate?cp.copyrightBeginDate.split(' ')[0]:''}</td>
<td class="text-center">${cp.copyrightEndDate?cp.copyrightEndDate.split(' ')[0]:''}</td><td class="text-center">${cp.lifetime||''}</td>
<td class="text-center">${cp.authorizedPlatform||''}</td>
</tr>
</tbody>
</table>
`;
})
}
else{
html = `
<table class="search-table">
<tr><td colspan="4" class="lead text-center">沒有關聯版權</td></tr>
</table>
`;
}
$('#d4').html(html);
});
}