| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title><#formTitle></title>
- <link rel="stylesheet" href="../commons/css/font/iconfont.css"/>
- <link rel="stylesheet" href="../commons/css/awsui.css"/>
- <style>
- .awsui-col-lg-10 {
- width: 80%;
- }
- .awsui-col-lg-2 {
- width: 15%;
- }
- .awsui-text {
- font-size: 15px;
- }
- .awsui-input {
- font-size: 15px;
- }
- body {
- font-size: 15px;
- }
- </style>
- </head>
- <body>
- <div class="awsui-code-content" id="udfFormDiv" style="padding-top: 20px;">
- <div class="awsui-container-fluid" id="udfForm">
- </div>
- </div>
- <input id="sid" type="hidden" name="sid" value="<#sid>">
- </body>
- <script language="JavaScript" src="../commons/js/jquery/scripts/jquery.js"></script>
- <script language="JavaScript" src="../commons/js/awsui.js"></script>
- <script src="../apps/com.awspaas.user.apps.donenow_sys/UDF.js"></script>
- <script>
- const sid = "<#sid>";
- const cateId = "<#cateId>";
- const objectId = "<#objectId>";
- const colFields = '<#colFields>';
- $(function () {
- init(colFields);
- });
- </script>
- </html>
|