12345678910111213141516171819202122232425262728293031 |
- $(function () {
- //绑定提交事件
- $('#btnSave').bind('click', function () {
- //提交事件
- $('#form1').form('submit', {
- url: '/SysManager/SaveEmailConfig',
- method:'post',
- onSubmit: function (para) {
- para.IsActive = $('#IsActive').checkbox('options').checked;
- para.EmailServer = $('#EmailServer').textbox('getValue');
- para.Port = $('#Port').numberbox('getValue');
- para.SSL = $('#SSL').switchbutton('options').checked;
- para.SendEmail = $('#SendEmail').textbox('getValue');
- para.SendName = $('#SendName').textbox('getValue');
- para.SendPassword = $('#SendPassword').textbox('getValue');
- return $(this).form('validate');
- },
- success: function (data) {
- if (data=="1") {
- ZLPMS.Msg('保存配置成功');
- } else {
- ZLPMS.Msg('保存配置失败,详细请查询日志');
- }
- }
- });
- });
- $('#form1').form('load', '/SysManager/GetEmailConfig1');
- });
|