...
|
...
|
@@ -80,7 +80,7 @@ |
|
|
textField : "groupName",
|
|
|
required:false,
|
|
|
prompt: "请选择分组",
|
|
|
url : contextPath + "/labelGroupManage/getAllLabelGroupInfo",
|
|
|
url : serverContextPath + "/labelGroupManage/getAllLabelGroupInfo",
|
|
|
loadFilter: function (data) {
|
|
|
var data = defaultLoadFilter(data);
|
|
|
data.unshift({'id': '', 'groupName': '--请选择分组--'});
|
...
|
...
|
@@ -123,7 +123,7 @@ |
|
|
status: $("#rewardstatus1").combobox("getValue"),
|
|
|
type: $("#rewardtype1").combobox("getValue")
|
|
|
},*/
|
|
|
url: contextPath + "/grassLabelManage/getGrassLabelList",
|
|
|
url: serverContextPath + "/grassLabelManage/getGrassLabelList",
|
|
|
method: 'POST',
|
|
|
loadFilter: function (data) {
|
|
|
var tmp = defaultLoadFilter(data);
|
...
|
...
|
@@ -196,7 +196,7 @@ |
|
|
index = $(this).attr("index");
|
|
|
$.messager.confirm("确认", "确认删除该分组吗?", function (flag) {
|
|
|
if(flag){
|
|
|
$.post(contextPath + "/grassLabelManage/deleteGrassLabel", {
|
|
|
$.post(serverContextPath + "/grassLabelManage/deleteGrassLabel", {
|
|
|
id : close_id,
|
|
|
groupId: group_id
|
|
|
}, function(data) {
|
...
|
...
|
@@ -252,7 +252,7 @@ |
|
|
|
|
|
|
|
|
$("#activityAddForm").form("submit", {
|
|
|
url: contextPath + "/grassLabelManage/addUpGrassLabel",
|
|
|
url: serverContextPath + "/grassLabelManage/addUpGrassLabel",
|
|
|
onSubmit: function (param) {
|
|
|
if(data != null){
|
|
|
param.id = data.id;
|
...
|
...
|
|