/// <summary>
 /// 删除标签
 /// </summary>
 /// <param name="Id"></param>
 /// <returns></returns>
 public JsonResult DeleteTag(long Id)
 {
     try
     {
         ShopBranchApplication.DeleteShopBranchTagInfo(Id);
         return(this.Json((object)new
         {
             success = true
         }));
     }
     catch (Exception ex)
     {
         return(this.Json((object)new
         {
             success = false,
             msg = ex.Message
         }));
     }
 }
Example #2
0
 public JsonResult DeleteTag(long Id)
 {
     ShopBranchApplication.DeleteShopBranchTagInfo(Id);
     return(Json(new { success = true }));
 }