Commit e3026a2b53a92d2f5185cfb63a5c26e3f8ac2c6c
1 parent
0e24b331
add
Showing
3 changed files
with
18 additions
and
2 deletions
topages/workfill/workfill.js
... | ... | @@ -198,6 +198,7 @@ var fun = { |
198 | 198 | //工时信息提交 |
199 | 199 | dailyReportCommit:function (id,_this) { |
200 | 200 | console.log(id); |
201 | + | |
201 | 202 | var arsaId = $("#weekday"+id).attr("data-id"); |
202 | 203 | var projectId = $("#work-projectName"+id).find("option:selected").val(); |
203 | 204 | var dailyDate = $("#weekday"+id).attr("data-date"); | ... | ... |
topages/workquery/workquery.css
... | ... | @@ -236,9 +236,24 @@ |
236 | 236 | .workquery-list-main>li:nth-of-type(4){ |
237 | 237 | width: 730px; |
238 | 238 | height: 90px; |
239 | + /*line-height: 24px;*/ | |
240 | + /*padding: 10px 15px;*/ | |
241 | + margin-top: 26px; | |
242 | + /*font-size: 12px;*/ | |
243 | + /*color: rgba(0,0,0,.5);*/ | |
244 | + /*border: 1px solid #f0f1f9;*/ | |
245 | + /*overflow-y: auto;*/ | |
246 | +} | |
247 | +textarea { | |
248 | + outline: none; | |
249 | + resize: none; | |
250 | +} | |
251 | +.workquery-list-main>li:nth-of-type(4) textarea{ | |
252 | + width: 730px; | |
253 | + height: 90px; | |
239 | 254 | line-height: 24px; |
240 | 255 | padding: 10px 15px; |
241 | - margin-top: 26px; | |
256 | + /*margin-top: 26px;*/ | |
242 | 257 | font-size: 12px; |
243 | 258 | color: rgba(0,0,0,.5); |
244 | 259 | border: 1px solid #f0f1f9; | ... | ... |
topages/workquery/workquery.js
... | ... | @@ -120,7 +120,7 @@ var fun={ |
120 | 120 | ' <li>'+rows.asarOpName+'</li>\n' + |
121 | 121 | ' <li>'+rows.dailyDate+'</li>\n' + |
122 | 122 | ' <li>工时 <span>8</span> 小时</li>\n' + |
123 | - ' <li id="workquery-list-wrap1" class="clampThis" title="">'+rows.dailyContent+'</li>\n' + | |
123 | + ' <li id="workquery-list-wrap1" class="clampThis" title=""><textarea name="" readonly cols="30" rows="10">'+rows.dailyContent+'</textarea></li>\n' + | |
124 | 124 | ' </ul>'+ |
125 | 125 | ' </li>'; |
126 | 126 | ... | ... |