Browse Source

自定义菜单操作时添加提示

master
yashen 9 years ago
parent
commit
efd28fb27e
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      B3WeChat.Web/Pages/B3WeChat/Tools/CustomMenuMan.cs

+ 2
- 2
B3WeChat.Web/Pages/B3WeChat/Tools/CustomMenuMan.cs View File

@ -47,13 +47,13 @@ namespace BWP.Web.Pages.B3WeChat.Tools
{ {
InOutMessageUtil.SetCustomMenu(text.Text); InOutMessageUtil.SetCustomMenu(text.Text);
AspUtil.Alert(this, "设置自定义菜单成功"); AspUtil.Alert(this, "设置自定义菜单成功");
}));
}) { PromptString="确定要提交设置吗"});
toobar.Add(new TSButton("删除", delegate toobar.Add(new TSButton("删除", delegate
{ {
InOutMessageUtil.DelteCustomMenu(); InOutMessageUtil.DelteCustomMenu();
AspUtil.Alert(this, "删除自定义菜单成功"); AspUtil.Alert(this, "删除自定义菜单成功");
}));
}) { PromptString = "确定要提交删除吗" });
} }


Loading…
Cancel
Save