From cb2076d9ffdb53dd05a9083e0ece7bd1675aeba7 Mon Sep 17 00:00:00 2001 From: tengyufan <1532636164@qq.com> Date: Thu, 30 Jul 2026 17:58:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BA=A4=E6=98=93=E7=A1=AE=E8=AE=A4?= =?UTF-8?q?=E4=B9=A6=E7=BC=96=E5=8F=B7=E7=AD=9B=E9=80=89=E9=A1=B9=E4=BF=9D?= =?UTF-8?q?=E6=8C=81=E5=8D=95=E8=A1=8C=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 国联交易确认书页面加宽交易确认书编号筛选项标签和容器 - 避免交易确认书编号标签自动换行 --- YLErpWeb/Views/TradeConfirmBook/Index.cshtml | 21 +++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/YLErpWeb/Views/TradeConfirmBook/Index.cshtml b/YLErpWeb/Views/TradeConfirmBook/Index.cshtml index 91a7b06e..d1d54d2b 100644 --- a/YLErpWeb/Views/TradeConfirmBook/Index.cshtml +++ b/YLErpWeb/Views/TradeConfirmBook/Index.cshtml @@ -44,6 +44,15 @@ .no-skin { position: static !important; } + + .searchdiv .contract-code-search-group { + width: 272px; + } + + .searchdiv .contract-code-search-group .search-label { + width: 110px; + white-space: nowrap; + } } @section JS{ @@ -57,7 +66,17 @@
@Html.ShortInput("TradeNumber", "交易编号") - @Html.ShortInput("ContractCode", pageObj.isGuoLian ? "交易确认书编号" : "合约编号") + @if (pageObj.isGuoLian) + { +
+ 交易确认书编号 + +
+ } + else + { + @Html.ShortInput("ContractCode", "合约编号") + } @Html.MyAceDropdownInput("ClientId", "客户名称", ClientDataModel.GetAllClient()) @Html.MyAceDropdownInput("AssetId", "簿记账户", AssetunitController.GetClientassetunit()) @Html.MyAceDropdownInput("GroupId", "簿记账户组", AssetUnitModel.GetAllAssetUnitGroupItem())