@using YLErp.Modules.SystemModule
@model EditFieldViewModel
@{
Layout = null;
var colIndex = 0;
var itemClass = "none";
var list = ClientEditConfigService.GetFlatList(Model.fields, out var cols);
var isGuoJun = PS.Config.IsGuoJun;
var hasCustomerNo = false;
if (Model.fields != null && Model.fields.Any())
{
hasCustomerNo = Model.fields.Any(p => "客户编号".Equals(p.label));
}
}
@foreach (var f in list)
{
if (f != null && !f.visible)
{
continue;
}
colIndex++;
@if (f != null &&f.name== "LicenseValidTimeStr")
{