123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DZKJ_CustomerAccount.aspx.cs" Inherits="LYFZ.WeixinServers.DZKJ.DZKJ_CustomerAccount" %>
- <!--#include file="/WeiXinAPP/html/head.html" -->
- <!--#include file="/WeiXinAPP/html/leftMenu.html" -->
- <div class="content">
- <ul class="breadcrumb">
- <!--#include file="/WeiXinAPP/html/indexBread.html" -->
- <li class="active">点赞科技客户列表</li>
- </ul>
- <div class="container-fluid">
- <div class="row-fluid">
- <div style="width: 100%; min-height: 700px;">
- <div class="btn-toolbar">
- <div style="width: 320px; height: 24px; float: left;">
- <form id="tab2">
- <label style="width: 50px; height: 100%; padding-top: 5px; float: left;">关键字</label>
- <div style="width: 200px; height: 100%; float: left; margin-right: 5px;">
- <input id="Keyword" name="Keyword" type="text" class="span12" />
- </div>
- <button class="btn">查询</button>
- </form>
- </div>
- <button class="btn" onclick="document.location='DZKJ_CustomerAccount.aspx?IsEnabled=0'">已禁用</button>
- <button class="btn" onclick="document.location='DZKJ_CustomerAccount.aspx?PeriodOfValidity=0'">已过有效期</button>
- <button class="btn btn-primary" onclick="document.location='/DZKJ/DZKJ_AddCustomer.aspx'"><i class="icon-plus"></i>添加客户</button>
- <!-- <button class="btn">Import</button>
- <button class="btn">Export</button>-->
- <div class="btn-group">
- </div>
- </div>
- <div class="well">
- <table class="table">
- <thead>
- <tr>
- <th>状态</th>
- <th>企业名</th>
- <th>帐号</th>
- <th>联系人</th>
- <th>性别</th>
- <th>联系电话</th>
- <th>有效期</th>
- <th>模拟器个数</th>
- <th>注册时间</th>
- <th>最新登录时间</th>
- <th style="width: 52px;">操作</th>
- </tr>
- </thead>
- <tbody>
- <%=this.CustomerAccountListHtmlTb.ToString() %>
- </tbody>
- </table>
- </div>
- <%=PagingInfoHtml %>
- </div>
- <!--#include file="/WeiXinAPP/html/DeleteDialog.html" -->
- <!--#include file="/WeiXinAPP/html/footer.html" -->
- </div>
- </div>
- </div>
- <script type="text/javascript">
- $(document).ready(function () {
- /* $('#myModal').on('show.bs.modal', function (obj) {
- // 执行一些动作...
- $(this).attr("ta","123");
- })*/
- /* $('#myModal').on('hide.bs.modal', function (obj) {
-
- alert($(this).attr("rel"));
- })*/
- var Keyword = GetQueryString("Keyword");
- if (Keyword) {
- $("#Keyword").val(Keyword);
- }
- });
- function myModalDefine(objModal) {
- var relValue = objModal.attr("rel");
- document.location = "DZKJ_CustomerAccount.aspx?del=" + relValue;
- //alert(relValue);
- }
- </script>
- <!--#include file="/WeiXinAPP/html/bottom.html" -->
|