97 lines
3.0 KiB
Plaintext
97 lines
3.0 KiB
Plaintext
|
|
@{
|
|
Layout = null;
|
|
}
|
|
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>德城区疾控疫苗排队</title>
|
|
|
|
@Scripts.Render("~/bundles/jquery")
|
|
<script src="@Url.Content("~/Scripts/public.js")"></script>
|
|
<link href='@Url.Content("~/Scripts/dist/style/weui.min.css")' rel="stylesheet" />
|
|
<script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
|
|
<script src='@Url.Content("~/Scripts/jquery.date_input.pack.js")?v1.708'></script>
|
|
<link href='@Url.Content("~/Scripts/datePicker.css")' rel="stylesheet" />
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
$("#btnsave").bind("click", function () {
|
|
$.ajax({
|
|
url: "@Url.Action("savequhao")",
|
|
data: { etid: $("#etid").val() },
|
|
type: "post",
|
|
dataType: "json",
|
|
success: function (data) {
|
|
if (data.State == 1) {
|
|
window.location.href = "@Url.Action("paidui")";
|
|
}
|
|
else {
|
|
weui.alert(data.Message);
|
|
}
|
|
}
|
|
})
|
|
})
|
|
})
|
|
</script>
|
|
<style>
|
|
.demos-header {
|
|
padding: 35px 0;
|
|
}
|
|
|
|
.demos-title {
|
|
text-align: center;
|
|
font-size: 34px;
|
|
color: #3cc51f;
|
|
font-weight: 400;
|
|
margin: 0 15%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script src='@Url.Content("~/Scripts/dist/weui.min.js")'></script>
|
|
|
|
<header class="demos-header">
|
|
<h1 class="demos-title">在线取号</h1>
|
|
</header>
|
|
|
|
<div class="weui-cells weui-cells_form">
|
|
<div class="weui-cell">
|
|
<div class="weui-cell__hd">
|
|
<label class="weui-label">选择儿童</label>
|
|
</div>
|
|
<div class="weui-cell__hd">
|
|
@Html.DropDownList("etid", ViewBag.etlist as SelectList, new { @class = "weui-select" })
|
|
</div>
|
|
<div class="weui-cell__ft">
|
|
<i class="weui-icon-warn"></i>
|
|
</div>
|
|
</div>
|
|
<div class="weui-cell">
|
|
<div class="weui-cell__hd">
|
|
<label class="weui-label">排队人数</label>
|
|
</div>
|
|
<div class="weui-cell__hd">
|
|
@ViewBag.pdrs
|
|
</div>
|
|
<div class="weui-cell__ft">
|
|
<i class="weui-icon-warn"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<input type="button" class="weui-btn weui-btn_primary" style="margin-bottom:10px" value="取号" id="btnsave" />
|
|
|
|
<div>
|
|
@Html.Raw(dccdc.Common.Global.getParmValue("ymwxts"))
|
|
</div>
|
|
|
|
|
|
<div class="weui-footer">
|
|
<div class="weui-footer__text">
|
|
<p class="weui-footer__text">Copyright © 2016-@DateTime.Now.Year 德城区疾控中心</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|