tooltip feature is finalized for rows of reports
This commit is contained in:
parent
b341d68c0d
commit
be212a9847
@ -13,7 +13,3 @@
|
|||||||
@include($class->views['content'])
|
@include($class->views['content'])
|
||||||
</div>
|
</div>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@push('scripts_start')
|
|
||||||
<script src="{{ asset('public/js/common/reports.js?v=' . version('short')) }}"></script>
|
|
||||||
@endpush
|
|
||||||
|
@ -1,14 +1,6 @@
|
|||||||
@if ($row_total = array_sum($rows))
|
@if ($row_total = array_sum($rows))
|
||||||
<tr class="row rp-border-top-1 font-size-unset">
|
<tr class="row rp-border-top-1 font-size-unset">
|
||||||
<td class="{{ $class->column_name_width }} long-texts pr-0">
|
<td class="{{ $class->column_name_width }} long-texts pr-0" title="{{ $class->row_names[$table][$id] }}">{{ $class->row_names[$table][$id] }}</td>
|
||||||
<el-tooltip
|
|
||||||
content="{{ $class->row_names[$table][$id] }}"
|
|
||||||
effect="dark"
|
|
||||||
:open-delay="100"
|
|
||||||
placement="top">
|
|
||||||
<span>{{ $class->row_names[$table][$id] }}</span>
|
|
||||||
</el-tooltip>
|
|
||||||
</td>
|
|
||||||
@foreach($rows as $row)
|
@foreach($rows as $row)
|
||||||
<td class="{{ $class->column_value_width }} text-right px-0">@money($row, setting('default.currency'), true)</td>
|
<td class="{{ $class->column_value_width }} text-right px-0">@money($row, setting('default.currency'), true)</td>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
Loading…
x
Reference in New Issue
Block a user