12345678910111213141516171819 |
-
- function PersonalInfo_Confirm() {
- var userID = $("#UserID").val();
- $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/PersonalInfo/CheckOpenObject', { userID: userID }, function (data) {
- if (data.IsSuccess) {
-
-
-
-
-
-
-
-
- $(document.forms[0]).submit();
- } else {
- $.messager.alert("系统提示", data.Message);
- }
- });
- }
|