124 lines
6.6 KiB
Plaintext
124 lines
6.6 KiB
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/BackEnd/Main.Master" AutoEventWireup="true" CodeBehind="userList.aspx.cs" Inherits="abbott_2024_event.BackEnd.userList" %>
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
|
|
<!-- .page-inner -->
|
|
<div class="page-inner">
|
|
<!-- .page-title-bar -->
|
|
<header class="page-title-bar">
|
|
<!-- .breadcrumb -->
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item active">
|
|
<a href="javascript: void(0);">
|
|
<i class="breadcrumb-icon fa fa-angle-left mr-2"></i>測驗者資料</a>
|
|
</li>
|
|
</ol>
|
|
</nav>
|
|
<!-- /.breadcrumb -->
|
|
|
|
<!-- title and toolbar -->
|
|
<div class="d-md-flex align-items-md-start">
|
|
<h1 class="page-title mr-sm-auto">測驗者資料總覽 </h1>
|
|
<!-- .btn-toolbar -->
|
|
<div id="dt-buttons" class="btn-toolbar"></div>
|
|
<!-- /.btn-toolbar -->
|
|
</div>
|
|
<!-- /title and toolbar -->
|
|
</header>
|
|
<!-- /.page-title-bar -->
|
|
<!-- .page-section -->
|
|
<div class="page-section">
|
|
<!-- .card -->
|
|
<section class="card card-fluid">
|
|
<!-- .card-body -->
|
|
<div class="card-body">
|
|
<!-- .form-row -->
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<label for="quotation-datepicker">測驗起訖日期</label>
|
|
<div class="input-daterange input-group" id="quotation-datepicker">
|
|
<input type="text" class="form-control form-control-sm" name="start" id="startDate" />
|
|
<span class="input-group-addon align-bottom">to</span>
|
|
<input type="text" class="form-control form-control-sm" name="end" id="endDate" />
|
|
</div>
|
|
</div>
|
|
<div class="col-md-2">
|
|
<label for="gender_select">寶寶性別</label>
|
|
<select class="custom-select custom-select-sm" id="gender_select" name="gender_select" required="">
|
|
<option value="%">全部</option>
|
|
<option value="F">女</option>
|
|
<option value="M">男</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-2">
|
|
<label for="age_start">年齡(起)</label>
|
|
<select class="custom-select custom-select-sm" id="age_start" name="age_start" required="">
|
|
<option value="0" selected="selected">0歲</option>
|
|
<option value="1">1歲</option>
|
|
<option value="2">2歲</option>
|
|
<option value="3">3歲</option>
|
|
<option value="4">4歲</option>
|
|
<option value="5">5歲</option>
|
|
<option value="6">6歲</option>
|
|
<option value="7">7歲</option>
|
|
<option value="8">8歲</option>
|
|
<option value="9">9歲</option>
|
|
<option value="10">10歲</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-2">
|
|
<label for="age_end">年齡(迄)</label>
|
|
<select class="custom-select custom-select-sm" id="age_end" name="age_end" required="">
|
|
<option value="0">0歲</option>
|
|
<option value="1">1歲</option>
|
|
<option value="2">2歲</option>
|
|
<option value="3">3歲</option>
|
|
<option value="4">4歲</option>
|
|
<option value="5">5歲</option>
|
|
<option value="6">6歲</option>
|
|
<option value="7">7歲</option>
|
|
<option value="8">8歲</option>
|
|
<option value="9">9歲</option>
|
|
<option value="10" selected="selected">10歲</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-1">
|
|
<label for="search_btn" style="display: block;"> </label>
|
|
<button type="button" class="btn btn-info btn-sm" id="search_btn">篩選</button>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- /.form-row -->
|
|
<hr />
|
|
<!-- .table -->
|
|
<table id="myTable" class="table">
|
|
<!-- thead -->
|
|
<thead>
|
|
<tr>
|
|
<th style="min-width: 130px;"> </th>
|
|
<th>報價單編號 </th>
|
|
<th>報價單名稱 </th>
|
|
<th>收入(含稅) </th>
|
|
<th>支出(含稅) </th>
|
|
<th>客戶 </th>
|
|
<th>發票狀態 </th>
|
|
<th>備註</th>
|
|
</tr>
|
|
</thead>
|
|
<!-- /thead -->
|
|
</table>
|
|
<!-- /.table -->
|
|
</div>
|
|
<!-- /.card-body -->
|
|
</section>
|
|
<!-- /.card -->
|
|
</div>
|
|
<!-- /.page-section -->
|
|
</div>
|
|
<!-- /.page-inner -->
|
|
|
|
|
|
</asp:Content>
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="head" runat="server">
|
|
<script src="assets/javascript/custom/userList.js?v=1"></script>
|
|
</asp:Content>
|