📄 post_editpost.htm
字号:
<tr>
<td class="altbg1"><span class="bold">{lang post_trade_price}</span></td>
<td class="altbg2"><input onkeyup="getrealtax(this.value)" type="text" name="item_price" size="30" value="$trade[price]"> <!--{if $mintradeprice && $maxtradeprice}-->{lang tarde_price_bound} $mintradeprice {lang payment_unit} - $maxtradeprice {lang payment_unit}<!--{else}-->{lang trade_min_price} $mintradeprice {lang payment_unit}<!--{/if}-->
<!--{if $ec_commision && $tradetaxs}-->{lang trade_procedure_price} <!--{if $tradetaxtype == 2}-->$tradetaxs % <span id="realtax">0</span> {lang payment_unit}<!--{else}--><span id="realtax">$tradetaxs</span> {lang payment_unit}<!--{/if}-->
<!--{else}-->
<span id="realtax"></span>
<!--{/if}-->
</td>
</tr>
<script type="text/javascript">
function getrealtax(price){
if(!price.search(/^[\d\.]+$/) ) {
<!--{if $tradetaxtype == 2}-->n = Math.ceil(price * ($tradetaxs / 100));<!--{else}-->n = Math.ceil($tradetaxs)<!--{/if}-->
if(price < $mintradeprice<!--{if $maxtradeprice}--> || price > $maxtradeprice<!--{/if}-->) {
$('realtax').innerHTML = '<b>{lang trade_price_exceed}</b>';
} else {
<!--{if $ec_commision && $tradetaxs}-->
if(price > n) {
$('realtax').innerHTML = n;
} else {
$('realtax').innerHTML = 0;
}
<!--{else}-->
$('realtax').innerHTML = '';
<!--{/if}-->
}
}else{
$('realtax').innerHTML = '<b>{lang input_invalid}</b>';
}
}
<!--{if $tradetaxtype == 2}-->$('realtax').innerHTML = Math.ceil($trade[price] * ($tradetaxs / 100));<!--{/if}-->
</script>
<tr>
<td class="altbg1"><span class="bold">{lang post_trade_locus}</span></td>
<td class="altbg2"><input type="text" name="item_locus" size="30" value="$trade[locus]"></td>
</tr>
<tr>
<td class="altbg1"><span class="bold">{lang trade_goods_number}</span></td>
<td class="altbg2"><input type="text" name="item_number" size="30" value="$trade[amount]"></td>
</tr>
<tr>
<td class="altbg1"><span class="bold">{lang post_trade_quality}</span></td>
<td class="altbg2">
<select name="item_quality">
<option value="1" <!--{if $trade['quality'] == 1}-->selected<!--{/if}-->>{lang trade_new}</option>
<option value="2" <!--{if $trade['quality'] == 2}-->selected<!--{/if}-->>{lang trade_old}</option>
</select>
</td>
</tr>
<tr>
<td class="altbg1"><span class="bold">{lang trade_type}</span></td>
<td class="altbg2">
<select name="item_type">
<option value="1" <!--{if $trade['itemtype'] == 1}-->selected<!--{/if}-->>{lang trade_type_buy}</option>
<option value="2" <!--{if $trade['itemtype'] == 2}-->selected<!--{/if}-->>{lang trade_type_service}</option>
<option value="3" <!--{if $trade['itemtype'] == 3}-->selected<!--{/if}-->>{lang trade_type_auction}</option>
<option value="4" <!--{if $trade['itemtype'] == 4}-->selected<!--{/if}-->>{lang trade_type_donate}</option>
<option value="5" <!--{if $trade['itemtype'] == 5}-->selected<!--{/if}-->>{lang trade_type_compensate}</option>
<option value="6" <!--{if $trade['itemtype'] == 6}-->selected<!--{/if}-->>{lang trade_type_bonus}</option>
</select>
</td>
</tr>
<tr>
<td class="altbg1" valign="top"><span class="bold">{lang post_trade_transport}</span></td>
<td class="altbg2">
<input class="radio" type="radio" name="transport" value="virtual" <!--{if $trade['transport'] == 3}-->checked<!--{/if}--> onclick="$('logisticssetting').style.display='none'"> {lang post_trade_transport_virtual}<br>
<input class="radio" type="radio" name="transport" value="seller" <!--{if $trade['transport'] == 1}-->checked<!--{/if}--> onclick="$('logisticssetting').style.display=''"> {lang post_trade_transport_seller}
<input class="radio" type="radio" name="transport" value="buyer" <!--{if $trade['transport'] == 2}-->checked<!--{/if}--> onclick="$('logisticssetting').style.display=''"> {lang post_trade_transport_buyer}
<input class="radio" type="radio" name="transport" value="logistics" <!--{if $trade['transport'] == 4}-->checked<!--{/if}--> onclick="$('logisticssetting').style.display=''"> {lang trade_type_transport_physical}<br>
<span id="logisticssetting" style="display:<!--{if $trade['transport'] == 3}-->none<!--{/if}-->">
{lang post_trade_transport_mail} <input type="text" name="postage_mail" size="3" value="$trade[ordinaryfee]"> {lang payment_unit} ({lang post_trade_transport_mail_unit})<br>
{lang post_trade_transport_express} <input type="text" name="postage_express" size="3" value="$trade[expressfee]"> {lang payment_unit} ({lang post_trade_transport_express_unit})<br>
EMS <input type="text" name="postage_ems" size="3" value="$trade[emsfee]"> {lang payment_unit} ({lang post_trade_transport_ems_unit})<br>
</td>
</tr>
<tr>
<td class="altbg1"><span class="bold">{lang trade_start}</span></td>
<td class="altbg2">
<select name="closed">
<option value="0" <!--{if $trade['closed'] == 0}-->selected<!--{/if}-->>{lang yes}</option>
<option value="1" <!--{if $trade['closed'] == 1}-->selected<!--{/if}-->>{lang no}</option>
</select>
</td>
</tr>
<tr>
<td class="altbg1"><span class="bold">{lang thread_moderations_expiration}</span></td>
<td class="altbg2"><input onclick="showcalendar(event, this, false)" type="text" name="item_expiration" size="30" value="$trade[expiration]">
<select onchange="this.form.item_expiration.value = this.value">
<option value=''></option>
<option value=''>{lang thread_moderations_expiration_unlimit}</option>
<option value='$expiration_7'>{lang seven_days}</option>
<option value='$expiration_14'>{lang fourteen}</option>
<option value='$expiration_month'>{lang one_months}</option>
</select>
({lang trade_expiration_forever}) {lang sample}: <!--{eval echo date("Y-m-d", $timestamp + 86400 * 14)}--></td>
</tr>
<!--{/if}-->
<!--{if $thread['special'] == 4 && $isfirstpost}-->
<input type="hidden" name="activity" value="yes">
<tr>
<td class="altbg1"><span class="bold">{lang activiy_sort}</span></td>
<td class="altbg2">
<input type="text" size="45" name="activityclass" value="$activity['class']" tabindex="4">
</td>
</tr><tr>
<td class="altbg1"><span class="bold">{lang activity_starttime}</span></td>
<td class="altbg2">
<input class="radio" type="radio" value="0" name="activitytime" onclick="$('certainstarttime').style.display='';$('uncertainstarttime').style.display='none';" <!--{if !$activity['starttimeto']}-->checked<!--{/if}-->>{lang activity_specific_time}: <span id="certainstarttime" <!--{if $activity['starttimeto']}-->style="display: none"<!--{/if}-->><input onclick="showcalendar(event, this, true)" type="text" name="starttimefrom[0]" id="starttimefrom_0" size="15" value="<!--{if !$activity['starttimeto']}-->$activity[starttimefrom]<!--{/if}-->"> {lang sample}:<!--{eval echo date("Y-m-d H:i", $timestamp + 86400)}--></span><br>
<input class="radio" type="radio" value="1" name="activitytime" onclick="$('certainstarttime').style.display='none';$('uncertainstarttime').style.display=''" <!--{if $activity['starttimeto']}-->checked<!--{/if}-->>{lang activity_bound_time}: <span id="uncertainstarttime" <!--{if !$activity['starttimeto']}-->style="display: none"<!--{/if}-->> <input onclick="showcalendar(event, this, true)" type="text" name="starttimefrom[1]" id="starttimefrom_1" size="20" value="<!--{if $activity[starttimeto]}-->$activity[starttimefrom]<!--{/if}-->"> - <input onclick="showcalendar(event, this, true)" type="text" name="starttimeto" size="20" value="<!--{if $activity['starttimeto']}-->$activity[starttimeto]<!--{/if}-->"></span>
</td>
</tr><tr>
<td class="altbg1"><span class="bold">{lang activity_space}</span></td>
<td class="altbg2"><input type="text" name="activityplace"size="45" value="$activity['place']" tabindex="6"></td>
</tr><tr>
<td class="altbg1"><span class="bold">{lang activity_payment}</span></td>
<td class="altbg2">
<input onkeyup="checkvalue(this.value, 'costmessage')" type="text" name="cost" size="8" value="$activity['cost']" tabindex="7"> {lang payment_unit} <span id="costmessage"></span>
</td>
</tr><tr>
<td class="altbg1"><span class="bold">{lang gender}</span></td>
<td class="altbg2">
<input class="radio" type="radio" name="gender" value="0" <!--{if !$activity['gender']}-->checked<!--{/if}-->>{lang unlimited} <input class="radio" type="radio" name="gender" value="1" <!--{if $activity['gender'] == 1}-->checked<!--{/if}-->>{lang male} <input class="radio" type="radio" name="gender" value="2" <!--{if $activity['gender'] == 2}-->checked<!--{/if}-->>{lang female}</td>
</tr><tr>
<td class="altbg1"><span class="bold">{lang activity_about_member}</span>({lang optional_info})</td>
<td class="altbg2"><input onkeyup="checkvalue(this.value, 'activitynumbermessage')" type="text" name="activitynumber" size="45" value="$activity['number']" tabindex="8"> <span id="activitynumbermessage"></span></td>
</tr>
<script type="text/javascript">
function checkvalue(value, message){
if(!value.search(/^\d+$/)) {
$(message).innerHTML = '';
} else {
$(message).innerHTML = '<b>{lang input_invalid}</b>';
}
}
</script>
<tr>
<td class="altbg1"><span class="bold">{lang activity_totime}</span>({lang optional_info})<br>{lang post_zero_is_nopermission}</td>
<td class="altbg2"><input onclick="showcalendar(event, this, true)" type="text" name="activityexpiration" size="45" value="$activity['expiration']" tabindex="9"> {lang sample}:<!--{eval echo date("Y-m-d H:i", $timestamp + 86400)}--></td>
</tr>
<!--{/if}-->
<!--{if $isfirstpost}-->
<tr>
<td class="altbg1"><span class="bold">{lang icon}</span></td><td class="altbg2"><input class="radio" type="radio" name="iconid" value="0" checked> {lang none} $icons</td>
</tr>
<!--{/if}-->
<tr class="bottom">
<td class="altbg1" valign="top">
{template post_sminsert}
<input class="checkbox" type="checkbox" name="parseurloff" id="parseurloff" value="1" $urloffcheck> {lang disable} {lang post_parseurl}<br>
<input class="checkbox" type="checkbox" name="smileyoff" id="smileyoff" value="1" $smileyoffcheck> {lang disable} <a href="faq.php?page=messages#6" target="_blank">{lang post_smilies}</a><br>
<input class="checkbox" type="checkbox" name="bbcodeoff" id="bbcodeoff" value="1" $codeoffcheck> {lang disable} <a href="faq.php?page=misc#1" target="_blank">{lang post_discuzcode}</a><br>
<!--{if $orig['allowhtml']}--><input class="checkbox" type="checkbox" name="htmlon" id="htmlon" value="1" $htmloncheck> {lang enable} {lang post_html}<br><!--{/if}-->
<!--{if $allowanonymous || (!$allowanonymous && $orig['anonymous'])}--><input class="checkbox" type="checkbox" name="isanonymous" value="1" <!--{if $orig['anonymous']}-->checked<!--{/if}-->> {lang post_anonymous}<br><!--{/if}-->
<input class="checkbox" type="checkbox" name="usesig" value="1" $usesigcheck> {lang post_show_sig}<br>
<!--{if $isorigauthor}--><input class="checkbox" type="checkbox" name="delete" value="1"> <b>{lang post_delpost}</b><!--{if $thread['special'] == 3 && $isfirstpost}-->{lang reward_price_back}<!--{/if}--><br><!--{/if}-->
<!--{if $auditstatuson}--><input class="checkbox" type="checkbox" name="audit" value="1"> <b>{lang auditstatuson}</b><!--{/if}-->
</td>
<td align="left" class="altbg2" valign="top">
<div id="$editorid">
{template post_bbinsert}
<div class="editor_text"><textarea name="message" rows="10" cols="60" style="width:100%; height:350px;" tabindex="100" id="{$editorid}_textarea" onSelect="javascript: storeCaret(this);" onClick="javascript: storeCaret(this);" onKeyUp="javascript:storeCaret(this);" onKeyDown="ctlent(event);">$postinfo[message]</textarea></div>
<table width=100%" cellpadding="{TABLESPACE}" cellspacing="0" class="editor_button"><tr><td>
<div class="editor_textexpand"><img src="images/common/bb_contract.gif" width="11" height="21" title="{lang post_discuzcode_contract}" alt="{lang post_discuzcode_contract}" onclick="resizeEditor(-100)" /><img src="images/common/bb_expand.gif" width="11" height="21" title="{lang post_discuzcode_expand}" alt="{lang post_discuzcode_expand}" onclick="resizeEditor(100)" /></div>
</td><td align="right">
<input type="button" class="lightbutton" value="{lang post_check_length}" onclick="checklength($('postform'))">
<input type="button" class="lightbutton" name="previewbutton" id="previewbutton" value="{lang post_previewpost}" tabindex="102" onclick="previewpost()">
<input type="button" class="lightbutton" value=" {lang post_topicreset} " tabindex="103" onclick="clearcontent()">
</td></table>
</div>
<!--{if $allowpostattach}-->
{template post_attachments}
<!--{/if}-->
<div class="postsubmit">
<input class="button" type="submit" name="editsubmit" id="postsubmit" value="{lang post_editpost}" tabindex="101">
<input type="hidden" name="wysiwyg" id="{$editorid}_mode" value="$editormode">
<input type="hidden" name="fid" id="fid" value="$fid">
<input type="hidden" name="tid" value="$tid">
<input type="hidden" name="pid" value="$pid">
<input type="hidden" name="postsubject" value="$postinfo[subject]">
{lang post_submit_hotkey}
</div>
</td></tr></table></div>
<!--{if $postinfo['attachment']}-->
<br>
<table cellspacing="{INNERBORDERWIDTH}" cellpadding="{TABLESPACE}" width="{TABLEWIDTH}" align="center" class="tableborder">
<tr><td colspan="8" class="header">{lang attachments}</td></tr>
<tr align="center" class="category"><td>{lang delete_check}</td><td width="30%">{lang attachment}</td><td>aid</td><td>{lang time}</td><td>{lang attachment_size}</td><td>{lang downloads}</td><td>{lang readperm}</td><td>{lang description}</td></tr>
<!--{loop $attachments $attach}-->
<tr align="center" class="row" onMouseOver="this.className='row1'" onMouseOut="this.className='row'">
<td><input class="checkbox" type="checkbox" name="deleteaid[]" value="$attach[aid]"></td>
<td id="attach$attach[aid]">$attach[filetype] <a href="attachment.php?aid=$attach[aid]" target="_blank">$attach[filename]</a> <a href="javascript:attachupdate('$attach[aid]')">[{lang update}]</a></td>
<td><a href="###" onclick="insertAttachTag('$attach[aid]')" title="{lang post_attachment_insert}">$attach[aid]</a></td>
<td>$attach[dateline]</td>
<td>$attach[filesize]</td>
<td>$attach[downloads]</td>
<td><!--{if $allowsetattachperm}--><input type="text" size="3" name="attachpermnew[{$attach[aid]}]" value="$attach[readperm]"><!--{else}--><input type="text" size="3" value="$attach[readperm]" disabled><!--{/if}--></td>
<td><input type="text" size="25" name="attachdescnew[{$attach[aid]}]" value="$attach[description]"></td>
</tr>
<!--{/loop}-->
<tr><td class="singleborder" colspan="8"> </td></tr>
<tr><td class="altbg1" colspan="8">{lang post_attachment_comment}</td></tr>
</table>
<!--{/if}-->
</form>
<script type="text/javascript">
var textobj = $(editorid + '_textarea');
<!--{if $bbinsert}-->newEditor(wysiwyg);<!--{/if}-->
checkFocus();
</script>
{template footer}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -