国内流行的内容管理系统(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.

519 lines
26KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>栏目管理</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <link rel="stylesheet" href="../static/css/bootstrap.min.css">
  8. <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
  9. <link href="css/base.css" rel="stylesheet" type="text/css">
  10. <style>
  11. .table {
  12. margin-bottom: 0;
  13. }
  14. textarea {
  15. min-height: 32px;
  16. }
  17. </style>
  18. <script language="javascript">
  19. var channelArray = new Array();
  20. <?php
  21. $i = 0;
  22. foreach($channelArray as $k=> $arr){
  23. echo "channelArray[$k] = \"{$arr['nid']}\";\r\n";
  24. }
  25. ?>
  26. function Nav() {
  27. if (window.navigator.userAgent.indexOf("MSIE") >= 1) return 'IE';
  28. else if (window.navigator.userAgent.indexOf("Firefox") >= 1) return 'FF';
  29. else return "OT";
  30. }
  31. function SelectTemplets(fname) {
  32. var posLeft = 200;
  33. var posTop = 300;
  34. window.open("./dialog/select_templets.php?f=" + fname, "poptempWin", "scrollbars=yes,resizable=yes,statebar=no,width=680,height=400,left=" + posLeft + ", top=" + posTop);
  35. }
  36. function ShowHide(objname) {
  37. var obj = document.getElementById(objname);
  38. if (obj.style.display != "none")
  39. obj.style.display = "none";
  40. else {
  41. if (Nav() == 'IE') obj.style.display = "block";
  42. else obj.style.display = "table-row";
  43. }
  44. }
  45. function ShowObj(objname) {
  46. var obj = document.getElementById(objname);
  47. if (Nav() == 'IE') obj.style.display = "block";
  48. else obj.style.display = "table";
  49. }
  50. function HideObj(objname) {
  51. var obj = document.getElementById(objname);
  52. obj.style.display = "none";
  53. }
  54. function ShowItem1() {
  55. ShowObj('head1'); ShowObj('needset');
  56. HideObj('head2'); HideObj('adset');
  57. HideObj('head3'); HideObj('ctset');
  58. }
  59. function ShowItem2() {
  60. ShowObj('head2'); ShowObj('adset');
  61. HideObj('head1'); HideObj('needset');
  62. HideObj('head3'); HideObj('ctset');
  63. }
  64. function ShowItem3() {
  65. ShowObj('head3'); ShowObj('ctset');
  66. HideObj('head1'); HideObj('needset');
  67. HideObj('head2'); HideObj('adset');
  68. }
  69. function CheckTypeDir() {
  70. var upinyin = document.getElementById('upinyin');
  71. var tpobj = document.getElementById('typedir');
  72. if (upinyin.checked) tpobj.style.display = "none";
  73. else tpobj.style.display = "block";
  74. }
  75. function ParTemplet(obj) {
  76. var sevvalue = channelArray[obj.value];
  77. var tobj = document.getElementById('smclass');
  78. var tempindex = document.getElementsByName('tempindex');
  79. var templist = document.getElementsByName('templist');
  80. var temparticle = document.getElementsByName('temparticle');
  81. var dfstyle = document.getElementsByName('dfstyle');
  82. var dfstyleValue = dfstyle[0].value;
  83. tempindex[0].value = dfstyleValue + "/index_" + sevvalue + ".htm";
  84. templist[0].value = dfstyleValue + "/list_" + sevvalue + ".htm";
  85. temparticle[0].value = dfstyleValue + "/article_" + sevvalue + ".htm";
  86. if (obj.value < 0) {
  87. if (Nav() == 'IE') tobj.style.display = "block";
  88. else tobj.style.display = "table-row";
  89. }
  90. else {
  91. tobj.style.display = "none";
  92. }
  93. }
  94. function checkSubmit() {
  95. if (document.form1.typename.value == "") {
  96. alert("栏目名称不能为空");
  97. document.form1.typename.focus();
  98. return false;
  99. }
  100. return true;
  101. }
  102. function CheckCross() {
  103. var cross2 = document.getElementById('cross2');
  104. var crossid = document.getElementById('crossid');
  105. if (cross2.checked) crossid.style.display = 'block';
  106. else crossid.style.display = 'none';
  107. }
  108. </script>
  109. </head>
  110. <body leftmargin='15' topmargin='10' bgcolor="#FFFFFF">
  111. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#cfcfcf"
  112. style="BORDER-COLLAPSE: collapse" class="mt-3">
  113. <tr>
  114. <td width="100%" height="20" valign="top">
  115. <table width="100%" border="0" cellspacing="0" cellpadding="0">
  116. <tr>
  117. <td height="30"><IMG height=14 src="images/book1.gif" width=20>&nbsp;<a
  118. href="catalog_main.php">栏目管理</a>&gt;&gt;&nbsp;修改栏目</td>
  119. </tr>
  120. </table>
  121. </td>
  122. </tr>
  123. <tr>
  124. <td width="100%" height="1" background="images/sp_bg.gif"></td>
  125. </tr>
  126. </table>
  127. <table width="98%" border="0" align="center" cellpadding="0" cellspacing="0">
  128. <tr>
  129. <td height="10"></td>
  130. </tr>
  131. <tr>
  132. <form name="form1" action="catalog_edit.php" method="post" onSubmit="return checkSubmit();">
  133. <input type="hidden" name="dopost" value="save" />
  134. <input type="hidden" name="id" value="<?php echo $id; ?>" />
  135. <input type="hidden" name="topid" value="<?php echo $myrow['topid']; ?>" />
  136. <td height="95" align="center" bgcolor="#FFFFFF">
  137. <table width="100%" border="0" cellspacing="0" id="head1" cellpadding="0">
  138. <tr>
  139. <td colspan="2" bgcolor="#FFFFFF" align="left">
  140. <table border="0" cellpadding="0" cellspacing="0">
  141. <tr>
  142. <td width="84" height="24" align="center" background="images/itemnote1.gif">&nbsp;常规选项&nbsp;</td>
  143. <td width="84" align="center" background="images/itemnote2.gif"><a href="javascript:;"
  144. onClick="ShowItem2()">高级选项</a>&nbsp;</td>
  145. <td width="84" align="center" background="images/itemnote2.gif"><a href="javascript:;"
  146. onClick="ShowItem3()">栏目内容</a>&nbsp;</td>
  147. </tr>
  148. </table>
  149. </td>
  150. </tr>
  151. </table>
  152. <table width="100%" border="0" cellspacing="0" id="head2" cellpadding="0" style="display:none">
  153. <tr>
  154. <td colspan="2" bgcolor="#FFFFFF" style="text-align:left;">
  155. <table height="24" border="0" cellpadding="0" cellspacing="0">
  156. <tr>
  157. <td width="84" align="center" background="images/itemnote2.gif" bgcolor="#F2F7DF"><a href="javascript:;"
  158. onClick="ShowItem1()">常规选项</a>&nbsp;</td>
  159. <td width="84" align="center" background="images/itemnote1.gif">高级选项&nbsp;</td>
  160. <td width="84" align="center" background="images/itemnote2.gif"><a href="javascript:;"
  161. onClick="ShowItem3()">栏目内容</a>&nbsp;</td>
  162. </tr>
  163. </table>
  164. </td>
  165. </tr>
  166. </table>
  167. <table width="100%" border="0" cellspacing="0" id="head3" cellpadding="0" style="display:none">
  168. <tr>
  169. <td colspan="2" bgcolor="#FFFFFF" style="text-align:left;">
  170. <table height="24" border="0" cellpadding="0" cellspacing="0">
  171. <tr>
  172. <td width="84" align="center" background="images/itemnote2.gif" bgcolor="#F2F7DF"><a href="javascript:;"
  173. onClick="ShowItem1()">常规选项</a>&nbsp;</td>
  174. <td width="84" align="center" background="images/itemnote2.gif"><a href="javascript:;"
  175. onClick="ShowItem2()">高级选项&nbsp;</td>
  176. <td width="84" align="center" background="images/itemnote1.gif">栏目内容&nbsp;</td>
  177. </tr>
  178. </table>
  179. </td>
  180. </tr>
  181. </table>
  182. <table width="100%" border="0" id="needset" cellspacing="0" cellpadding="0"
  183. style="border:1px solid #cfcfcf;background:#ffffff;text-align:left;" class="table">
  184. <tr>
  185. <td width="150" class='bline' height="26" style="padding-left:10px;">是否支持投稿:</td>
  186. <td class='bline'> <label><input type='radio' name='issend' value='0' class='np'
  187. <?php if($myrow['issend']=="0") echo " checked='1' ";?> />
  188. 不支持&nbsp;</label> <label><input type='radio' name='issend' value='1' class='np'
  189. <?php if($myrow['issend']=="1") echo " checked='1' ";?> />
  190. 支持</label> </td>
  191. </tr>
  192. <tr>
  193. <td width="150" class='bline' height="26" style="padding-left:10px;">是否隐藏栏目:</td>
  194. <td class='bline'> <label><input type='radio' name='ishidden' value='0' class='np'
  195. <?php if($myrow['ishidden']=="0") echo " checked='1' ";?> />
  196. 显示 &nbsp;</label> <label><input type='radio' name='ishidden' value='1' class='np'
  197. <?php if($myrow['ishidden']=="1") echo " checked='1' ";?> />
  198. 隐藏</label> </td>
  199. </tr>
  200. <tr>
  201. <td class='bline' height="26" style="padding-left:10px;">
  202. <font color='red'>内容模型:</font>
  203. </td>
  204. <td class='bline'> <select name="channeltype" id="channeltype" style="width:200px"
  205. onChange="ParTemplet(this)">
  206. <?php
  207. foreach($channelArray as $k=>$arr)
  208. {
  209. if($k==$channelid) echo " <option value='{$k}' selected>{$arr['typename']}|{$arr['nid']}</option>\r\n";
  210. else echo " <option value='{$k}'>{$arr['typename']}|{$arr['nid']}</option>\r\n";
  211. }
  212. ?>
  213. </select> </td>
  214. </tr>
  215. <tr>
  216. <td class='bline' height="26" style="padding-left:10px;">
  217. <font color='red'>栏目名称:</font>
  218. </td>
  219. <td class='bline'><input name="typename" type="text" id="typename" size="30"
  220. value="<?php echo $myrow['typename']?>" class="iptxt" /></td>
  221. </tr>
  222. <tr>
  223. <td class='bline' height="26" style="padding-left:10px;"> 排列顺序: </td>
  224. <td class='bline'> <input name="sortrank" size="6" type="text" value="<?php echo $myrow['sortrank']?>"
  225. class="iptxt" />
  226. (由低 -&gt; 高) </td>
  227. </tr>
  228. <tr>
  229. <td class='bline' height="26" style="padding-left:10px;">浏览权限:</td>
  230. <td class='bline'> <select name="corank" id="corank" style="width:100">
  231. <?php
  232. $dsql->SetQuery("Select * from #@__arcrank where rank >= 0");
  233. $dsql->Execute('cc');
  234. while($row = $dsql->GetObject('cc'))
  235. {
  236. if($myrow['corank']==$row->rank)
  237. echo "<option value='".$row->rank."' selected>".$row->membername."</option>\r\n";
  238. else
  239. echo "<option value='".$row->rank."'>".$row->membername."</option>\r\n";
  240. }
  241. ?>
  242. </select>
  243. (仅限制栏目里的文档浏览权限) </td>
  244. </tr>
  245. <tr>
  246. <td class='bline' height="26" style="padding-left:10px;">文件保存目录:</td>
  247. <td class='bline'> <input name="typedir" type="text" id="typedir" value="<?php echo $myrow['typedir']?>"
  248. style="width:300px" class="iptxt" />
  249. </td>
  250. </tr>
  251. <tr>
  252. <td height="26" style="padding-left:10px;">栏目列表选项:</td>
  253. <td> <label><input type='radio' name='isdefault' value='1' class='np'
  254. <?php if($myrow['isdefault']==1) echo " checked='1' ";?> />
  255. 链接到默认页</label>
  256. <label><input type='radio' name='isdefault' value='0' class='np'
  257. <?php if($myrow['isdefault']==0) echo " checked='1' ";?> />
  258. 链接到列表第一页</label>
  259. <label><input type='radio' name='isdefault' value='-1' class='np'
  260. <?php if($myrow['isdefault']==-1) echo " checked='1' ";?> />
  261. 使用动态页</label> </td>
  262. </tr>
  263. <tr>
  264. <td class='bline' height="26" style="padding-left:10px;">默认页的名称: </td>
  265. <td class='bline'><input name="defaultname" type="text" value="<?php echo $myrow['defaultname']?>"
  266. class="iptxt" /></td>
  267. </tr>
  268. <tr>
  269. <td height="26" class='bline' style="padding-left:10px;">栏目属性:</td>
  270. <td class='bline'>
  271. <label><input name="ispart" type="radio" id="radio" value="0" class='np'
  272. <?php if($myrow['ispart']==0) echo " checked='1' ";?> />
  273. 最终列表栏目(允许在本栏目发布文档,并生成文档列表)</label><br>
  274. <label><input name="ispart" type="radio" id="radio2" value="1" class='np'
  275. <?php if($myrow['ispart']==1) echo " checked='1' ";?> />
  276. 频道封面(栏目本身不允许发布文档)</label><br>
  277. <label><input name="ispart" type="radio" id="radio3" value="2" class='np'
  278. <?php if($myrow['ispart']==2) echo " checked='1' ";?> />
  279. 外部连接(在"文件保存目录"处填写网址)</label>
  280. </td>
  281. </tr>
  282. <tr id='helpvarco' style='display:none'>
  283. <td height="80" bgcolor="#F3F7EA" style="padding-left:10px;">栏目交叉说明: </td>
  284. <td bgcolor="#F3F7EA">
  285. 交叉栏目是指一个大栏目与另一个非下级的子栏目出现交叉的情况,相当于系统原来的副栏目功能,不过现在改在栏目里预先设置好。<br />例如:
  286. 网站上有大栏目——智能手机、音乐手机,另外又有栏目——诺基亚-&gt;智能手机、诺基亚-&gt;音乐手机,这样顶级的大栏目就和另一个大栏目的子栏目形成了交叉,这样只需要在大栏目中指定交叉的栏目即可。
  287. <br />注:会自动索引交叉栏目的内容,但不会索引交叉栏目下级栏目的内容,这种应用也适用于按地区划分资讯的站点。
  288. </td>
  289. </tr>
  290. <tr>
  291. <td style="padding-left:10px;">栏目交叉:<img src="images/help.gif" alt="帮助" width="16" height="16" border="0"
  292. style="cursor:pointer" onClick="ShowHide('helpvarco')" /><br />仅适用[最终列表栏目]</td>
  293. <td class='bline' style="padding:3px 0px 3px 0px">
  294. <label><input name="cross" type="radio" id="cross0" onClick="CheckCross()" value="0" class='np'
  295. <?php if($myrow['cross']==0) echo " checked='1' ";?> />
  296. 不交叉</label>
  297. <label><input name="cross" type="radio" id="cross1" onClick="CheckCross()" value="1" class='np'
  298. <?php if($myrow['cross']==1) echo " checked='1' ";?> />
  299. 自动获取同名栏目内容</label>
  300. <label><input name="cross" type="radio" id="cross2" onClick="CheckCross()" value="2" class='np'
  301. <?php if($myrow['cross']==2) echo " checked='1' ";?> />
  302. 手工指定交叉栏目ID(用逗号分开)</label>
  303. <br />
  304. <textarea name="crossid" cols="50" rows="3" id="crossid"
  305. style="<?php if($myrow['cross']!=2) echo "display:none";?>"
  306. class="alltxt"><?php echo $myrow['crossid']; ?></textarea>
  307. </td>
  308. </tr>
  309. <tr id='smclass' style='<?php echo ($channelid<0 ? '' : 'display:none'); ?>'>
  310. <td class='bline' style="padding-left:10px;">绑定小分类: <br />仅适用[分类信息模型]</td>
  311. <td class='bline' style="padding:3px 0px 3px 0px">
  312. <select name='smalltype[]' size='5' style='width:120px;height: auto;' multiple='yes'>
  313. <?php
  314. $smtypes = explode(',',trim($myrow['smalltypes']));
  315. $sql = "Select * From `#@__sys_enum` where egroup like 'infotype' order by disorder asc, id desc ";
  316. $dsql->Execute('s',$sql);
  317. while($arr = $dsql->GetArray('s'))
  318. {
  319. if(in_array($arr['evalue'],$smtypes)) {
  320. $selstr = " selected='1' ";
  321. }
  322. else {
  323. $selstr = '';
  324. }
  325. if($arr['evalue']%500==0) {
  326. echo "<option value='{$arr['evalue']}'{$selstr}>{$arr['ename']}</option>\r\n";
  327. }
  328. else if(preg_match("#\.#", $arr['evalue']))
  329. {
  330. echo "<option value='{$arr['evalue']}'{$selstr}> └───{$arr['ename']}</option>\r\n";
  331. }
  332. else {
  333. echo "<option value='{$arr['evalue']}'{$selstr}> └─{$arr['ename']}</option>\r\n";
  334. }
  335. }
  336. ?>
  337. </select>
  338. 按 Ctrl 多选,不选系统将调用全部分类,在<a href='stepselect_main.php'>“联动类别管理”</a>中管理
  339. </td>
  340. </tr>
  341. </table>
  342. <table width="100%" border="0" cellspacing="0" cellpadding="0"
  343. style="border:1px solid #cfcfcf;background:#ffffff;display:none;text-align:left;" id="adset" class="table">
  344. <tr>
  345. <td class='bline' width="150" height="24" style="padding-left:10px;">多站点支持:</td>
  346. <td class='bline'> <label><input name="moresite" type="radio" class="np" value="0"
  347. <?php if($myrow['moresite']==0) echo " checked='1' ";?> />
  348. 不启用</label>
  349. <label><input type="radio" name="moresite" class="np" value="1"
  350. <?php if($myrow['moresite']==1) echo " checked='1' ";?> />
  351. 启用</label> </td>
  352. </tr>
  353. <tr>
  354. <td height="24" bgcolor="#F9FCEF" style="padding-left:10px;">说明:</td>
  355. <td bgcolor="#F9FCEF">绑名绑定仅需要在顶级栏目设定,子级栏目更改无效。</td>
  356. </tr>
  357. <tr>
  358. <td class='bline' height="24" style="padding-left:10px;">绑定域名:</td>
  359. <td class='bline'> <input name="siteurl" type="text" id="siteurl" size="35"
  360. value="<?php echo $myrow['siteurl']?>" class="iptxt" />
  361. (需加 http://,一级或二级域名的根网址) </td>
  362. </tr>
  363. <tr>
  364. <td class='bline' height="24" style="padding-left:10px;">站点根目录:</td>
  365. <td class='bline'>
  366. 为简化操作,站点根目录与当前栏目目录一致,请注意当前栏目文件保存目录的设置,域名需自行手工绑定到这个目录。
  367. </td>
  368. </tr>
  369. <tr id='helpvar1' style='display:none'>
  370. <td height="24" bgcolor="#F9FCEF" style="padding-left:10px;">支持变量: </td>
  371. <td bgcolor="#F9FCEF"> {tid}表示栏目ID,<br>
  372. {cid}表示频道模型的'名字ID' <font color='#888888'> (
  373. <?php
  374. foreach($channelArray as $k=>$arr)
  375. {
  376. echo "{$arr['typename']}({$arr['nid']})、";
  377. }
  378. ?>
  379. ) </font> <br />
  380. 模板文件的默认位置是放在模板目录 "cms安装目录
  381. <?php echo $cfg_templets_dir ?>
  382. " 内。
  383. <input type='hidden' value='{style}' name='dfstyle' /> </td>
  384. </tr>
  385. <tr>
  386. <td height="26" style="padding-left:10px;">封面模板:</td>
  387. <td> <input name="tempindex" type="text" value="<?php echo $myrow['tempindex']?>" style="width:300px"
  388. class="iptxt" />
  389. <button type="button" name="set1" class="btn btn-success btn-sm"
  390. onClick="SelectTemplets('form1.tempindex');">浏览...</button>
  391. <img src="images/help.gif" alt="帮助" width="16" height="16" border="0" style="cursor:pointer"
  392. onClick="ShowHide('helpvar1')" />
  393. </td>
  394. </tr>
  395. <tr>
  396. <td height="26" style="padding-left:10px;">列表模板:</td>
  397. <td> <input name="templist" type="text" value="<?php echo $myrow['templist']?>" style="width:300px"
  398. class="iptxt" />
  399. <button type="button" name="set3" class="btn btn-success btn-sm"
  400. onClick="SelectTemplets('form1.templist');">浏览...</button>
  401. </td>
  402. </tr>
  403. <tr>
  404. <td height="26" style="padding-left:10px;">文章模板:</td>
  405. <td><input name="temparticle" type="text" value="<?php echo $myrow['temparticle']?>" style="width:300px"
  406. class="iptxt" />
  407. <button type="button" name="set4" class="btn btn-success btn-sm"
  408. onClick="SelectTemplets('form1.temparticle');">浏览...</button>
  409. </td>
  410. </tr>
  411. <tr id='helpvar2' style='display:none'>
  412. <td height="24" bgcolor="#F9FCEF" style="padding-left:10px;">支持变量: </td>
  413. <td height="24" bgcolor="#F9FCEF"> {Y}、{M}、{D} 年月日<br />
  414. {timestamp} INT类型的UNIX时间戳<br />
  415. {aid} 文章ID<br />
  416. {pinyin} 拼音+文章ID<br />
  417. {py} 拼音部首+文章ID<br />
  418. {typedir} 栏目目录 <br />
  419. {cc} 日期+ID混编后用转换为适合的字母 <br />
  420. </td>
  421. </tr>
  422. <tr>
  423. <td height="26" style="padding-left:10px;">文章命名规则:</td>
  424. <td> <input name="namerule" type="text" id="namerule" value="<?php echo $myrow['namerule']?>" size="40"
  425. class="iptxt" />
  426. <img src="images/help.gif" alt="帮助" width="16" height="16" border="0" style="cursor:pointer"
  427. onClick="ShowHide('helpvar2')" />
  428. </td>
  429. </tr>
  430. <tr id='helpvar3' style='display:none'>
  431. <td height="24" bgcolor="#F9FCEF" style="padding-left:10px;">支持变量: </td>
  432. <td bgcolor="#F9FCEF">{page} 列表的页码</td>
  433. </tr>
  434. <tr>
  435. <td height="26" style="padding-left:10px;">列表命名规则:</td>
  436. <td> <input name="namerule2" type="text" id="namerule2" value="<?php echo $myrow['namerule2']?>" size="40"
  437. class="iptxt" />
  438. <img src="images/help.gif" alt="帮助" width="16" height="16" border="0" style="cursor:pointer"
  439. onClick="ShowHide('helpvar3')" /></td>
  440. </tr>
  441. <tr>
  442. <td height="65" style="padding-left:10px;">SEO标题:</td>
  443. <td>
  444. <input name="seotitle" type="text" style="width:250px" id="seotitle" class="alltxt"
  445. value="<?php echo $myrow['seotitle']?>" />
  446. (栏目模板里用{dede:field.seotitle /}调用)
  447. </td>
  448. </tr>
  449. <tr>
  450. <td height="65" style="padding-left:10px;">关键字:</td>
  451. <td> <textarea name="keywords" cols="70" rows="4" id="keywords"
  452. class="alltxt"><?php echo $myrow['keywords']?></textarea>
  453. </td>
  454. </tr>
  455. <tr>
  456. <td height="65" style="padding-left:10px;">栏目描述:</td>
  457. <td height="65"><textarea name="description" cols="70" style="height:50px" rows="4" id="description"
  458. class="alltxt"><?php echo $myrow['description']?></textarea></td>
  459. </tr>
  460. <tr>
  461. <td height="45" style="padding-left:10px;">继承选项:</td>
  462. <td>
  463. <label><input name="upnext" type="checkbox" id="upnext" value="1" class="np" />
  464. 同时更改下级栏目的浏览权限、内容类型、模板风格、命名规则等通用属性</label>
  465. </td>
  466. </tr>
  467. </table>
  468. <table width="100%" border="0" cellspacing="0" cellpadding="0"
  469. style="border:1px solid #cfcfcf;background:#ffffff;display:none;text-align:left;" id="ctset" class="table">
  470. <tr>
  471. <td height="28">&nbsp;说明:栏目内容是替代原来栏目单独页的更灵活的一种方式,可在栏目模板中用{dede:field.content/}调用,通常用于企业简介之类的用途。</td>
  472. </tr>
  473. <tr>
  474. <td style="padding:10px;">
  475. <?php
  476. GetEditor("content",$myrow['content'],"450","Default","print","false");
  477. ?>
  478. </td>
  479. </tr>
  480. </table>
  481. <table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#F9FCEF"
  482. style="border:1px solid #cfcfcf;border-top:none;" class="mb-3">
  483. <tr>
  484. <td width="1%" height="36"></td>
  485. <td width="99%" valign="bottom" class="py-3">
  486. <button type="submit" class="btn btn-success">确定</button>
  487. &nbsp;&nbsp;&nbsp;
  488. <a href="catalog_main.php" class="btn btn-success">返回</a>
  489. </td>
  490. </tr>
  491. </table>
  492. </td>
  493. </form>
  494. </tr>
  495. </table>
  496. </body>
  497. </html>