...
|
...
|
@@ -30,38 +30,51 @@ var Bll = { |
|
|
},
|
|
|
//弹框
|
|
|
toast: function (module, hint, url) {
|
|
|
var edit = new common.edit("#baseform", {bucket: "yhb-img01"});
|
|
|
Bll.module = module;
|
|
|
var d = new common.dialog({
|
|
|
title: hint + "标签",
|
|
|
content: common.util.__template2($("#template").html(), Bll.module),
|
|
|
width: '40%',
|
|
|
button: [
|
|
|
{
|
|
|
value: "保存",
|
|
|
callback: function () {
|
|
|
if (edit.validate()) {
|
|
|
common.util.__ajax({
|
|
|
url: url,
|
|
|
data: Bll.module
|
|
|
}, function () {
|
|
|
Bll.getList();
|
|
|
g.init(list);
|
|
|
d.close();
|
|
|
});
|
|
|
}
|
|
|
return false;
|
|
|
},
|
|
|
css: "btn-primary"
|
|
|
},
|
|
|
{
|
|
|
"value": "取消",
|
|
|
"css": "btn-info"
|
|
|
}
|
|
|
]
|
|
|
});
|
|
|
edit.init();
|
|
|
//e.init();
|
|
|
var e = new common.edit("#baseform", {bucket: "yhb-img01"});
|
|
|
//Bll.module = module;
|
|
|
//var d = new common.dialog({
|
|
|
// title: hint + "标签",
|
|
|
// content: common.util.__template2($("#template").html(), Bll.module),
|
|
|
// width: '40%',
|
|
|
// button: [
|
|
|
// {
|
|
|
// value: "保存",
|
|
|
// callback: function () {
|
|
|
// if (edit.validate()) {
|
|
|
// common.util.__ajax({
|
|
|
// url: url,
|
|
|
// data: Bll.module
|
|
|
// }, function () {
|
|
|
// Bll.getList();
|
|
|
// g.init(list);
|
|
|
// d.close();
|
|
|
// });
|
|
|
// }
|
|
|
// return false;
|
|
|
// },
|
|
|
// css: "btn-primary"
|
|
|
// },
|
|
|
// {
|
|
|
// "value": "取消",
|
|
|
// "css": "btn-info"
|
|
|
// }
|
|
|
// ]
|
|
|
//});
|
|
|
|
|
|
var dialog = common.dialog.confirm(hint,
|
|
|
common.util.__template($("#template").html(), module),
|
|
|
function() {
|
|
|
e.submit(url, function (option) {
|
|
|
option.success=function() {
|
|
|
Bll.getList();
|
|
|
g.init(list);
|
|
|
dialog.close();
|
|
|
};
|
|
|
option.error=function(){};
|
|
|
});
|
|
|
return false;
|
|
|
});
|
|
|
e.init();
|
|
|
},
|
|
|
toastConfirm: function (item, hint, url) {
|
|
|
common.dialog.confirm("警告", hint, function () {
|
...
|
...
|
@@ -146,6 +159,7 @@ $(document).on("click", "#add-btn", function () { |
|
|
orderBy: 0
|
|
|
};
|
|
|
Bll.toast(item, "添加", "/hotRankTag/addTag");
|
|
|
Bll.toast('/operations/notice/addNotice', item, "创建公告");
|
|
|
});
|
|
|
/**
|
|
|
* 编辑
|
...
|
...
|
|