zentaopms/extension/max/product/ext/view/view.ticket.html.hook.php
2023-05-16 10:50:42 +08:00

11 lines
385 B
PHP

<style>
.c-ticket {padding-right: 20px !important;}
</style>
<?php
$html = "<th class='c-ticket'><i class='icon icon-person icon-sm'></i> {$lang->product->ticket}</th>";
$html .= '<td><strong>' . zget($users, $product->ticket) . '</strong></td>';
?>
<script>
$('.pm-detail').find('.detail-content').find('tr:eq(2)').find('td').after(<?php echo json_encode($html)?>);
</script>