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

  1. 
  2. @{
  3. ViewBag.Title = "SeachInventory";
  4. Layout = "~/Views/Shared/_Index.cshtml";
  5. }
  6. <link href="~/Content/js/select2/select2.min.css" rel="stylesheet" />
  7. <link href="~/Content/js/dialog/dialog.css?v=20120420" rel="stylesheet" />
  8. <script src="~/Content/js/datepicker/WdatePicker.js"></script>
  9. <script src="~/Content/js/select2/select2.min.js"></script>
  10. <script>
  11. debugger;
  12. var WorkPoint = '@NFine.Code.OperatorProvider.Provider.GetCurrent().Location'
  13. $(function () {
  14. })
  15. function submitForm() {
  16. var Count = $("#txtCount").val();
  17. if (Count=="") {
  18. $.modalAlert("请录入工单总数!", "warning");
  19. return;
  20. }
  21. var obj = {
  22. Count: Count,
  23. }
  24. return obj;
  25. };
  26. function Close() {
  27. $.modalClose();
  28. }
  29. function reloadData() {
  30. }
  31. </script>
  32. <form id="form1">
  33. <div style="padding-top: 20px; margin-right: 20px;">
  34. <table class="form">
  35. <tr>
  36. <th class="formTitle"><span style="color: red;">*</span>工单总数</th>
  37. <td class="formValue">
  38. <input id="txtCount" name="txtCount" type="text" class="form-control required" placeholder="请输入工单总数" />
  39. </td>
  40. </tr>
  41. </table>
  42. </div>
  43. </form>