Browse Source

缩略图显示问题

tags/6.1.9
xushubieli 2 years ago
parent
commit
3db5f12962
13 changed files with 54 additions and 54 deletions
  1. +2
    -2
      src/admin/templets/album_add.htm
  2. +2
    -2
      src/admin/templets/album_edit.htm
  3. +2
    -2
      src/admin/templets/archives_add.htm
  4. +2
    -2
      src/admin/templets/archives_edit.htm
  5. +2
    -2
      src/admin/templets/archives_sg_add.htm
  6. +2
    -2
      src/admin/templets/archives_sg_edit.htm
  7. +2
    -2
      src/admin/templets/article_add.htm
  8. +2
    -2
      src/admin/templets/article_edit.htm
  9. +26
    -26
      src/admin/templets/article_keywords_select.htm
  10. +5
    -5
      src/admin/templets/soft_add.htm
  11. +3
    -3
      src/admin/templets/soft_edit.htm
  12. +2
    -2
      src/admin/templets/spec_add.htm
  13. +2
    -2
      src/admin/templets/spec_edit.htm

+ 2
- 2
src/admin/templets/album_add.htm View File

@@ -155,13 +155,13 @@ table{border-collapse:separate}
<td width="90">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" style="width:300px">
<label><input type='checkbox' class='np' name='ddisremote' value='1' id='ddisremote'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit2" onClick="SelectImage('form1.picname','small');" class="btn btn-success btn-sm">选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-sm btn-success delete">清空</button>
<label><input type='checkbox' class='np' name='ddisfirst' value='1'>&nbsp;使用图集的第一幅图</label>
</td>
<td width="260" align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="height:80px"></td>
<td width="260" align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="max-width:100px;max-height:80px"></td>
</tr>
</table>
</td>


+ 2
- 2
src/admin/templets/album_edit.htm View File

@@ -155,12 +155,12 @@ table{border-collapse:separate}
<td width="90" height="80">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" value="<?php echo $arcRow['litpic']?>" style="width:300px">
<label><input type='checkbox' class='np' name='ddisremote' value='1'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit" onClick="SelectImage('form1.picname','');" class="btn btn-success btn-sm">选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success btn-sm delete">清空</button>
</td>
<td align="center"><img id="litPic" src="<?php if($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="height:80px"></td>
<td align="center"><img id="litPic" src="<?php if($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="max-width:100px;max-height:80px"></td>
</tr>
</table></td>
</tr>


+ 2
- 2
src/admin/templets/archives_add.htm View File

@@ -136,12 +136,12 @@ table{border-collapse:separate}
<td width="90">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" style="width:300px">
<label><input type='checkbox' class='np' name='ddisremote' value='1' id='ddisremote'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit2" onClick="SelectImage('form1.picname','small');" class='btn btn-success btn-sm'>选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success delete">清空</button>
</td>
<td align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="height:80px"></td>
<td align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="max-width:100px;max-height:80px"></td>
</tr>
</table>
</td>


+ 2
- 2
src/admin/templets/archives_edit.htm View File

@@ -135,13 +135,13 @@ table{border-collapse:separate}
<td width="90" height="80">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" value="<?php echo $arcRow['litpic']?>" style="width:300px">
<label><input type='checkbox' class='np' name='ddisremote' value='1'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit" onClick="SelectImage('form1.picname','');" class="btn btn-success btn-sm">选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success btn-sm delete">清空</button>
</td>
<td align="center">
<img id="litPic" src="<?php if($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="height:80px">
<img id="litPic" src="<?php if($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="max-width:100px;max-height:80px">
</td>
</tr>
</table>


+ 2
- 2
src/admin/templets/archives_sg_add.htm View File

@@ -97,12 +97,12 @@ table{border-collapse:separate}
<td width="90">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" style="width:300px">
<label><input type='checkbox' class='np' name='ddisremote' value='1' id='ddisremote'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit2" onclick="SelectImage('form1.picname','small');" class="btn btn-success btn-sm">选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success btn-sm delete">清空</button>
</td>
<td width="260" align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="height:80px"></td>
<td width="260" align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="max-width:100px;max-height:80px"></td>
</tr>
</table>
</td>


+ 2
- 2
src/admin/templets/archives_sg_edit.htm View File

@@ -120,12 +120,12 @@ table{border-collapse:separate}
<td width="90">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" style="width:300px" value="<?php echo $addRow['litpic']?>">
<label><input type='checkbox' class='np' name='ddisremote' value='1'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit" onClick="SelectImage('form1.picname','');" class="btn btn-success btn-sm">选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success btn-sm delete">清空</button>
</td>
<td align="center"><img id="litPic" src="<?php if($addRow['litpic']!='') echo $addRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="height:80px"></td>
<td align="center"><img id="litPic" src="<?php if($addRow['litpic']!='') echo $addRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="max-width:100px;max-height:80px"></td>
</tr>
</table>
</td>


+ 2
- 2
src/admin/templets/article_add.htm View File

