SpecialtyAuditingSubmit.js 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //加载
  2. $(function () {
  3. //非负浮点数(/^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$/)
  4. var reg = /^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$/;
  5. var learnSystem = $("#LearnSystem").val();
  6. if (learnSystem == "" || learnSystem == null) {
  7. $("#LearnSystem").val("");
  8. }
  9. else {
  10. if (!reg.test(learnSystem)) {
  11. $("#LearnSystem").val("");
  12. }
  13. else {
  14. $("#LearnSystem").val(parseFloat(learnSystem).toFixed(1));
  15. }
  16. }
  17. });
  18. //联动
  19. function QueryStandard(data) {
  20. var standardID = $("#StandardID").combogridX("getValue");
  21. if (standardID == "" || standardID == "-1" || standardID == null) {
  22. $("#Code").val("");
  23. }
  24. else {
  25. $("#Code").val(data.Code);
  26. }
  27. }
  28. //提交(审核)
  29. function SpecialtyAuditing_Submit() {
  30. var actionValue = $("#ddlAction").combobox("getValue");
  31. if (actionValue == "-1" || actionValue == "") {
  32. $.messager.alert("系统提示", "必须选择一个动作才能提交。");
  33. return;
  34. }
  35. $(document.forms[0]).submit();
  36. }