|
@@ -22,7 +22,10 @@
|
|
|
display: block;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ .attchment {
|
|
|
+ width: 200px;
|
|
|
+ height: 200px;
|
|
|
+ }
|
|
|
|
|
|
.OpAuditLayer{
|
|
|
position: fixed;
|
|
@@ -961,7 +964,7 @@
|
|
|
@foreach($v['data'] as $key => $item)
|
|
|
<div class="swiper-slide">
|
|
|
<a title="{{ $v['title'] }}">
|
|
|
- <img class="attchment" data-key="{{$key}}" data-name="{{$k}}" src="{{upload_asset($item['src'])}}" border="0"/>
|
|
|
+ <img class="attachment" data-key="{{$key}}" data-name="{{$k}}" src="{{$item['src']}}" border="0"/>
|
|
|
</a>
|
|
|
<p style="text-align: center">
|
|
|
{{ $v['title'] }}
|
|
@@ -1013,7 +1016,7 @@
|
|
|
});
|
|
|
|
|
|
let photos = {!!json_encode($photos)!!};
|
|
|
- $('.attchment').click(function () {
|
|
|
+ $('.attachment').click(function () {
|
|
|
let key = $(this).data('key');
|
|
|
let name = $(this).data('name');
|
|
|
let photo = photos[name];
|