| 12345678910111213141516171819202122232425262728 |
- $(".cancel").click(function () {
- var id = this.id;
- layer.confirm('确认取消报名吗?', function (index) {
- $.ajax({
- url: pagePath + "/street/activity/abort",
- type: "post",
- data: {
- 'id': id
- },
- dataType: "json",
- success: function (result) {
- if (result.success) {
- smileMessage(result.message);
- setTime();
- } else {
- errorMessage(result.message);
- }
- },
- error: function () {
- errorMessage('系统错误!');
- }
- });
- })
- })
- function feedback(title,url,w,h) {
- var index = layer_show(title,pagePath+url,w,h);
- }
|