|
|
@@ -41,6 +41,9 @@
|
|
41
|
41
|
</theard>
|
|
42
|
42
|
<tbody class="BLNR" style="border-top: none; padding: 8px;">
|
|
43
|
43
|
</tbody>
|
|
|
44
|
+ <!--<div class="FJ">
|
|
|
45
|
+
|
|
|
46
|
+ </div>-->
|
|
44
|
47
|
</table>
|
|
45
|
48
|
<table>
|
|
46
|
49
|
<tr>
|
|
|
@@ -146,13 +149,19 @@
|
|
146
|
149
|
if(result.state.toLowerCase() == "success") {
|
|
147
|
150
|
var temp1;
|
|
148
|
151
|
$.each(result.data,function(i, n) {
|
|
149
|
|
- temp1 = temp1 + '<td class="text-center">'+n.F_DealUser+'</td><td class="text-center">'+n.F_CreateTime+'</td><td class="text-center">'+n.F_Result+'</td><td class="text-center" style="color:#00a1cb;"><a class="tiaozhuan" style="margin-left: -5px; width:100%; display:block; text-align: center;" href="' + (n.File == null ? '' : n.File[0].F_FileUrl) + '" download="' + (n.File == null ? '' : n.File[0].F_FileUrl) + '" >附件</a></td>';
|
|
|
152
|
+ temp1 = temp1 + '<td class="text-center">'+n.F_DealUser+'</td><td class="text-center">'+n.F_CreateTime+'</td><td class="text-center">'+n.F_Result+'</td><td class="text-center FJ" style="color:#00a1cb;"></td>';
|
|
150
|
153
|
ccc=n.F_Id;
|
|
|
154
|
+
|
|
151
|
155
|
});
|
|
152
|
156
|
$('.BLNR').append(temp1);
|
|
|
157
|
+ $(result.data[0].File).each(function(i, n) {
|
|
|
158
|
+ HTML = '<a style="margin-right:5px;" href="' + n.F_FileUrl + '" download="' + n.F_FileUrl + '">附件</a>'
|
|
|
159
|
+ $(HTML).appendTo($('.FJ'));
|
|
|
160
|
+ })
|
|
153
|
161
|
}
|
|
154
|
162
|
})
|
|
155
|
163
|
}
|
|
|
164
|
+// <a class="tiaozhuan" style="margin-left: -5px; width:100%; display:block; text-align: center;" href="' + (n.File == null ? '' : n.File[0].F_FileUrl) + '" download="' + (n.File == null ? '' : n.File[0].F_FileUrl) + '" >附件</a>
|
|
156
|
165
|
// 判断附件
|
|
157
|
166
|
function Hove(){
|
|
158
|
167
|
$(document).on("mouseover mouseout",'.tiaozhuan',function(event){
|