|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="<?php echo $cfg_soft_lang; ?>">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <title>修改自定义页面</title>
- <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="../static/web/css/admin.css">
- <script src="../static/web/js/jquery.min.js"></script>
- <script src="../static/web/js/bootstrap.bundle.min.js"></script>
- <script src="js/main.js"></script>
- <script>
- function checkSubmit()
- {
- if(document.form1.title.value=="")
- {
- ShowMsg("页面名称不能为空");
- document.form1.title.focus();
- return false;
- }
- if(document.form1.nfilename.value=="")
- {
- ShowMsg("文件名不能为空");
- document.form1.nfilename.focus();
- return false;
- }
- }
- </script>
- </head>
- <body>
- <table width="98%" cellpadding="3" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
- <tr>
- <td bgcolor="#f8f8f8"><a href="templets_one.php">单独页面管理</a> > 修改自定义页面</td>
- </tr>
- <tr>
- <td>
- <table width="100%" cellspacing="4" cellpadding="2" class="table table-borderless">
- <form action="templets_one_edit.php" method="post" name="form1" onSubmit="return checkSubmit()">
- <input type="hidden" name="dopost" value="saveedit">
- <input type="hidden" name="aid" value="<?php echo $aid?>">
- <tr>
- <td width="260">页面标题:</td>
- <td><input type="text" name="title" id="title" value="<?php echo $row['title']; ?>" style="width:260px"></td>
- </tr>
- <tr>
- <td>页面关键词:</td>
- <td><input type="text" name="keywords" id="keywords" value="<?php echo $row['keywords']; ?>" style="width:260px">(用","分开)</td>
- </tr>
- <tr>
- <td>页面摘要信息:</td>
- <td><textarea name="description" id="description" style="width:360px;height:50px"><?php echo $row['description']; ?></textarea>(100字左右)</td>
- </tr>
- <tr>
- <td>关联标识:</td>
- <td>
- <input type="text" name="likeid" id="likeid" value="<?php echo $row['likeid']; ?>" style="width:260px">
- <input type="hidden" name="oldlikeid" id="oldlikeid" value="<?php echo $row['likeid']; ?>">
- <?php
- echo "<select name='likeidsel' id='likeidsel' style='width:160px'>";
- $dsql->Execute('s',"Select likeid From `#@__sgpage` group by likeid ");
- echo "<option value='{$row['likeid']}' selected>{$row['likeid']}</option>";
- while($arr = $dsql->GetArray('s'))
- {
- if($arr['likeid']!=$row['likeid']) echo "<option value='{$arr['likeid']}'>{$arr['likeid']}</option>";
- }
- echo "</select>";
- ?>
- </td>
- </tr>
- <tr>
- <td>模板文件名:</td>
- <td><input type="text" name="template" id="template" value="<?php echo $row['template']; ?>" style="width:260px"></td>
- </tr>
- <tr>
- <td>文件名:</td>
- <td>
- <input type="hidden" name="oldfilename" id="oldfilename" value="<?php echo $row['filename']; ?>" style="width:260px">
- <input type="text" name="nfilename" id="nfilename" value="<?php echo $row['filename']; ?>" style="width:260px">(相对于CMS安装目录)
- </td>
- </tr>
- <tr>
- <td>是否编译内容:</td>
- <td>
- <?php if(!DEDEBIZ_SAFE_MODE) { ?> <label><input type="radio" name="ismake" value="1"<?php if($row['ismake']==1) echo "checked"; ?>> 含模板标记,要编译 </label> <?php } ?>
- <label><input type="radio" name="ismake" value="0"<?php if($row['ismake']==0 || DEDEBIZ_SAFE_MODE) echo "checked"; ?>> 不含模板标记,不需要编译</label>
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <div class="alert alert-warning mb-0">内容:模板里用{dede:field name='body'/}来获得文件内容</div>
- </td>
- </tr>
- <tr>
- <td height="80" colspan="2"> <?php GetEditor("body",$row['body'],"450","Default","print","false"); ?></td>
- </tr>
- <tr>
- <td colspan="2" align="center" class="py-2">
- <button type="submit" name="button1" id="button1" class="btn btn-success btn-sm">保存</button>
- <button type="button" onClick="document.form1.reset();" class="btn btn-success btn-sm">重置</button>
- </td>
- </tr>
- </form>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </html>
|