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


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

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


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

示例1: function

tb.tbody.on('click', '.btn-warning', function () {
	let btn = $(this),
		title = btn.data('title'),
		assetId = btn.data('aid'),
		orderId = btn.data('oid'),
		idx = btn.data('idx') ,
		row = list[idx];

	opg.api.checkAuditPermission({orderId}, function (data) {
		if (data.result) {
			if(!row.executor)
				tb.update();

			let popWin = openInfoWindow(assetId, idx, {
				title: title,
				btnMax: true,
				width: 900,
				height: 500,
				buttons: {
					btnPutBack: {
						className: 'btn-warning',
						text: '打回',
						onClick: function () {
							AuditPutBack.showWindow(2 , orderId , title , popWin , tb);
							return true;
						}
					},
					ok: {
						className: 'btn-success',
						text: '通過',
						onClick: function () {
							let form = $(`<div style="padding: 10px;"><table class="search-table">
							<tr>
								<td class="lead">節目名稱</td>
								<td style="width: auto;">${title}</td>
							</tr>
							<tr>
								<td class="lead">生產流程</td>
								<td style="width: auto;">
									<label class="lbAutoWidth"><input type="checkbox" name="collectCatalog" value="1" checked />非編</label>、 
									<label class="lbAutoWidth"><input type="checkbox" name="collectAudit3" value="1" checked />三審</label>
								</td>
							</tr>
						</table></div>`);
							top.opg(form).popup({
								title: '確定通過',
								width: 420,
								height: 200,
								buttons: {
									ok: {
										text: '確定',
										className: 'btn-success',
										onClick: function () {
											let p = this as PopUp;

											let param = form.fieldsToJson();

											param.orderId = orderId;
											param.collectCatalog = (param.collectCatalog == '1');
											param.collectAudit3 = (param.collectAudit3 == '1');

											opg.api.pass(param, () => {
												tb.update();
												p.close();
												popWin.close();
											});

											return true;
										}
									},
									cancel: '返回',
								}
							});

							return true;
						}
					},
					cancel: {
						className: 'btn',
						text: '取消' ,
						onClick : function(){
							opg.api.cancelAuditOrder({orderId} , ()=>{
								tb.update();
								popWin.close();
							});
							return true;
						}
					},
					returnBtn: '返回',
				}
			});
		}
		else{
			opg.alert(data.message , ()=>{
				viewMeta(assetId, title, idx);
			});
		}
	});

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


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