| 1234567891011121314151617181920212223242526272829 |
- $(".favourite").click(function () {
- var id = this.id;
- layer.confirm('确认取消收藏吗?', function (index) {
- $.ajax({
- url: pagePath + "/street/activity/favouriteCancel",
- 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 gotoDetail(id) {
- //top.location.href = pagePath + "/home/activityDetail/" + id;
- window.open(pagePath + "/index/#/activityDetail?id=" + id);
- }
|