国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

94 line
4.2KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>修改自定义页面</title>
  7. <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="/static/web/css/admin.css">
  10. <script src="/static/web/js/jquery.min.js"></script>
  11. <script src="/static/web/js/bootstrap.min.js"></script>
  12. <script src="/static/web/js/admin.main.js"></script>
  13. </head>
  14. <body>
  15. <div class="container-fluid">
  16. <ol class="breadcrumb">
  17. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  18. <li class="breadcrumb-item"><a href="templets_one.php">文档单页管理</a></li>
  19. <li class="breadcrumb-item active">修改自定义页面</li>
  20. </ol>
  21. <div class="card shadow-sm">
  22. <div class="card-header">修改自定义页面</div>
  23. <div class="card-body">
  24. <form action="templets_one_edit.php" method="post" name="form1">
  25. <input type="hidden" name="dopost" value="saveedit">
  26. <input type="hidden" name="aid" value="<?php echo $aid?>">
  27. <div class="table-responsive">
  28. <table class="table table-borderless">
  29. <tbody>
  30. <tr>
  31. <td width="260">页面标题</td>
  32. <td><input type="text" name="title" id="title" value="<?php echo $row['title'];?>" class="admin-input-lg" required></td>
  33. </tr>
  34. <tr>
  35. <td>页面关键词</td>
  36. <td><input type="text" name="keywords" id="keywords" value="<?php echo $row['keywords'];?>" class="admin-input-lg"></td>
  37. </tr>
  38. <tr>
  39. <td>页面摘要信息</td>
  40. <td><textarea name="description" id="description" class="admin-textarea-sm"><?php echo $row['description'];?></textarea></td>
  41. </tr>
  42. <tr>
  43. <td>关联标识</td>
  44. <td>
  45. <input type="text" name="likeid" id="likeid" value="<?php echo $row['likeid'];?>" class="admin-input-lg">
  46. <input type="hidden" name="oldlikeid" id="oldlikeid" value="<?php echo $row['likeid'];?>">
  47. <?php
  48. echo "<select name='likeidsel' id='likeidsel' class='admin-input-sm'>";
  49. $dsql->Execute('s',"Select likeid From `#@__sgpage` group by likeid ");
  50. echo "<option value='{$row['likeid']}' selected>{$row['likeid']}</option>";
  51. while($arr = $dsql->GetArray('s'))
  52. {
  53. if ($arr['likeid']!=$row['likeid']) echo "<option value='{$arr['likeid']}'>{$arr['likeid']}</option>";
  54. }
  55. echo "</select>";
  56. ?>
  57. </td>
  58. </tr>
  59. <tr>
  60. <td>保存位置</td>
  61. <td>
  62. <input type="hidden" name="oldfilename" id="oldfilename" value="<?php echo $row['filename'];?>" class="admin-input-lg">
  63. <input type="text" name="nfilename" id="nfilename" value="<?php echo $row['filename'];?>" class="admin-input-lg">(填写路径文件夹)
  64. </td>
  65. </tr>
  66. <tr>
  67. <td>模板文件名</td>
  68. <td><input type="text" name="template" id="template" value="<?php echo $row['template'];?>" class="admin-input-lg">(填写模板名称)</td>
  69. </tr>
  70. <tr>
  71. <td>是否编译文档</td>
  72. <td>
  73. <?php if (!DEDEBIZ_SAFE_MODE) {?> <label><input type="radio" name="ismake" value="1" <?php if ($row['ismake']==1) echo 'checked';?>> 含模板标记,要编译</label> <?php }?>
  74. <label><input type="radio" name="ismake" value="0" <?php if ($row['ismake']==0 || DEDEBIZ_SAFE_MODE) echo 'checked';?>> 不含模板标记,不需要编译</label>
  75. </td>
  76. </tr>
  77. <tr>
  78. <td colspan="2"><?php GetEditor("body",$row['body'],"400","Default","print","false");?></td>
  79. </tr>
  80. <tr>
  81. <td colspan="2" align="center">
  82. <button type="submit" class="btn btn-success btn-sm">保存</button>
  83. <button type="button" class="btn btn-outline-success btn-sm" onclick="document.form1.reset();">重置</button>
  84. </td>
  85. </tr>
  86. </tbody>
  87. </table>
  88. </div>
  89. </form>
  90. </div>
  91. </div>
  92. </div>
  93. </body>
  94. </html>