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.
80 lines
2.5 KiB
80 lines
2.5 KiB
<!-- $Id: vote_option.htm 16902 2009-12-18 03:56:55Z sxc_shop $ -->
|
|
{if $full_page}
|
|
{include file="pageheader.htm"}
|
|
{insert_scripts files="../js/utils.js,listtable.js"}
|
|
|
|
<div class="form-div">
|
|
<form method="post" action="javascript:newVoteOption()" name="theForm">
|
|
{$lang.add_vote_option}:<input type="text" name="option_name" maxlength="100" size="30" />
|
|
<input type="hidden" name="id" value="{$id}" size="30" />
|
|
<input type="submit" value="{$lang.button_submit}" class="button" />
|
|
</form>
|
|
</div>
|
|
|
|
<!-- start option list -->
|
|
<div class="list-div" id="listDiv">
|
|
{/if}
|
|
|
|
<table cellspacing='0' cellpadding='0' id='listTable'>
|
|
<tr>
|
|
<th>{$lang.option_name}</th>
|
|
<th>{$lang.option_order}</th>
|
|
<th>{$lang.vote_count}</th>
|
|
<th>{$lang.handler}</th>
|
|
</tr>
|
|
{foreach from=$option_arr item=list}
|
|
<tr align="center">
|
|
<td align="left" class="first-cell">
|
|
<span onclick="javascript:listTable.edit(this, 'edit_option_name', {$list.option_id})">{$list.option_name|escape:"html"}</span>
|
|
</td>
|
|
<td><span onclick="javascript:listTable.edit(this, 'edit_option_order', {$list.option_id})">{$list.option_order}</span></td>
|
|
<td>{$list.option_count}</td>
|
|
<td><a href="javascript:;" onclick="listTable.remove({$list.option_id}, '{$lang.drop_confirm}', 'remove_option')" title="{$lang.remove}"><img src="images/icon_drop.gif" border="0" height="21" width="21"></a>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
|
|
{if $full_page}
|
|
</div>
|
|
|
|
<script language="JavaScript">
|
|
{literal}
|
|
onload = function()
|
|
{
|
|
document.forms['theForm'].elements['option_name'].focus();
|
|
|
|
// 开始检查订单
|
|
startCheckOrder();
|
|
}
|
|
|
|
function newVoteOption()
|
|
{
|
|
var option_name = Utils.trim(document.forms['theForm'].elements['option_name'].value);
|
|
var id = Utils.trim(document.forms['theForm'].elements['id'].value);
|
|
|
|
if (Utils.trim(option_name).length > 0)
|
|
{
|
|
Ajax.call('vote.php?is_ajax=1&act=new_option', 'option_name=' + option_name +'&id=' + id, newGoodsTypeResponse, "POST", "JSON");
|
|
}
|
|
}
|
|
|
|
function newGoodsTypeResponse(result)
|
|
{
|
|
if (result.error == 0)
|
|
{
|
|
document.getElementById('listDiv').innerHTML = result.content;
|
|
document.forms['theForm'].elements['option_name'].value = '';
|
|
document.forms['theForm'].elements['option_name'].focus();
|
|
}
|
|
|
|
if (result.message.length > 0)
|
|
{
|
|
alert(result.message);
|
|
}
|
|
}
|
|
{/literal}
|
|
</script>
|
|
|
|
{include file="pagefooter.htm"}
|
|
{/if}
|