This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
@model List<EditApiParameterModel>
@if (Model != null && Model.Count > 0)
{
int i = 0;
foreach (var item in Model)
{
var name = $"Parameters[{i}].Value";
var type = item.Type == "string" ? "text" : "text";
var maximum = !string.IsNullOrEmpty(item.Maxinum) ? "data-val-range-max='" + item.Maxinum + "'" : "";
var range = (!string.IsNullOrEmpty(item.Minimum) && !string.IsNullOrEmpty(item.Maxinum)) ? $"data-val-range='长度必须在{item.Minimum}-{item.Maxinum}之间'" : "";