优化:分销商和经销商等级列表显示权重值信息

This commit is contained in:
wuhui_zzw 2023-12-04 19:05:19 +08:00
parent cc870ef5de
commit 85a46dfbcc
2 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,7 @@
<table class="table table-hover"> <table class="table table-hover">
<thead> <thead>
<tr> <tr>
<th style="text-align: center;width: 80px!important;">ID</th>
<th style="text-align: center;width: 80px!important;">等级权重</th> <th style="text-align: center;width: 80px!important;">等级权重</th>
<th style="text-align: center;width: 150px!important;">等级名称</th> <th style="text-align: center;width: 150px!important;">等级名称</th>
<th style="text-align: center;width: 150px!important;">等级类型</th> <th style="text-align: center;width: 150px!important;">等级类型</th>
@ -35,6 +36,7 @@
<tbody> <tbody>
@foreach($list as $row) @foreach($list as $row)
<tr> <tr>
<td style="text-align: center;">{{$row->id}}</td>
<td style="text-align: center;">{{$row->level}}</td> <td style="text-align: center;">{{$row->level}}</td>
<td style="text-align: center;">{{$row->name}}</td> <td style="text-align: center;">{{$row->name}}</td>
<td style="text-align: center;"> <td style="text-align: center;">

View File

@ -24,6 +24,7 @@
<table class="table table-hover"> <table class="table table-hover">
<thead class="navbar-inner"> <thead class="navbar-inner">
<tr> <tr>
<th style="width: 100px;text-align: center;">ID</th>
<th style="width: 100px;text-align: center;">等级权重</th> <th style="width: 100px;text-align: center;">等级权重</th>
<th style="text-align: center;">等级名称</th> <th style="text-align: center;">等级名称</th>
<th style="text-align: center;">等级类型</th> <th style="text-align: center;">等级类型</th>
@ -38,6 +39,7 @@
<tbody> <tbody>
@foreach($list['data'] as $item) @foreach($list['data'] as $item)
<tr> <tr>
<td style="text-align: center;">{{$item['id']}}</td>
<td style="text-align: center;"> <td style="text-align: center;">
<input type="text" class="form-control" name="display_order[{{$item['id']}}]" value="{{$item['level_weight']}}"> <input type="text" class="form-control" name="display_order[{{$item['id']}}]" value="{{$item['level_weight']}}">
</td> </td>