| 12345678910111213141516 |
- /**
- * 提示并删除分组。
- * Delete group with tips.
- *
- * @param int groupID
- * @param string groupName
- * @access public
- * @return void
- */
- window.confirmDelete = function(groupID, groupName)
- {
- zui.Modal.confirm(confirmDelete.replace('%s', groupName)).then((res) =>
- {
- if(res) $.ajaxSubmit({url: $.createLink('group', 'delete', 'groupID=' + groupID)});
- });
- }
|