|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
- <title>修改图片文档</title>
- <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
- <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="/static/web/css/admin.css">
- <link rel="stylesheet" href="/static/web/css/daterangepicker.css">
- <link rel="stylesheet" href="/static/web/css/cropper.min.css">
- <script>const cfg_uplitpic_cut = '<?php echo $cfg_uplitpic_cut;?>';</script>
- <script src="/static/web/js/jquery.min.js"></script>
- <script src="/static/web/js/bootstrap.min.js"></script>
- <script src="/static/web/js/webajax.js"></script>
- <script src="/static/web/js/moment.min.js"></script>
- <script src="/static/web/js/daterangepicker.js"></script>
- <script src="/static/web/js/cropper.min.js"></script>
- <script src="/static/web/js/admin.main.js"></script>
- <script src="/static/web/js/admin.album.js"></script>
- </head>
- <body>
- <div class="container-fluid">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
- <?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>
- <li class="breadcrumb-item active">修改图片文档</li>
- </ol>
- <div class="card shadow-sm">
- <div class="card-header">修改<?php echo $arcRow['title'];?>文档</div>
- <div class="card-body">
- <form name="form1" action="album_edit.php" method="post" enctype="multipart/form-data" onSubmit="return checkSubmitAlb();">
- <input type="hidden" name="channelid" value="<?php echo $channelid?>">
- <input type="hidden" name="id" value="<?php echo $aid?>">
- <input type="hidden" name="imagebody">
- <input type="hidden" name="dopost" value="save">
- <input type="hidden" id="albums" name="albums">
- <div class="table-responsive">
- <table class="table table-borderless">
- <tbody>
- <tr>
- <td width="160">图片标题</td>
- <td width="650"><input type="text" name="title" id="title" value="<?php echo $arcRow['title'];?>" class="admin-input-lg" required></td>
- <td width="160">简略标题</td>
- <td><input type="text" name="shorttitle" id="shorttitle" value="<?php echo $arcRow['shorttitle'];?>" class="admin-input-sm"></td>
- </tr>
- <tr>
- <td>自定义属性</td>
- <td colspan="3">
- <?php
- $dsql->SetQuery("SELECT * FROM `#@__arcatt` ORDER BY sortid ASC");
- $dsql->Execute();
- while($trow = $dsql->GetObject())
- {
- if ($trow->att=='j') $jumpclick = " onclick='ShowUrlTr()'";
- else $jumpclick = '';
- if (preg_match("#".$trow->att."#", $arcRow['flag']))
- echo "<label><input type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}' {$jumpclick} checked> {$trow->attname}[{$trow->att}]</label> ";
- else
- echo "<label><input type='checkbox' name='flags[]' id='flags{$trow->att}' value='{$trow->att}' {$jumpclick}> {$trow->attname}[{$trow->att}]</label> ";
- }
- ?>
- </td>
- </tr>
- <tr id="redirecturltr" style="display:<?php echo (empty($addRow['redirecturl']) ? 'none' : 'table-row');?>">
- <td>跳转网址</td>
- <td colspan="3"><input type="text" name="redirecturl" id="redirecturl" value="<?php echo $addRow['redirecturl']?>" class="admin-input-lg"></td>
- </tr>
- <tr>
- <td>标签</td>
- <td><input type="text" name="tags" id="tags" value="<?php echo $tags;?>" class="admin-input-lg">(英文逗号隔开,如:DedeBIZ,得德)</td>
- <td>权重</td>
- <td><input type="text" name="weight" id="weight" value="<?php echo $arcRow['weight'];?>" class="admin-input-sm">(越小越靠前)</td>
- </tr>
- <tr id="pictable">
- <td>缩略图</td>
- <td colspan="3">
- <input type="text" name="picname" id="picname" value="<?php echo $arcRow['litpic']?>" class="admin-input-lg">
- <label><input type="checkbox" name="ddisremote" value="1" id="ddisremote"> 远程图片</label>
- <span class="btn btn-success btn-sm opt-button">上传<input type="file" name="files[]" id="iptAddImages"></span>
- <button type="button" onclick="SelectImage('form1.picname','');" class="btn btn-success btn-sm">选择</button>
- <button type="button" id="btnClearAll" class="btn btn-success btn-sm">清空</button>
- <img src="<?php if ($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '/static/web/img/thumbnail.jpg';?>" id="litPic" class="thumbnail-md ml-3">
- </td>
- </tr>
- <tr>
- <td>来源</td>
- <td>
- <input type="text" name="source" id="source" value="<?php echo $arcRow['source']?>" class="admin-input-sm">
- <button type="button" name="selsource" id="selsource" class="btn btn-success btn-sm">选择</button>
- </td>
- <td>编辑</td>
- <td>
- <input type="text" name="writer" id="writer" value="<?php echo $arcRow['writer']?>" class="admin-input-sm">
- <button type="button" name="selwriter" id="selwriter" class="btn btn-success btn-sm">选择</button>
- </td>
- </tr>
- <tr>
- <td>发布栏目</td>
- <td>
- <?php
- $typeOptions = GetOptionList($arcRow['typeid'],$cuserLogin->getUserChannel(),$channelid);
- echo "<select name='typeid' id='typeid' class='admin-input-sm'>";
- if ($arcRow['typeid']=='0') echo "<option value='0' selected>请选择主分类</option>";
- echo $typeOptions;
- echo '</select>';
- ?>
- <a href="javascript:ShowCatMap(event,this,<?php echo $channelid;?>,'typeid','<?php echo $arcRow['typeid'];?>');" class="btn btn-success btn-sm">选择</a>
- </td>
- <td>金币</td>
- <td><input type="text" name="money" id="money" value="<?php echo $arcRow['money']?>" class="admin-input-sm"></td>
- </tr>
- <?php if ($cfg_need_typeid2=='Y') {?>
- <tr>
- <td>副栏目</td>
- <td colspan="3">
- <span id="typeid2ct"></span>
- <input type="text" name="typeid2" id="typeid2" value="<?php echo ($arcRow['typeid2']=='0' ? '' : $arcRow['typeid2']);?>" class="admin-input-sm">
- <a href="javascript:ShowCatMap(event,this,<?php echo $channelid;?>,'typeid2','<?php echo $arcRow['typeid2'];?>');" class="btn btn-success btn-sm">选择</a>
- </td>
- </tr>
- <?php }?>
- <tr>
- <td>关键词</td>
- <td colspan="3"><input type="text" name="keywords" id="keywords" value="<?php echo $arcRow['keywords']?>" class="admin-input-lg"></td>
- </tr>
- <tr>
- <td>描述</td>
- <td colspan="3"><textarea name="description" id="description" class="admin-textarea-sm"><?php echo $arcRow['description']?></textarea></td>
- </tr>
- <tr>
- <td>附加选项</td>
- <td colspan="3">
- <label><input type="checkbox" name="remote" id="remote" value="1" <?php if ($cfg_rm_remote=='Y') echo 'checked';?>> 下载远程图片和资源</label>
- <label><input type="checkbox" name="autolitpic" id="autolitpic" value="1" <?php if ($cfg_arc_autopic=='Y') echo 'checked';?>> 提取第一个图片为缩略图</label>
- </td>
- </tr>
- <tr>
- <td>表现方式</td>
- <td colspan="3">
- <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>
- <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>
- <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>
- </td>
- </tr>
- <tr id="cfgmulist" style="<?php if ($pagestyle!=3) echo 'display:none';?>">
- <td>多列式参数</td>
- <td colspan="3">
- <label>行:<input type="text" name="row" id="row" value="<?php echo $irow;?>" class="admin-input-sm"></label>
- <label>列:<input type="text" name="col" id="col" value="<?php echo $icol;?>" class="admin-input-sm"></label>
- <label>图片宽度:<input type="text" name="ddmaxwidth" id="ddmaxwidth" value="<?php echo $ddmaxwidth;?>" class="admin-input-sm"> 像素</label>
- <span>(每页输出行x列张图片,实现需自行控制样式表)</span>
- </td>
- </tr>
- <tr id="spagelist" style="<?php if ($pagestyle!=1) echo 'display:none';?>">
- <td>每页图片数</td>
- <td><input name="pagepicnum" id="pagpicnum" class="admin-input-sm" value="<?php echo $pagepicnum;?>">(单页多图显示需要设置此参数,这种模式下系统不会为每张图单独生成缩略图)</td>
- <td>限制宽度</td>
- <td><input type="text" name="maxwidth" id="maxwidth" class="admin-input-sm" value="<?php echo $maxwidth?>">(防止图片太宽在模板页中溢出)</td>
- </tr>
- <tr>
- <td colspan="4">
- <div id="galleryedit">
- <?php
- $j = 1;
- if ($imgurls!=""){
- $dtp = new DedeTagParse();
- $dtp->LoadSource($imgurls);
- if (is_array($dtp->CTags)) {
- foreach($dtp->CTags as $ctag)
- {
- if ($ctag->GetName()=="img") {
- $bigimg = trim($ctag->GetInnerText());
- if ($ctag->GetAtt('ddimg') != $bigimg && $ctag->GetAtt('ddimg')!='') {
- $litimg = $ctag->GetAtt('ddimg');
- } else {
- if (preg_match("#^(http|https):\/\/#i", $bigimg)) $litimg = $bigimg;
- else $litimg = 'swfupload.php?dopost=ddimg&img='.$bigimg;
- }
- $fhtml = '';
- $fhtml .= "<div class='atlas' id='albold{$j}'>";
- $fhtml .= "<input type='hidden' name='imgurl{$j}' value='{$bigimg}'>";
- $fhtml .= "<input type='hidden' name='imgddurl{$j}' value='{$litimg}'>";
- $fhtml .= "<div class='atlas-head'><img src='{$litimg}' id='lit{$j}'></div>";
- $fhtml .= "<div class='atlas-body'><input type='text' name='imgmsg{$j}' value='".$ctag->GetAtt('text')."' class='atlas-input' placeholder='请输入图片注释'></div>";
- $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>";
- $fhtml .= "</div>";
- echo $fhtml;
- $j++;
- }
- }
- }
- $dtp->Clear();
- }
- ?>
- </div>
- </td>
- </tr>
- <tr>
- <td>本地上传</td>
- <td colspan="3"><span class="btn btn-success btn-sm opt-button">上传多图<input type="file" name="files[]" id="iptAlbumImages" multiple></span></td>
- </tr>
- <tr>
- <td colspan="4">
- <div id="gallery"></div>
- </td>
- </tr>
- <?php PrintAutoFieldsEdit($cInfos['fieldset'],$addRow,'autofield');?>
- <tr>
- <td colspan="4"><?php GetEditor('body',$body,350,'Diy');?></td>
- </tr>
- <tr>
- <td>评论选项</td>
- <td>
- <label><input type="radio" name="notpost" value="0" <?php if ($arcRow['notpost']==0) echo 'checked';?>> 允许评论</label>
- <label><input type="radio" name="notpost" value="1" <?php if ($arcRow['notpost']==1) echo 'checked';?>> 禁止评论</label>
- </td>
- <td>发布选项</td>
- <td>
- <label><input type="radio" name="ishtml" value="1" <?php if ($arcRow["ismake"]!=-1) echo 'checked';?>> 静态浏览</label>
- <label><input type="radio" name="ishtml" value="0" <?php if ($arcRow["ismake"]==-1) echo 'checked';?>> 动态浏览</label>
- </td>
- </tr>
- <tr>
- <td>文档排序</td>
- <td>
- <select name="sortup" id="sortup" class="admin-input-sm">
- <?php
- $subday = SubDay($arcRow["sortrank"],$arcRow["pubdate"]);
- echo "<option value='0'>正常排序</option>";
- if ($subday>0) echo "<option value='$subday' selected>置顶".$subday."天</option>";
- ?>
- <option value="7">置顶一周</option>
- <option value="30">置顶一个月</option>
- <option value="90">置顶三个月</option>
- <option value="180">置顶半年</option>
- <option value="360">置顶一年</option>
- </select>
- </td>
- <td>标题颜色</td>
- <td>
- <input type="text" name="color" id="color" value="<?php echo $arcRow['color']?>" class="admin-input-sm">
- <button type="button" name="modcolor" id="modcolor" class="btn btn-success btn-sm" onclick="ShowColor(event,this)">选择</button>
- </td>
- </tr>
- <tr>
- <td>浏览权限</td>
- <td>
- <select name="arcrank" id="arcrank" class="admin-input-sm">
- <option value="<?php echo $arcRow['arcrank']?>"><?php echo $arcRow["rankname"]?></option>
- <?php
- $urank = $cuserLogin->getUserRank();
- $dsql->SetQuery("SELECT * FROM #@__arcrank where adminrank<='$urank' ORDER BY `rank` ASC");
- $dsql->Execute();
- while($row = $dsql->GetObject()){
- echo "<option value='".$row->rank."'>".$row->membername."</option>";
- }
- ?>
- </select>
- <span>(暂不支持静态)</span>
- </td>
- <td>文件名称</td>
- <td><input type="text" name="filename" id="filename" value="<?php echo $arcRow['filename']?>" class="admin-input-sm">(不包括文件扩展名)</td>
- </tr>
- <tr>
- <td>发布时间</td>
- <td>
- <?php
- $notime = GetDateTimeMk($arcRow["pubdate"]);
- echo "<input type='text' name='pubdate' value='$notime' id='pubdate' class='datepicker admin-input-sm'>";
- ?>
- </td>
- <td>更新时间</td>
- <td>
- <?php
- $nowtime = GetDateTimeMk(time());
- echo "<input type='text' name='senddate' value='$nowtime' id='senddate' class='datepicker admin-input-sm'>";
- ?>
- </td>
- </tr>
- <tr>
- <td>浏览次数</td>
- <td><input type="text" name="click" value="<?php echo $arcRow['click'];?>" class="admin-input-sm"></td>
- </tr>
- <tr>
- <td align="center" colspan="4">
- <button type="submit" class="btn btn-success btn-sm">保存</button>
- <button type="reset" class="btn btn-outline-success btn-sm">重置</button>
- </td>
- </tbody>
- </table>
- </div>
- </form>
- </div>
- </div>
- </div>
- <script>
- var swfu = null;
- var vcc = 0;
- var albums = [];
- $(".atlasedit").change(function(val) {
- var formData = new FormData();
- var fileData = val.target.files[0];
- formData.append('file', fileData);
- $.ajax({
- url: 'api.php?action=upload_image',
- type: 'POST',
- data: formData,
- processData: false,
- contentType: false,
- success: function(result) {
- if (result.code === 0) {
- let idx = val.target.getAttribute("for").replace("item","");
- $(`input[name='imgurl${idx}']`).val(result.data);
- $(`input[name='imgddurl${idx}']`).val(result.data);
- $("#lit"+idx).attr('src', result.data);
- } else {
- ShowMsg(result.error.message);
- }
- },
- error: function(xhr, status, error) {
- ShowMsg(error); //处理上传失败后的回调
- }
- });
- });
- $("#iptAlbumImages").change(function(val) {
- for (let i = 0; i < val.target.files.length; i++) {
- const f = val.target.files[i];
- var formData = new FormData();
- var fileData = f;
- formData.append('file', fileData);
- $.ajax({
- url: 'api.php?action=upload_image',
- type: 'POST',
- data: formData,
- processData: false,
- contentType: false,
- success: function(result) {
- if (result.code === 0) {
- // console.log(result)
- addImage(result.data, 0);
- $("#iptAlbumImages").val('');
- } else {
- ShowMsg(result.error.message);
- }
- },
- error: function(xhr, status, error) {
- ShowMsg(error); //处理上传失败后的回调
- }
- });
- }
- });
- </script>
- <script>InitPage();</script>
- </body>
- </html>
|