@using ShwasherSys.Models.Modal @model ShwasherSys.Models.Modal.ShowQueryModelModal @{ var type = Model.QueryType; string lcHeadMsg = ""; if (type == "semiProduct") { lcHeadMsg = "半成品信息"; } else if (type == "product") { lcHeadMsg = "成品信息"; } else if (type == "customer") { lcHeadMsg = "客户信息"; }else if (type == "semiCurrentStore") { lcHeadMsg = "半成品当前库存"; } } @Html.Partial("Modals/_ModalHeader", new ModalHeaderViewModel(@lcHeadMsg, "")) @if (type == "semiProduct") { 编码 名称 查询 } else if (type == "semiCurrentStore") { 编码 半成品编码 查询 } @if (type == "semiProduct") { 半成品编码 半成品名称 规格 材质 硬度 表色 }else if (type == "semiCurrentStore") { 排产单编号 半成品编码 当前库存数量(kg) 仓库 被冻结数量 可用数量 表色 规格 硬度 材质 } @if (type == "semiProduct") { }else if (type == "semiCurrentStore") { }