You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

55 lines
1.3 KiB

@{
ViewBag.Title = "SeachInventory";
Layout = "~/Views/Shared/_Index.cshtml";
}
<link href="~/Content/js/select2/select2.min.css" rel="stylesheet" />
<link href="~/Content/js/dialog/dialog.css?v=20120420" rel="stylesheet" />
<script src="~/Content/js/datepicker/WdatePicker.js"></script>
<script src="~/Content/js/select2/select2.min.js"></script>
<script>
debugger;
var WorkPoint = '@NFine.Code.OperatorProvider.Provider.GetCurrent().Location'
$(function () {
})
function submitForm() {
var Count = $("#txtCount").val();
if (Count=="") {
$.modalAlert("请录入工单总数!", "warning");
return;
}
var obj = {
Count: Count,
}
return obj;
};
function Close() {
$.modalClose();
}
function reloadData() {
}
</script>
<form id="form1">
<div style="padding-top: 20px; margin-right: 20px;">
<table class="form">
<tr>
<th class="formTitle"><span style="color: red;">*</span>工单总数</th>
<td class="formValue">
<input id="txtCount" name="txtCount" type="text" class="form-control required" placeholder="请输入工单总数" />
</td>
</tr>
</table>
</div>
</form>