国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

356 líneas
17KB

  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. <link rel="stylesheet" href="/static/web/css/daterangepicker.css">
  11. <link rel="stylesheet" href="/static/web/css/cropper.min.css">
  12. <script>const cfg_uplitpic_cut = '<?php echo $cfg_uplitpic_cut;?>';</script>
  13. <script src="/static/web/js/jquery.min.js"></script>
  14. <script src="/static/web/js/bootstrap.min.js"></script>
  15. <script src="/static/web/js/webajax.js"></script>
  16. <script src="/static/web/js/moment.min.js"></script>
  17. <script src="/static/web/js/daterangepicker.js"></script>
  18. <script src="/static/web/js/cropper.min.js"></script>
  19. <script src="/static/web/js/admin.main.js"></script>
  20. <script src="/static/web/js/admin.album.js"></script>
  21. </head>
  22. <body>
  23. <div class="container-fluid">
  24. <ol class="breadcrumb">
  25. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  26. <?php $cid=isset($cid) ? $cid : '';$channelid=isset($channelid) ? $channelid : '';?><li class="breadcrumb-item"><a href="catalog_do.php?cid=<?php echo $cid?>&channelid=<?php echo $channelid?>&dopost=listArchives">图片列表</a></li>
  27. <li class="breadcrumb-item active">修改图片文档</li>
  28. </ol>
  29. <div class="card shadow-sm">
  30. <div class="card-header">修改<?php echo $arcRow['title'];?>文档</div>
  31. <div class="card-body">
  32. <form name="form1" action="album_edit.php" method="post" enctype="multipart/form-data" onSubmit="return checkSubmitAlb();">
  33. <input type="hidden" name="channelid" value="<?php echo $channelid?>">
  34. <input type="hidden" name="id" value="<?php echo $aid?>">
  35. <input type="hidden" name="imagebody">
  36. <input type="hidden" name="dopost" value="save">
  37. <input type="hidden" id="albums" name="albums">
  38. <div class="table-responsive">
  39. <table class="table table-borderless">
  40. <tbody>
  41. <tr>
  42. <td width="160">图片标题</td>
  43. <td width="650"><input type="text" name="title" id="title" value="<?php echo $arcRow['title'];?>" class="admin-input-lg" required></td>
  44. <td width="160">简略标题</td>
  45. <td><input type="text" name="shorttitle" id="shorttitle" value="<?php echo $arcRow['shorttitle'];?>" class="admin-input-sm"></td>
  46. </tr>
  47. <tr>
  48. <td>自定义属性</td>
  49. <td colspan="3">
  50. <?php
  51. $dsql->SetQuery("SELECT * FROM `#@__arcatt` ORDER BY sortid ASC");
  52. $dsql->Execute();
  53. while($trow = $dsql->GetObject())
  54. {
  55. if ($trow->att=='j') $jumpclick = " onclick='ShowUrlTr()'";
  56. else $jumpclick = '';
  57. if (preg_match("#".$trow->att."#", $arcRow['flag']))
  58. echo "<label><input type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}' {$jumpclick} checked> {$trow->attname}[{$trow->att}]</label> ";
  59. else
  60. echo "<label><input type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}' {$jumpclick}> {$trow->attname}[{$trow->att}]</label> ";
  61. }
  62. ?>
  63. </td>
  64. </tr>
  65. <tr id="redirecturltr" style="display:<?php echo (empty($addRow['redirecturl']) ? 'none' : 'table-row');?>">
  66. <td>跳转网址</td>
  67. <td colspan="3"><input type="text" name="redirecturl" id="redirecturl" value="<?php echo $addRow['redirecturl']?>" class="admin-input-lg"></td>
  68. </tr>
  69. <tr>
  70. <td>标签</td>
  71. <td><input type="text" name="tags" id="tags" value="<?php echo $tags;?>" class="admin-input-lg">(英文逗号隔开,如:DedeBIZ,得德)</td>
  72. <td>权重</td>
  73. <td><input type="text" name="weight" id="weight" value="<?php echo $arcRow['weight'];?>" class="admin-input-sm">(越小越靠前)</td>
  74. </tr>
  75. <tr id="pictable">
  76. <td>缩略图</td>
  77. <td colspan="3">
  78. <input type="text" name="picname" id="picname" value="<?php echo $arcRow['litpic']?>" class="admin-input-lg">
  79. <label><input type="checkbox" name="ddisremote" value="1" id="ddisremote"> 远程图片</label>
  80. <span class="btn btn-success btn-sm opt-button">上传<input type="file" name="files[]" id="iptAddImages"></span>
  81. <button type="button" onclick="SelectImage('form1.picname','');" class="btn btn-success btn-sm">选择</button>
  82. <button type="button" id="btnClearAll" class="btn btn-success btn-sm">清空</button>
  83. <img src="<?php if ($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '/static/web/img/thumbnail.jpg';?>" id="litPic" class="thumbnail-md ml-3">
  84. </td>
  85. </tr>
  86. <tr>
  87. <td>来源</td>
  88. <td>
  89. <input type="text" name="source" id="source" value="<?php echo $arcRow['source']?>" class="admin-input-sm">
  90. <button type="button" name="selsource" id="selsource" class="btn btn-success btn-sm">选择</button>
  91. </td>
  92. <td>编辑</td>
  93. <td>
  94. <input type="text" name="writer" id="writer" value="<?php echo $arcRow['writer']?>" class="admin-input-sm">
  95. <button type="button" name="selwriter" id="selwriter" class="btn btn-success btn-sm">选择</button>
  96. </td>
  97. </tr>
  98. <tr>
  99. <td>发布栏目</td>
  100. <td>
  101. <?php
  102. $typeOptions = GetOptionList($arcRow['typeid'],$cuserLogin->getUserChannel(),$channelid);
  103. echo "<select name='typeid' id='typeid' class='admin-input-sm'>";
  104. if ($arcRow['typeid']=='0') echo "<option value='0' selected>请选择主分类</option>";
  105. echo $typeOptions;
  106. echo '</select>';
  107. ?>
  108. <a href="javascript:ShowCatMap(event,this,<?php echo $channelid;?>,'typeid','<?php echo $arcRow['typeid'];?>');" class="btn btn-success btn-sm">选择</a>
  109. </td>
  110. <td>金币</td>
  111. <td><input type="text" name="money" id="money" value="<?php echo $arcRow['money']?>" class="admin-input-sm"></td>
  112. </tr>
  113. <?php if ($cfg_need_typeid2=='Y') {?>
  114. <tr>
  115. <td>副栏目</td>
  116. <td colspan="3">
  117. <span id="typeid2ct"></span>
  118. <input type="text" name="typeid2" id="typeid2" value="<?php echo ($arcRow['typeid2']=='0' ? '' : $arcRow['typeid2']);?>" class="admin-input-sm">
  119. <a href="javascript:ShowCatMap(event,this,<?php echo $channelid;?>,'typeid2','<?php echo $arcRow['typeid2'];?>');" class="btn btn-success btn-sm">选择</a>
  120. </td>
  121. </tr>
  122. <?php }?>
  123. <tr>
  124. <td>关键词</td>
  125. <td colspan="3"><input type="text" name="keywords" id="keywords" value="<?php echo $arcRow['keywords']?>" class="admin-input-lg"></td>
  126. </tr>
  127. <tr>
  128. <td>描述</td>
  129. <td colspan="3"><textarea name="description" id="description" class="admin-textarea-sm"><?php echo $arcRow['description']?></textarea></td>
  130. </tr>
  131. <tr>
  132. <td>附加选项</td>
  133. <td colspan="3">
  134. <label><input type="checkbox" name="remote" id="remote" value="1" <?php if ($cfg_rm_remote=='Y') echo 'checked';?>> 下载远程图片和资源</label>
  135. <label><input type="checkbox" name="autolitpic" id="autolitpic" value="1" <?php if ($cfg_arc_autopic=='Y') echo 'checked';?>> 提取第一个图片为缩略图</label>
  136. </td>
  137. </tr>
  138. <tr>
  139. <td>表现方式</td>
  140. <td colspan="3">
  141. <label><input type="radio" name="pagestyle" id="pagestyle1" onclick="checkMuList();" value="1" <?php if ($pagestyle==1) echo 'checked';?>> <img src="/static/web/img/alb2.jpg" title="单页多图样式"></label>
  142. <label><input type="radio" name="pagestyle" id="pagestyle2" onclick="checkMuList();" value="2" <?php if ($pagestyle==2) echo 'checked';?>> <img src="/static/web/img/alb1.jpg" title="幻灯片样式"></label>
  143. <label><input type="radio" name="pagestyle" id="pagestyle3" onclick="checkMuList();" value="3" <?php if ($pagestyle==3) echo 'checked';?>> <img src="/static/web/img/alb3.jpg" title="多缩略图样式"></label>
  144. </td>
  145. </tr>
  146. <tr id="cfgmulist" style="<?php if ($pagestyle!=3) echo 'display:none';?>">
  147. <td>多列式参数</td>
  148. <td colspan="3">
  149. <label>行:<input type="text" name="row" id="row" value="<?php echo $irow;?>" class="admin-input-sm"></label>
  150. <label>列:<input type="text" name="col" id="col" value="<?php echo $icol;?>" class="admin-input-sm"></label>
  151. <label>图片宽度:<input type="text" name="ddmaxwidth" id="ddmaxwidth" value="<?php echo $ddmaxwidth;?>" class="admin-input-sm"> 像素</label>
  152. <span>(每页输出行x列张图片,实现需自行控制样式表)</span>
  153. </td>
  154. </tr>
  155. <tr id="spagelist" style="<?php if ($pagestyle!=1) echo 'display:none';?>">
  156. <td>每页图片数</td>
  157. <td><input name="pagepicnum" id="pagpicnum" class="admin-input-sm" value="<?php echo $pagepicnum;?>">(单页多图显示需要设置此参数,这种模式下系统不会为每张图单独生成缩略图)</td>
  158. <td>限制宽度</td>
  159. <td><input type="text" name="maxwidth" id="maxwidth" class="admin-input-sm" value="<?php echo $maxwidth?>">(防止图片太宽在模板页中溢出)</td>
  160. </tr>
  161. <tr>
  162. <td colspan="4">
  163. <div id="galleryedit">
  164. <?php
  165. $j = 1;
  166. if ($imgurls!=""){
  167. $dtp = new DedeTagParse();
  168. $dtp->LoadSource($imgurls);
  169. if (is_array($dtp->CTags)) {
  170. foreach($dtp->CTags as $ctag)
  171. {
  172. if ($ctag->GetName()=="img") {
  173. $bigimg = trim($ctag->GetInnerText());
  174. if ($ctag->GetAtt('ddimg') != $bigimg && $ctag->GetAtt('ddimg')!='') {
  175. $litimg = $ctag->GetAtt('ddimg');
  176. } else {
  177. if (preg_match("#^(http|https):\/\/#i", $bigimg)) $litimg = $bigimg;
  178. else $litimg = 'swfupload.php?dopost=ddimg&img='.$bigimg;
  179. }
  180. $fhtml = '';
  181. $fhtml .= "<div class='atlas' id='albold{$j}'>";
  182. $fhtml .= "<input type='hidden' name='imgurl{$j}' value='{$bigimg}'>";
  183. $fhtml .= "<input type='hidden' name='imgddurl{$j}' value='{$litimg}'>";
  184. $fhtml .= "<div class='atlas-head'><img src='{$litimg}' id='lit{$j}'></div>";
  185. $fhtml .= "<div class='atlas-body'><input type='text' name='imgmsg{$j}' value='".$ctag->GetAtt('text')."' class='atlas-input' placeholder='请输入图片注释'></div>";
  186. $fhtml .= "<div class='atlas-foot'><span class='btn btn-success btn-sm opt-button'>更换<input type='file' name='imgfile{$j}' for='item{$j}' class='atlasedit'></span><a href=\"javascript:delAlbPicOld('$bigimg',$j)\" class=\"btn btn-danger btn-sm\">删除</a></div>";
  187. $fhtml .= "</div>";
  188. echo $fhtml;
  189. $j++;
  190. }
  191. }
  192. }
  193. $dtp->Clear();
  194. }
  195. ?>
  196. </div>
  197. </td>
  198. </tr>
  199. <tr>
  200. <td>本地上传</td>
  201. <td colspan="3"><span class="btn btn-success btn-sm opt-button">上传多图<input type="file" name="files[]" id="iptAlbumImages" multiple></span></td>
  202. </tr>
  203. <tr>
  204. <td colspan="4">
  205. <div id="gallery"></div>
  206. </td>
  207. </tr>
  208. <?php PrintAutoFieldsEdit($cInfos['fieldset'],$addRow,'autofield');?>
  209. <tr>
  210. <td colspan="4"><?php GetEditor('body',$body,350,'Diy');?></td>
  211. </tr>
  212. <tr>
  213. <td>评论选项</td>
  214. <td>
  215. <label><input type="radio" name="notpost" value="0" <?php if ($arcRow['notpost']==0) echo 'checked';?>> 允许评论</label>
  216. <label><input type="radio" name="notpost" value="1" <?php if ($arcRow['notpost']==1) echo 'checked';?>> 禁止评论</label>
  217. </td>
  218. <td>发布选项</td>
  219. <td>
  220. <label><input type="radio" name="ishtml" value="1" <?php if ($arcRow["ismake"]!=-1) echo 'checked';?>> 静态浏览</label>
  221. <label><input type="radio" name="ishtml" value="0" <?php if ($arcRow["ismake"]==-1) echo 'checked';?>> 动态浏览</label>
  222. </td>
  223. </tr>
  224. <tr>
  225. <td>文档排序</td>
  226. <td>
  227. <select name="sortup" id="sortup" class="admin-input-sm">
  228. <?php
  229. $subday = SubDay($arcRow["sortrank"],$arcRow["pubdate"]);
  230. echo "<option value='0'>正常排序</option>";
  231. if ($subday>0) echo "<option value='$subday' selected>置顶".$subday."天</option>";
  232. ?>
  233. <option value="7">置顶一周</option>
  234. <option value="30">置顶一个月</option>
  235. <option value="90">置顶三个月</option>
  236. <option value="180">置顶半年</option>
  237. <option value="360">置顶一年</option>
  238. </select>
  239. </td>
  240. <td>标题颜色</td>
  241. <td>
  242. <input type="text" name="color" id="color" value="<?php echo $arcRow['color']?>" class="admin-input-sm">
  243. <button type="button" name="modcolor" id="modcolor" class="btn btn-success btn-sm" onclick="ShowColor(event,this)">选择</button>
  244. </td>
  245. </tr>
  246. <tr>
  247. <td>浏览权限</td>
  248. <td>
  249. <select name="arcrank" id="arcrank" class="admin-input-sm">
  250. <option value="<?php echo $arcRow['arcrank']?>"><?php echo $arcRow["rankname"]?></option>
  251. <?php
  252. $urank = $cuserLogin->getUserRank();
  253. $dsql->SetQuery("SELECT * FROM #@__arcrank where adminrank<='$urank' ORDER BY `rank` ASC");
  254. $dsql->Execute();
  255. while($row = $dsql->GetObject()){
  256. echo "<option value='".$row->rank."'>".$row->membername."</option>";
  257. }
  258. ?>
  259. </select>
  260. <span>(暂不支持静态)</span>
  261. </td>
  262. <td>文件名称</td>
  263. <td><input type="text" name="filename" id="filename" value="<?php echo $arcRow['filename']?>" class="admin-input-sm">(不包括文件扩展名)</td>
  264. </tr>
  265. <tr>
  266. <td>发布时间</td>
  267. <td>
  268. <?php
  269. $notime = GetDateTimeMk($arcRow["pubdate"]);
  270. echo "<input type='text' name='pubdate' value='$notime' id='pubdate' class='datepicker admin-input-sm'>";
  271. ?>
  272. </td>
  273. <td>更新时间</td>
  274. <td>
  275. <?php
  276. $nowtime = GetDateTimeMk(time());
  277. echo "<input type='text' name='senddate' value='$nowtime' id='senddate' class='datepicker admin-input-sm'>";
  278. ?>
  279. </td>
  280. </tr>
  281. <tr>
  282. <td>浏览次数</td>
  283. <td><input type="text" name="click" value="<?php echo $arcRow['click'];?>" class="admin-input-sm"></td>
  284. </tr>
  285. <tr>
  286. <td align="center" colspan="4">
  287. <button type="submit" class="btn btn-success btn-sm">保存</button>
  288. <button type="reset" class="btn btn-outline-success btn-sm">重置</button>
  289. </td>
  290. </tbody>
  291. </table>
  292. </div>
  293. </form>
  294. </div>
  295. </div>
  296. </div>
  297. <script>
  298. var swfu = null;
  299. var vcc = 0;
  300. var albums = [];
  301. $(".atlasedit").change(function(val) {
  302. var formData = new FormData();
  303. var fileData = val.target.files[0];
  304. formData.append('file', fileData);
  305. $.ajax({
  306. url: 'api.php?action=upload_image',
  307. type: 'POST',
  308. data: formData,
  309. processData: false,
  310. contentType: false,
  311. success: function(result) {
  312. if (result.code === 0) {
  313. let idx = val.target.getAttribute("for").replace("item","");
  314. $(`input[name='imgurl${idx}']`).val(result.data);
  315. $(`input[name='imgddurl${idx}']`).val(result.data);
  316. $("#lit"+idx).attr('src', result.data);
  317. } else {
  318. ShowMsg(result.error.message);
  319. }
  320. },
  321. error: function(xhr, status, error) {
  322. ShowMsg(error); //处理上传失败后的回调
  323. }
  324. });
  325. });
  326. $("#iptAlbumImages").change(function(val) {
  327. for (let i = 0; i < val.target.files.length; i++) {
  328. const f = val.target.files[i];
  329. var formData = new FormData();
  330. var fileData = f;
  331. formData.append('file', fileData);
  332. $.ajax({
  333. url: 'api.php?action=upload_image',
  334. type: 'POST',
  335. data: formData,
  336. processData: false,
  337. contentType: false,
  338. success: function(result) {
  339. if (result.code === 0) {
  340. // console.log(result)
  341. addImage(result.data, 0);
  342. $("#iptAlbumImages").val('');
  343. } else {
  344. ShowMsg(result.error.message);
  345. }
  346. },
  347. error: function(xhr, status, error) {
  348. ShowMsg(error); //处理上传失败后的回调
  349. }
  350. });
  351. }
  352. });
  353. </script>
  354. <script>InitPage();</script>
  355. </body>
  356. </html>