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

521 lines
26KB

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