From 1f547bf4cd8d44f82072cec93a67bf83c2bdd427 Mon Sep 17 00:00:00 2001 From: chenhaozhe <cgz@hz-kingdee.com> Date: 星期一, 09 二月 2026 14:32:03 +0800 Subject: [PATCH] 华舟 当前工单(扫码汇报) 页面 输入合格数量时 打开 数字键盘 --- WebTM/Web.config | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/WebTM/Web.config b/WebTM/Web.config index bbfd8ec..12be2dd 100644 --- a/WebTM/Web.config +++ b/WebTM/Web.config @@ -6,15 +6,24 @@ <configuration> <system.web> <compilation debug="true" targetFramework="4.5" /> - <httpRuntime targetFramework="4.5" /> + <httpRuntime targetFramework="4.5" maxQueryStringLength="102400" /> </system.web> <appSettings> <add key="Name" value="61.130.49.162:9090/WMSAPI///" /> </appSettings> <system.webServer> <staticContent> - <remove fileExtension=".grf"/> + <remove fileExtension=".grf" /> <mimeMap fileExtension=".grf" mimeType="text/xml" /> </staticContent> + <handlers> + <remove name="StaticFile" /> + <add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDocumentModule" resourceType="Either" requireAccess="Read" /> + </handlers> + <security> + <requestFiltering> + <requestLimits maxAllowedContentLength="10485760" maxQueryString="10485760" /> <!--璁剧疆鍙傛暟鍐呭鐨勬渶澶ч暱搴︿负10MB锛岄粯璁ゆ槸4MB,鏈�澶ф敮鎸�2GB--> + </requestFiltering> + </security> </system.webServer> </configuration> -- Gitblit v1.9.1