<!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 = "member_do.php?dopost=deoperations&nid=" + nid;
    }
    function UpSel() {
      var nid = getCheckboxItem();
      if (nid == "") {
        alert("请选择要更改的业务记录!\r\n");
        return;
      }
      location.href = "member_do.php?dopost=upoperations&nid=" + nid;
    }
    function OkSel() {
      var nid = getCheckboxItem();
      if (nid == "") {
        alert("请选择要更改的业务记录!\r\n");
        return;
      }
      location.href = "member_do.php?dopost=okoperations&nid=" + 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:#cbd8ac;margin-bottom:5px;">
    <tr>
      <td height="30" align="center" bgcolor="#FAFCEF">
        <form name="form2" method="get" action="member_operations.php">
          <table border="0" cellspacing="0" cellpadding="0" class="table table-borderless" style="width: 400px;">
            <tr>
              <td>输入订单号:</td>
              <td>
                <input name="buyid" type="text" id="buyid"></td>
              <td width="100" align="center"> <button type="submit" class="btn btn-secondary btn-sm">搜索</button>
              </td>
            </tr>
          </table>
        </form>
      </td>
    </tr>
  </table>
  <table width="98%" border="0" cellpadding="1" cellspacing="1" align="center" class="table maintable table-bordered"
    style="background:#cfcfcf;">
    <tr>
      <td height="28" colspan="8" 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='member_operations.php?sta=0';" class="btn btn-secondary btn-sm">未付款</button>
              <button type="button" onClick="location='member_operations.php?sta=1';" class="btn btn-secondary btn-sm">已付款</button>
              <button type="button" onClick="location='member_operations.php?sta=2';" class="btn btn-secondary btn-sm">已完成</button>
              <button type="button" onClick="location='member_operations.php';" class="btn btn-secondary btn-sm">全部</button>
            </td>
            <td width="25%" align="right" style="padding-top:4px;">
              <button type="button" onClick="location='member_main.php';" class="btn btn-secondary btn-sm">会员管理</button>
            </td>
          </tr>
        </table>
      </td>
    </tr>
    <tr bgcolor="#FBFCE2">
      <td width="8%" align="center">选择</td>
      <td width="20%" align="center">订单号</td>
      <td align="center">产品名称</td>
      <td width="10%" align="center">产品类型</td>
      <td width="22%" align="center">生成日期</td>
      <td width="8%" align="center">金额</td>
      <td width="8%" align="center">状态</td>
      <td width="10%" align="center">会员</td>
    </tr>
    <form name="form1">
      {dede:datalist}
      <tr bgcolor="#FFFFFF" height="26" align="center" onMouseMove="javascript:this.bgColor='#FCFDEE';"
        onMouseOut="javascript:this.bgColor='#FFFFFF';">
        <td align="center">
          <input type='checkbox' name='aids' value='<?php echo $fields['aid']?>' class='np'></td>
        <td align="center">
          <?php echo $fields['buyid']?>
        </td>
        <td align="center">
          <?php
        echo $fields['pname'].'('.$fields['oldinfo'].')';
        ?>
        </td>
        <td align="center">
          <?php echo GetPType($fields['product'])?>
        </td>
        <td align="center">
          <?php echo GetDateTimeMk($fields['mtime'])?>
          (<font color="#FF0000">{dede:field.mtime function="floorTime(time()-@me,@me)"/}</font>)
        </td>
        <td align="center">
          <?php echo $fields['money']?>
        </td>
        <td align="center">
          <?php echo GetSta($fields['sta'])?>
        </td>
        <td align="center">
          <?php echo GetMemberID($fields['mid'])?>
        </td>
      </tr>
      {/dede:datalist}
    </form>
    <tr>
      <td height="28" colspan="8" bgcolor="#FCFDF7" style="padding-top:4px;">
        &nbsp;
        <button type="button" onClick="ReSel();" class="btn btn-secondary btn-sm">反选</button>
        <button type="button" onClick="DelSel();" class="btn btn-secondary btn-sm">删除</button>
        <button type="button" onClick="UpSel();" class="btn btn-secondary btn-sm">设为已付款状态</button>
        <button type="button" onClick="OkSel();" class="btn btn-secondary btn-sm">设为已完成状态</button>
      </td>
    </tr>
    <tr>
      <td height="36" colspan="8" bgcolor="#F9FCEF" align="center">
        {dede:pagelist listitem="info,index,end,pre,next,pageno" listsize="5"/}
      </td>
    </tr>
  </table>
</body>

</html>