|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <!DOCTYPE html
- PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
-
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title>点卡业务记录</title>
- <link rel="stylesheet" href="../static/css/bootstrap.min.css">
- <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
- <link href="css/base.css" rel="stylesheet" type="text/css" />
- <script language="javascript">
- //获得选中项
- function getCheckboxItem() {
- var allSel = "";
- if (document.form1.aids.value) return document.form1.aids.value;
- for (i = 0; i < document.form1.aids.length; i++) {
- if (document.form1.aids[i].checked) {
- if (allSel == "")
- allSel = document.form1.aids[i].value;
- else
- allSel = allSel + "`" + document.form1.aids[i].value;
- }
- }
- return allSel;
- }
- function ReSel() {
- for (i = 0; i < document.form1.aids.length; i++) {
- if (document.form1.aids[i].checked) document.form1.aids[i].checked = false;
- else document.form1.aids[i].checked = true;
- }
- }
- function DelSel() {
- var nid = getCheckboxItem();
- if (nid == "") {
- alert("请选择要删除的卡!\r\n");
- return;
- }
- location.href = "cards_manage.php?dopost=delete&aids=" + nid;
- }
- </script>
- </head>
-
- <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
- <table width="98%" border="0" cellpadding="1" cellspacing="1" align="center"
- class="table maintable table-bordered mt-3" style=" background:#cfcfcf;">
- <tr>
- <td height="20" colspan="7" bgcolor="#EDF9D5" background='images/tbg.gif'>
- <table width="98%" border="0" cellspacing="0" cellpadding="0" class="table table-borderless">
- <tr>
- <td width="30%" style="padding-left:10px;"><strong>点卡业务管理:</strong> </td>
- <td width="45%" align="right" style="padding-top:4px;">
- <button type="button" onClick="location='cards_manage.php?isexp=0';"
- class="btn btn-success btn-sm">未使用</button>
- <button type="button" onClick="location='cards_manage.php?isexp=1';"
- class="btn btn-success btn-sm">已售出</button>
- <button type="button" onClick="location='cards_manage.php?isexp=-1';"
- class="btn btn-success btn-sm">已使用</button>
- <button type="button" onClick="location='cards_manage.php';" class="btn btn-success btn-sm">全部</button>
- </td>
- <td width="25%" align="right" style="padding-top:4px;">
- <button type="button" onClick="location='cards_make.php';" class="btn btn-success btn-sm">生成点卡</button>
- <button type="button" onClick="location='cards_type.php';"
- class="btn btn-success btn-sm">点卡产品分类</button>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr align="center" bgcolor="#FBFCE2">
- <td width="8%">选择</td>
- <td width="28%">卡号</td>
- <td width="18%">点卡类型</td>
- <td width="12%">生成日期</td>
- <td width="12%">使用日期</td>
- <td width="8%">状态</td>
- <td width="14%">使用会员</td>
- </tr>
- <form name="form1">
- {dede:datalist}
- <tr align="center" bgcolor="#FFFFFF" height="26" align="center" onMouseMove="javascript:this.bgColor='#FCFDEE';"
- onMouseOut="javascript:this.bgColor='#FFFFFF';">
- <td><input type='checkbox' name='aids' value='{dede:field.aid/}' class='np'></td>
- <td>{dede:field.cardid/}</td>
- <td><?php echo $TypeNames[$fields['ctid']]?></td>
- <td>{dede:field.mtime function='GetDateMk(@me)'/}</td>
- <td>{dede:field.utime function='GetUseDate(@me)'/}</td>
- <td>{dede:field.isexp function='GetSta(@me)'/}</td>
- <td>{dede:field.uid function='GetMemberID(@me)'/}</td>
- </tr>
- {/dede:datalist}
- </form>
- <tr>
- <td height="30" colspan="7" bgcolor="#ffffff">
- <button type="button" onClick="ReSel();" class="btn btn-success btn-sm">反选</button>
- <button type="button" onClick="DelSel();" class="btn btn-success btn-sm">删除</button>
- </td>
- </tr>
- <tr>
- <td height="36" colspan="7" align="center" bgcolor="#F9FCEF">
- {dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="5"/}
- </td>
- </tr>
- </table>
- </body>
-
- </html>
|