后台数据表建立
This commit is contained in:
16
20220330_Vote/Ewide.Web.Entry/Controllers/VoteController.cs
Normal file
16
20220330_Vote/Ewide.Web.Entry/Controllers/VoteController.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Ewide.Web.Entry.Controllers
|
||||
{
|
||||
public class VoteController : Controller
|
||||
{
|
||||
public IActionResult Index()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -18,7 +18,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.5">
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.15">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
@@ -26,6 +26,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Ewide.Web.Core\Ewide.Web.Core.csproj" />
|
||||
<ProjectReference Include="..\Vote.Services\Vote.Services.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -2,11 +2,3 @@
|
||||
ViewData["Title"] = ViewBag.Description;
|
||||
}
|
||||
|
||||
<div style="text-align:center;margin-top:50px;">
|
||||
<img src="~/images/logo.png" style="height:100px;" />
|
||||
<div align="center">
|
||||
<p><a href="https://gitee.com/monksoul/Furion/stargazers"><img src="https://gitee.com/monksoul/Furion/badge/star.svg?theme=gvp" alt="star"></a> <a href="https://gitee.com/monksoul/Furion/members"><img src="https://gitee.com/monksoul/Furion/badge/fork.svg?theme=gvp" alt="fork"></a> <a href="https://github.com/MonkSoul/Furion/stargazers"><img src="https://img.shields.io/github/stars/MonkSoul/Furion?logo=github" alt="GitHub stars"></a> <a href="https://github.com/MonkSoul/Furion/network"><img src="https://img.shields.io/github/forks/MonkSoul/Furion?logo=github" alt="GitHub forks"></a> <a href="https://github.com/MonkSoul/Furion/blob/main/LICENSE"><img src="https://img.shields.io/github/license/MonkSoul/Furion" alt="GitHub license"></a> <a href="https://www.nuget.org/packages/Furion"><img src="https://img.shields.io/nuget/v/Furion.svg?cacheSeconds=10800" alt="nuget"></a></p>
|
||||
</div>
|
||||
<p>@ViewBag.Description</p>
|
||||
<p><a href="/api">API 接口</a> <a href="https://gitee.com/monksoul/Furion" target="_blank">源码地址</a></p>
|
||||
</div>
|
||||
5
20220330_Vote/Ewide.Web.Entry/Views/Vote/Index.cshtml
Normal file
5
20220330_Vote/Ewide.Web.Entry/Views/Vote/Index.cshtml
Normal file
@@ -0,0 +1,5 @@
|
||||
@*
|
||||
For more information on enabling MVC for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
|
||||
*@
|
||||
@{
|
||||
}
|
||||
Reference in New Issue
Block a user