📄 uedtdep.pas
字号:
unit uEdtDep;
interface
uses
Windows, Messages, SysUtils, Classes, HTTPApp, WebModu, HTTPProd,
WebComp, MidItems, WebForm, CompProd, PagItems, SiteProd;
type
TEdtDep = class(TWebPageModule)
AdapterPageProducer: TAdapterPageProducer;
AdapterForm1: TAdapterForm;
AdapterFieldGroup1: TAdapterFieldGroup;
AdapterCommandGroup1: TAdapterCommandGroup;
CmdCancel: TAdapterActionButton;
CmdApply: TAdapterActionButton;
FldDEPNAME: TAdapterDisplayField;
FldDEPLEADER: TAdapterDisplayField;
FldDEPTEL: TAdapterDisplayField;
FldDEPNOTE: TAdapterDisplayField;
private
{ Private declarations }
public
{ Public declarations }
end;
function EdtDep: TEdtDep;
implementation
{$R *.dfm} {*.html}
uses WebReq, WebCntxt, WebFact, Variants, wdmDB;
function EdtDep: TEdtDep;
begin
Result := TEdtDep(WebContext.FindModuleClass(TEdtDep));
end;
initialization
if WebRequestHandler <> nil then
WebRequestHandler.AddWebModuleFactory(TWebPageModuleFactory.Create(TEdtDep, TWebPageInfo.Create([{wpPublished} {wpLoginRequired}], '.html', '', '部门'), crOnDemand, caCache));
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -