功能完善

This commit is contained in:
路 范
2022-03-31 09:07:38 +08:00
parent 8a57806a29
commit dd71325ea8
17 changed files with 1644 additions and 11 deletions

View File

@@ -0,0 +1,26 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Ewide.Web.Entry.Controllers
{
[AllowAnonymous]
public class ManageController : Controller
{
public IActionResult Index()
{
return View();
}
public IActionResult Login()
{
return View();
}
public IActionResult Expert()
{
return View();
}
}
}

View File

@@ -1,4 +1,5 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -6,6 +7,7 @@ using System.Threading.Tasks;
namespace Ewide.Web.Entry.Controllers
{
[AllowAnonymous]
public class VoteController : Controller
{
public IActionResult Index()