12345678910111213141516171819 |
- //提交
- function PersonalInfo_Confirm() {
- var userID = $("#UserID").val();
- $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/PersonalInfo/CheckOpenObject', { userID: userID }, function (data) {
- if (data.IsSuccess) {
- //var certificatesType = $("#CertificatesType").combobox("getValue");
- //var iDNumber = $.trim($("#IDNumber").val());
- //if (iDNumber != "") {
- // if (certificatesType == "" || certificatesType == "-1" || certificatesType == null) {
- // $.messager.alert("系统提示", "请选择对应的证件类型。");
- // return;
- // }
- //}
- $(document.forms[0]).submit();
- } else {
- $.messager.alert("系统提示", data.Message);
- }
- });
- }
|