123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php if(!defined('UC_ROOT')) exit('Access Denied');?>
- <?php include $this->gettpl('header');?>
- <script src="js/common.js" type="text/javascript"></script>
- <div class="container">
- <div class="note">
- <p class="i">点击“同步应用的积分设置”可以获取应用的积分设置,并且把当前设置结果通知给应用</p>
- </div>
- <?php if($status) { ?>
- <div class="<?php if($status > 0) { ?>correctmsg<?php } else { ?>errormsg<?php } ?>"><p><?php if($status == 1) { ?>成功更新积分兑换方案。<?php } elseif($status == -1) { ?>兑换前后应用相同,请重新设置。<?php } ?></p></div>
- <?php } ?>
- <div class="hastabmenu">
- <ul class="tabmenu">
- <li class="tabcurrent"><a href="#" class="tabcurrent">更新积分兑换方案</a></li>
- </ul>
- <div class="tabcontentcur">
- <form id="creditform" action="admin.php?m=credit&a=ls&addexchange=yes" method="post">
- <input type="hidden" name="formhash" value="<?php echo FORMHASH;?>">
- <table class="dbtb">
- <tr>
- <td class="tbtitle">兑换方向:</td>
- <td>
- <select onchange="switchcredit('src', this.value)" name="appsrc">
- <option>请选择</option><?php echo $appselect;?>
- </select><span id="src"></span>
- >
- <select onchange="switchcredit('desc', this.value)" name="appdesc">
- <option>请选择</option><?php echo $appselect;?>
- </select><span id="desc"></span>
- </td>
- </tr>
- <tr>
- <td class="tbtitle">兑换比率:</td>
- <td>
- <input name="ratiosrc" size="3" value="<?php echo $ratiosrc;?>" class="txt" style="margin-right:0" />
- :
- <input name="ratiodesc" size="3" value="<?php echo $ratiodesc;?>" class="txt" />
- </td>
- </tr>
- <tr>
- <td></td>
- <td>
- <input type="submit" value="提 交" class="btn" />
- <input type="button" value="同步应用的积分设置" class="btn" onclick="location.href='admin.php?m=credit&a=sync&sid=<?php echo $sid;?>'" />
- </td>
- </tr>
- </table>
- <div style="display: none">
- <script type="text/javascript">
- var credit = new Array();
- <?php foreach((array)$creditselect as $select) {?><?php echo $select;?><?php } ?>
- <?php if($appsrc) { ?>
- setselect($('creditform').appsrc, <?php echo $appsrc;?>);
- switchcredit('src', <?php echo $appsrc;?>);
- <?php } ?>
- <?php if($appdesc) { ?>
- setselect($('creditform').appdesc, <?php echo $appdesc;?>);
- switchcredit('desc', <?php echo $appdesc;?>);
- <?php } ?>
- <?php if($creditsrc) { ?>
- setselect($('creditform').creditsrc, <?php echo $creditsrc;?>);
- <?php } ?>
- <?php if($creditdesc) { ?>
- setselect($('creditform').creditdesc, <?php echo $creditdesc;?>);
- <?php } ?>
- </script>
- </div>
- </form>
- </div>
- </div>
- <br />
- <h3>积分兑换</h3>
- <div class="mainbox">
- <?php if($creditexchange) { ?>
- <form action="admin.php?m=credit&a=ls&delexchange=yes" method="post">
- <input type="hidden" name="formhash" value="<?php echo FORMHASH;?>">
- <table class="datalist fixwidth" onmouseover="addMouseEvent(this);">
- <tr>
- <th><input type="checkbox" name="chkall" id="chkall" onclick="checkall('delete[]')" class="checkbox" /><label for="chkall">删除</label></th>
- <th style="padding-right: 11px; text-align: right">兑换方向</th>
- <th></th>
- <th style="text-align: center">兑换比率</th>
- </tr>
- <?php foreach((array)$creditexchange as $key => $exchange) {?>
- <tr>
- <td class="option"><input type="checkbox" name="delete[]" value="<?php echo $key;?>" class="checkbox" /></td>
- <td align="right"><?php echo $exchange['appsrc'];?> <?php echo $exchange['creditsrc'];?></td>
- <td> > <?php echo $exchange['appdesc'];?> <?php echo $exchange['creditdesc'];?></td>
- <td align="center"><?php echo $exchange['ratiosrc'];?> : <?php echo $exchange['ratiodesc'];?></td>
- </tr>
- <?php }?>
- <tr class="nobg">
- <td><input type="submit" value="提 交" class="btn" /></td>
- </tr>
- </table>
- </form>
- <?php } else { ?>
- <div class="note">
- <p class="i">目前没有相关记录!</p>
- </div>
- <?php } ?>
- </div>
- <?php include $this->gettpl('footer');?>
|