@@ -146,12 +146,12 @@ table{border-collapse:separate}
<td width="90">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" style="width:300px">
<label><input type='checkbox' class='np' name='ddisremote' value='1' id='ddisremote'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit2" onClick="SelectImage('form1.picname','small');" class="btn btn-success btn-sm">选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success btn-sm delete">清空</button>
</td>
<td width="260" align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="height:80px"></td>
<td width="260" align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="max-width:100px;max-height:80px"></td>
</tr>
</table>
</td>


+ 2
- 2
src/admin/templets/article_edit.htm View File

@@ -145,13 +145,13 @@ table{border-collapse:separate}
<td width="90">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" value="<?php echo $arcRow['litpic']?>" style="width:300px">
<label><input type='checkbox' class='np' name='ddisremote' value='1'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit" onClick="SelectImage('form1.picname','');" class="btn btn-success btn-sm">选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success btn-sm delete">清空</button>
</td>
<td align="center">
<img id="litPic" src="<?php if($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="height:80px">
<img id="litPic" src="<?php if($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="max-width:100px;max-height:80px">
</td>
</tr>
</table>


+ 26
- 26
src/admin/templets/article_keywords_select.htm View File

@@ -42,32 +42,32 @@ function AddNewKw()
</head>
<body>
<div class="main">
<table width="100%" align="center" cellpadding="1" cellspacing="1" class="table maintable mt-3 mb-3">
<form name='form1' action="article_keywords_main.php">
<input type='hidden' name='dopost' value='add'>
<tr id="addnew" style="display:none">
<td width="100%" height="26" colspan="2" align="center" bgcolor="#009900">
<table align="center" cellpadding="1" cellspacing="1" class="table maintable mt-3 mb-3">
<form name="form1" action="article_keywords_main.php">
<input type="hidden" name="dopost" value="add">
<tr id="addnew" style="display:none">
<td height="26" colspan="2" style="border-top:0">
<table cellspacing="0" cellpadding="0" class="table table-borderless">
<tr>
<td width="90" align="center">关键词:</td>
<td width="270"><input name="keyword" type="text" id="keyword" style="width:260px"></td>
<td width="90">关键词:</td>
<td width="170"><input name="keyword" type="text" id="keyword" style="width:160px"></td>
<td width="60">链接:</td>
<td width="270"><input name="rpurl" type="text" id="rpurl" style="width:260px"></td>
<td width="170"><input name="rpurl" type="text" id="rpurl" style="width:160px"></td>
<td width="60">频率:</td>
<td width="70"><input name="rank" type="text" id="rank" style="width:60px"></td>
<td><input type="submit" name="Submit" value="保存" class="np"></td>
</tr>
</table>
</td>
</tr>
</form>
<form name='form2'>
</tr>
</form>
<form name="form2">
<tr>
<td width="100%" height="26" colspan="2" background="../static/web/img/tbg.gif">
<table width="100%" cellpadding="0" cellspacing="0" class="table table-borderless">
<td height="26" colspan="2" background="../static/web/img/tbg.gif">
<table cellpadding="0" cellspacing="0" class="table table-borderless">
<tr>
<td width="31%">选择关键词</td>
<td width="69%" align="right">
<td width="30%">选择关键词</td>
<td width="70%" align="right">
<button class="btn btn-success btn-sm" type="button" name="kwa" onClick="AddNewKw()">新增关键词</button>
<button class="btn btn-success btn-sm" type="button" name="kwm" onClick="location='article_keywords_main.php';">关键词管理</button>
</td>
@@ -76,29 +76,29 @@ function AddNewKw()
</td>
</tr>
<tr>
<td>
<td height="26" colspan="2">
{dede:datalist empty='<center>暂无内容</center>'}
<a href='javascript:SelKw("{dede:field.keyword/}")'>{dede:field.keyword/}</a>
<a href='javascript:SelKw("{dede:field.keyword/}")'>{dede:field.keyword/}</a>
{/dede:datalist}
</td>
</td>
</tr>
<tr>
<td height="26" bgcolor="#E4FAC7" style="line-height:180%">
<table cellspacing="0" cellpadding="0" class="table table-borderless">
<td height="26" colspan="2">
<table cellspacing="0" cellpadding="0" class="table table-borderless">
<tr>
<td width="260">已选的关键词:</td>
<td width="320"><input name="keywords" type="text" id="keywords" style="width:300px" value="<?php echo $keywords?>"></td>
<td width="93"><button type="button" class="btn btn-success btn-sm" name="Submit" onClick="ReturnValue()"> 选用 </button></td>
<td width="90">已选关键词:</td>
<td width="270"><input name="keywords" type="text" id="keywords" value="<?php echo $keywords?>" style="width:260px"></td>
<td><button type="button" class="btn btn-success btn-sm" name="Submit" onClick="ReturnValue()">选用</button></td>
</tr>
</table>
</td>
</tr>
<tr align="center">
<td height="36" bgcolor="#f8f8f8">{dede:pagelist listsize='6'/}</td>
<tr>
<td height="36" bgcolor="#f8f8f8" colspan="2" align="center">{dede:pagelist listsize='6'/}</td>
</tr>
</form>
</table>
<div class="tbbottom" style="text-align:right;width:98%" align="left"></div>
<div class="tbbottom" align="left" style="width:98%;text-align:right"></div>
</div>
</body>
</html>

