From da6350d73fdd6b168756a2986b1e5cb0a2da00ed Mon Sep 17 00:00:00 2001
From: yl <ykxkd@outlook.com>
Date: 星期三, 29 三月 2023 10:59:13 +0800
Subject: [PATCH] 订单下达生成工单语句修改、手工创建生产工单生成单据号接口
---
VueWebApi/obj/Release/Package/PackageTmp/Areas/HelpPage/Views/Help/Index.cshtml | 38 ++++++++++++++++++++++++++++++++++++++
1 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/VueWebApi/obj/Release/Package/PackageTmp/Areas/HelpPage/Views/Help/Index.cshtml b/VueWebApi/obj/Release/Package/PackageTmp/Areas/HelpPage/Views/Help/Index.cshtml
new file mode 100644
index 0000000..6b54228
--- /dev/null
+++ b/VueWebApi/obj/Release/Package/PackageTmp/Areas/HelpPage/Views/Help/Index.cshtml
@@ -0,0 +1,38 @@
+@using System.Web.Http
+@using System.Web.Http.Controllers
+@using System.Web.Http.Description
+@using System.Collections.ObjectModel
+@using VueWebApi.Areas.HelpPage.Models
+@model Collection<ApiDescription>
+
+@{
+ ViewBag.Title = "ASP.NET Web API Help Page";
+
+ // Group APIs by controller
+ ILookup<HttpControllerDescriptor, ApiDescription> apiGroups = Model.ToLookup(api => api.ActionDescriptor.ControllerDescriptor);
+}
+
+<link type="text/css" href="~/Areas/HelpPage/HelpPage.css" rel="stylesheet" />
+<header class="help-page">
+ <div class="content-wrapper">
+ <div class="float-left">
+ <h1>@ViewBag.Title</h1>
+ </div>
+ </div>
+</header>
+<div id="body" class="help-page">
+ <section class="featured">
+ <div class="content-wrapper">
+ <h2>Introduction</h2>
+ <p>
+ Provide a general description of your APIs here.
+ </p>
+ </div>
+ </section>
+ <section class="content-wrapper main-content clear-fix">
+ @foreach (var group in apiGroups)
+ {
+ @Html.DisplayFor(m => group, "ApiGroup")
+ }
+ </section>
+</div>
--
Gitblit v1.9.3