當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript ts.default.api.contracts方法代碼示例

本文整理匯總了TypeScript中ts/opg.ts.default.api.contracts方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ts.default.api.contracts方法的具體用法?TypeScript ts.default.api.contracts怎麽用?TypeScript ts.default.api.contracts使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ts/opg.ts.default.api的用法示例。


在下文中一共展示了ts.default.api.contracts方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: function

tb.tbody.on('click', '.ico-expandable', function (e) {

	let cur = $(this), programId = cur.data('esd');
	let tr = $(this).parents('tr');

	if (cur.hasClass('ellipse')) {

		opg.api.contracts({programId}, function (data) {
			if (data && data.length) {
				let th = $(`<tr class="subTHead esd_${programId}">
						<th>合同號</th><th>獨占性</th><th>收費要求</th>
						<th>授權期限描述</th><th>版權開始時間</th><th>版權結束時間</th>
						<th>授權企業</th><th>授權地域</th><th>授權平台</th>
						<th>播出形式</th><th>版權方</th><th>錄入人</th><th>項目負責人</th>
					</tr>`).insertAfter(tr);

				th.bindList({
					list: data,
					template: '<tr class="subTBody esd_' + programId + '">' +
					'<td>${programId}</td><td class="text-center">${createDate:=gDate}</td><td class="text-center">${contract:=gCtr}</td>' +
					'<td class="text-center">${copyrightTypeDesc}</td><td class="text-center">${copyrightBeginDate:=gDate}</td><td class="text-center">${copyrightEndDate:=gDate}</td>' +
					'<td class="text-center">${programId}</td><td class="text-center">${programId}</td><td class="text-center">${programId}</td>' +
					'<td class="text-center">${programId}</td><td class="text-center">${programId}</td><td class="text-center">${programId}</td><td class="text-center">${programId}</td>' +
					'</tr>',
					itemRender: {
						gCtr: function (contract) {
							if (contract)
								return contract.contractNumber;
							return '';
						},
						gDate: function (d) {
							return `${d.split(' ')[0]}`;
						}
					},
					mode: 'after'
				});

				cur.toggleClass('ellipse expanded');
			}
			else {
				opg.alert('沒有合同信息');
			}
		})
	}
	else {
		cur.toggleClass('ellipse expanded');
		tr.nextAll('.esd_' + programId).remove();
	}

});
開發者ID:rpdg,項目名稱:fy.js,代碼行數:50,代碼來源:index.ts


注:本文中的ts/opg.ts.default.api.contracts方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。