记得上下班打卡 | git大法好,push需谨慎

Commit 6646fa86 authored by 胡佳晨's avatar 胡佳晨

修改 partner

parent 47158460
......@@ -36,7 +36,7 @@ public class KylinPerformancesRecommendController extends BaseController {
@Autowired
private IKylinPerformancesAdminService kylinPerformancesService;
@RequiresPermissions("kylin:performances:recommend")
// @RequiresPermissions("kylin:performances:recommend")
@GetMapping()
public String recommend() {
return prefix + "/recommend";
......@@ -45,7 +45,7 @@ public class KylinPerformancesRecommendController extends BaseController {
/**
* 查询演出列表
*/
@RequiresPermissions("kylin:performances:recommend:list")
// @RequiresPermissions("kylin:performances:recommend:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list() {
......@@ -64,7 +64,7 @@ public class KylinPerformancesRecommendController extends BaseController {
/**
* 修改
*/
@RequiresPermissions("kylin:performances:recommend:change")
// @RequiresPermissions("kylin:performances:recommend:change")
@PostMapping("/change")
@ResponseBody
public AjaxResult setRecommend(@RequestParam(value = "ids") String performancesId,@RequestParam(value = "isRecommend",required = false) Integer isRecommend) {
......@@ -82,7 +82,7 @@ public class KylinPerformancesRecommendController extends BaseController {
return prefix + "/edit";
}
@RequiresPermissions("kylin:performances:recommend:change")
// @RequiresPermissions("kylin:performances:recommend:change")
@GetMapping(value = "/performance/status")
@ResponseBody
public AjaxResult listByStatus(@RequestParam(value = "status") String status,@RequestParam(value = "title",required = false) String title) {
......
......@@ -41,13 +41,13 @@ public class KylinRoadShowController extends BaseController {
@Autowired
private IKylinPerformancesAdminService kylinPerformancesService;
@RequiresPermissions("kylin:performances:roadShow")
// @RequiresPermissions("kylin:performances:roadShow")
@GetMapping()
public String roadShow() {
return prefix + "/roadShow";
}
@RequiresPermissions("kylin:performances:roadShow:list")
// @RequiresPermissions("kylin:performances:roadShow:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo listRoadShow(@RequestParam(value = "title", required = false) String title,
......@@ -66,7 +66,7 @@ public class KylinRoadShowController extends BaseController {
return prefix + "/add";
}
@RequiresPermissions("kylin:performances:roadShow:add")
// @RequiresPermissions("kylin:performances:roadShow:add")
@Log(title = "巡演", businessType = BusinessType.INSERT)
@PostMapping("/add")
@ResponseBody
......@@ -74,7 +74,7 @@ public class KylinRoadShowController extends BaseController {
return toAjax(!kylinRoadShowsAdminService.createRoadShow(createRoadShowParam).equals(""));
}
@RequiresPermissions("kylin:performances:roadShow:details")
// @RequiresPermissions("kylin:performances:roadShow:details")
@GetMapping(value = "/details/{roadShowId}")
public String detailsRoadShow(@PathVariable("roadShowId") String roadShowId, ModelMap mmap) {
KylinRoadShowAdminVo result = kylinRoadShowsAdminService.detailsRoadShow(roadShowId);
......@@ -82,7 +82,7 @@ public class KylinRoadShowController extends BaseController {
return prefix + "/edit";
}
@RequiresPermissions("kylin:performances:roadShow:edit")
// @RequiresPermissions("kylin:performances:roadShow:edit")
@Log(title = "巡演", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
@ResponseBody
......@@ -100,7 +100,7 @@ public class KylinRoadShowController extends BaseController {
return prefix + "/details";
}
@RequiresPermissions("kylin:performances:roadShow:addPerformance")
// @RequiresPermissions("kylin:performances:roadShow:addPerformance")
@GetMapping(value = "/performance/{roadShowId}")
@ResponseBody
public TableDataInfo listByRoadShowId(@PathVariable("roadShowId") String roadShowId) {
......@@ -109,7 +109,7 @@ public class KylinRoadShowController extends BaseController {
}
@RequiresPermissions("kylin:performances:roadShow:change:performance")
// @RequiresPermissions("kylin:performances:roadShow:change:performance")
@PostMapping(value = "/roadShow/relation")
@ResponseBody
public AjaxResult changeRoadShowId(@RequestParam(value = "ids") String performancesId,@RequestParam(value = "roadShowId",required = false) String roadShowId) {
......@@ -126,7 +126,7 @@ public class KylinRoadShowController extends BaseController {
return prefix + "/addPerformances";
}
@RequiresPermissions("kylin:performances:roadShow:change:performance")
// @RequiresPermissions("kylin:performances:roadShow:change:performance")
@GetMapping(value = "/performance/status")
@ResponseBody
public AjaxResult listByStatus(@RequestParam(value = "status") String status,@RequestParam(value = "title",required = false) String title) {
......
......@@ -165,12 +165,12 @@
formatter: function (value, row, index) {
var actions = [];
if (row.auditStatus == 0) {
actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detailTab(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>管理</a> ');
actions.push('<a class="btn btn-success btn-xs " href="javascript:void(0)" onclick="$.operate.detailTab(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>管理</a> ');
}else{
actions.push('<a class="btn btn-success btn-xs ' + detailFlag + '" href="javascript:void(0)" onclick="$.operate.detailTab(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>查看</a> ');
actions.push('<a class="btn btn-success btn-xs " href="javascript:void(0)" onclick="$.operate.detailTab(\'' + row.performancesId + '\')"><i class="fa fa-edit"></i>查看</a> ');
}
if (row.syncDamai == 1) {
actions.push('<a class="btn btn-warning btn-xs ' + expertFlag + '" href="javascript:void(0)" onclick="f(\'' + row.performancesId + '\')"><i class="fa fa-remove"></i>同步</a>');
actions.push('<a class="btn btn-warning btn-xs " href="javascript:void(0)" onclick="f(\'' + row.performancesId + '\')"><i class="fa fa-remove"></i>同步</a>');
}
return actions.join('');
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment