From 1b21c753b471406026cf058aea1e59a4a228052f Mon Sep 17 00:00:00 2001
From: zjh <2207896513@qq.com>
Date: 星期日, 12 十月 2025 20:37:31 +0800
Subject: [PATCH] 代码提交
---
input.html | 15 +++++++++++----
1 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/input.html b/input.html
index 213eb41..b57df70 100644
--- a/input.html
+++ b/input.html
@@ -204,9 +204,15 @@
{{/if}}
{{else if item[2] == 'MEMO'}}
<div class="mui-input-row" style="height:<%=(item[14])%>px;">
- <label><%=(item[1])%></label>
- <textarea class="form" rows="8" id="<%=(item[0])%>" style="height:<%=(item[14])%>px;"></textarea>
- </div>
+ <label><%=(item[1])%></label>
+ {{if item[3] == '1'}}
+ <textarea readonly class="form" rows="8" id="<%=(item[0])%>"
+ style="height:<%=(item[14])%>px; background-color: #f1f1f5;"></textarea>
+ {{else}}
+ <textarea class="form" rows="8" id="<%=(item[0])%>"
+ style="height:<%=(item[14])%>px;"></textarea>
+ {{/if}}
+ </div>
{{else if item[2] == 'BUTTON'}}
<div class="mui-input-row" style="height: 4rem;">
<ul class="mui-table-view ulcss" >
@@ -1070,7 +1076,8 @@
timeout: 30000,
success: function(data) {
if (data.result) {
- //console.log(JSON.stringify(data.data));
+ // console.log("=================================================");
+ // console.log(JSON.stringify(data.data));
try {
var printCmd = ""
for (var i = 0; i < data.data.length; i++) {
--
Gitblit v1.9.3