+ 5
- 5
src/admin/templets/soft_add.htm View File

@@ -148,12 +148,12 @@ table{border-collapse:separate}
<td width="90">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" style="width:300px">
<label><input type='checkbox' class='np' name='ddisremote' value='1' id='ddisremote'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit2" onClick="SelectImage('form1.picname','small');" class='btn btn-success btn-sm'>选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success btn-sm delete">清空</button>
</td>
<td width="260" align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="height:80px"></td>
<td width="260" align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="max-width:100px;max-height:80px"></td>
</tr>
</table>
</td>
@@ -317,9 +317,9 @@ table{border-collapse:separate}
<table width="900" cellspacing="0" cellpadding="0">
<tr>
<td width="90">&nbsp;官方网址:</td>
<td width="310"><input name="officialUrl" type="text" id="officialUrl" value="http://" style="width:300px"></td>
<td width="310"><input name="officialUrl" type="text" id="officialUrl" value="http://" style="width:260px"></td>
<td width="90">演示地址:</td>
<td><input name="officialDemo" type="text" id="officialDemo" value="http://" style="width:300px"></td>
<td><input name="officialDemo" type="text" id="officialDemo" value="http://" style="width:260px"></td>
</tr>
</table>
</td>
@@ -367,7 +367,7 @@ table{border-collapse:separate}
<tr>
<td width="90">&nbsp;本地地址:</td>
<td>
<input name="softurl1" type="text" id="softurl1" style="width:300px">
<input name="softurl1" type="text" id="softurl1" style="width:260px">
<button class='btn btn-success btn-sm' name="sel1" type="button" id="sel1" onClick="SelectSoft('form1.softurl1')">选取</button>
</td>
<td width="90">服务器名称:</td>


+ 3
- 3
src/admin/templets/soft_edit.htm View File

@@ -145,14 +145,14 @@ table{border-collapse:separate}
<tr>
<td width="90" height="80">&nbsp;缩略图:</td>
<td width="560">
<input name="picname" type="text" id="picname" style="width:300px" value="<?php echo $arcRow['litpic']?>">
<label><input type='checkbox' class='np' name='ddisremote' value='1'>&nbsp;远程</label>
<input name="picname" type="text" id="picname" value="<?php echo $arcRow['litpic']?>" style="width:300px">
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit" onClick="SelectImage('form1.picname','');" class="btn btn-success btn-sm">选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success btn-sm delete">清空</button>
</td>
<td align="center">
<img id="litPic" src="<?php if($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="height:80px">
<img id="litPic" src="<?php if($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="max-width:100px;max-height:80px">
</td>
</tr>
</table>


+ 2
- 2
src/admin/templets/spec_add.htm View File

@@ -136,12 +136,12 @@ table{border-collapse:separate}
<td width="90">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" style="width:300px">
<label><input type='checkbox' class='np' name='ddisremote' value='1' id='ddisremote'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit2" onClick="SelectImage('form1.picname','small');" class="btn btn-success btn-sm">选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success btn-sm delete">清空</button>
</td>
<td width="260" align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="height:80px"></td>
<td width="260" align="center"><img id="litPic" src="../static/web/img/defaultpic.jpg" style="max-width:100px;max-height:80px"></td>
</tr>
</table>
</td>


+ 2
- 2
src/admin/templets/spec_edit.htm View File

@@ -137,12 +137,12 @@ table{border-collapse:separate}
<td width="90" height="90">&nbsp;缩略图:</td>
<td>
<input name="picname" type="text" id="picname" value="<?php echo $arcRow['litpic']?>" style="width:300px">
<label><input type='checkbox' class='np' name='ddisremote' value='1'>&nbsp;远程</label>
<label><input type="checkbox" name="ddisremote" value="1" id="ddisremote" class="np">&nbsp;远程</label>
<span class="btn btn-success btn-sm fileinput-button">上传图片<input type="file" name="files[]" id="iptAddImages"></span>
<button type="button" name="Submit" onClick="SelectImage('form1.picname','');" class="btn btn-success btn-sm">选择图片</button>
<button id="btnClearAll" type="button" class="btn btn-success btn-sm delete">清空</button>
</td>
<td align="center"><img id="litPic" src="<?php if($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="height:80px"></td>
<td align="center"><img id="litPic" src="<?php if($arcRow['litpic']!='') echo $arcRow['litpic']; else echo '../static/web/img/defaultpic.jpg'; ?>" style="max-width:100px;max-height:80px"></td>
</tr>
</table>
</td>


Loading…
Cancel
Save