PersonalInfoCheckEdit.js 825 B

12345678910111213141516171819
  1. //提交
  2. function PersonalInfo_Confirm() {
  3. var userID = $("#UserID").val();
  4. $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/PersonalInfo/CheckOpenObject', { userID: userID }, function (data) {
  5. if (data.IsSuccess) {
  6. //var certificatesType = $("#CertificatesType").combobox("getValue");
  7. //var iDNumber = $.trim($("#IDNumber").val());
  8. //if (iDNumber != "") {
  9. // if (certificatesType == "" || certificatesType == "-1" || certificatesType == null) {
  10. // $.messager.alert("系统提示", "请选择对应的证件类型。");
  11. // return;
  12. // }
  13. //}
  14. $(document.forms[0]).submit();
  15. } else {
  16. $.messager.alert("系统提示", data.Message);
  17. }
  18. });
  19. }