UDF.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title><#formTitle></title>
  6. <link rel="stylesheet" href="../commons/css/font/iconfont.css"/>
  7. <link rel="stylesheet" href="../commons/css/awsui.css"/>
  8. <style>
  9. .awsui-col-lg-10 {
  10. width: 80%;
  11. }
  12. .awsui-col-lg-2 {
  13. width: 15%;
  14. }
  15. .awsui-text {
  16. font-size: 15px;
  17. }
  18. .awsui-input {
  19. font-size: 15px;
  20. }
  21. body {
  22. font-size: 15px;
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div class="awsui-code-content" id="udfFormDiv" style="padding-top: 20px;">
  28. <div class="awsui-container-fluid" id="udfForm">
  29. </div>
  30. </div>
  31. <input id="sid" type="hidden" name="sid" value="<#sid>">
  32. </body>
  33. <script language="JavaScript" src="../commons/js/jquery/scripts/jquery.js"></script>
  34. <script language="JavaScript" src="../commons/js/awsui.js"></script>
  35. <script src="../apps/com.awspaas.user.apps.donenow_sys/UDF.js"></script>
  36. <script>
  37. const sid = "<#sid>";
  38. const cateId = "<#cateId>";
  39. const objectId = "<#objectId>";
  40. const colFields = '<#colFields>';
  41. $(function () {
  42. init(colFields);
  43. });
  44. </script>
  45. </html>