1234567891011121314151617181920212223242526272829303132333435363738 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SatisfactionOrderView.aspx.cs" Inherits="LYFZ.Web.WeiXinAPP.Satisfaction.SatisfactionOrderView" %>
- <html lang="en-US">
- <head>
- <title>我的订单</title>
- <meta charset="UTF-8">
- <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta content="black" name="apple-mobile-web-app-status-bar-style">
- <meta name="full-screen" content="yes">
- <meta name="x5-fullscreen" content="true">
- <meta name="browsermode" content="application">
- <meta name="x5-page-mode" content="app">
- <link rel="apple-touch-icon-precomposed" href="custom_icon.png">
- <!-- nirvana -->
- <link rel="stylesheet" href="../../dist/css/nirvana.css" media="all">
- </head>
- <body>
- <form id="frmid_Post" action="#" method="post" style="margin: 0px; padding: 0px;">
- <header style="height: 40px;">
- <h1><span>我的订单</span></h1>
- <span class="nav-back"><i class="icon-back"></i></span>
- </header>
- <section class="main">
- <article class="page" id="wrapper" style="">
- <div class="container" style="height:400px; overflow:auto">
- <div class="figure">
- </div>
- <% =(ViewState["ClientView"]) %>
- </div>
- </article>
- </section>
- </form>
- </body>
- </html>
|