|
|
|
|
@ -29,7 +29,7 @@
|
|
|
|
|
日期
|
|
|
|
|
</th>
|
|
|
|
|
<th>名字</th>
|
|
|
|
|
<th>手机号</th>
|
|
|
|
|
<th>医院</th>
|
|
|
|
|
<th>详情</th>
|
|
|
|
|
<th>建议</th>
|
|
|
|
|
<th>总分</th>
|
|
|
|
|
@ -43,11 +43,13 @@
|
|
|
|
|
{{ $row->date }}
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
{{ $row->name }}
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
{{ $row->mobile }}
|
|
|
|
|
@if($row->admin)
|
|
|
|
|
{{ $row->admin->name }}
|
|
|
|
|
@else
|
|
|
|
|
{{ $row->name }}({{ $row->mobile }})
|
|
|
|
|
@endif
|
|
|
|
|
</td>
|
|
|
|
|
<td>{{ $row->project->name }}</td>
|
|
|
|
|
<td>
|
|
|
|
|
@foreach ($row->content as $item)
|
|
|
|
|
{{ $item['ask'] }}:{{ $item['score'] }}<br/>
|
|
|
|
|
@ -56,8 +58,8 @@
|
|
|
|
|
<td>{{ $row->tip }}</td>
|
|
|
|
|
<td>{{ $row->score }}</td>
|
|
|
|
|
<td>
|
|
|
|
|
{{-- <a class="btn btn-sm btn-primary"--}}
|
|
|
|
|
{{-- href="{{url("{$urlPrefix}/asksubmit_edit?id={$row['id']}")}}">@lang("icons.action_edit") @lang("actions.edit")</a>--}}
|
|
|
|
|
<a class="btn btn-sm btn-primary"
|
|
|
|
|
href="{{url("{$urlPrefix}/asksubmit_edit?id={$row['id']}")}}">@lang("icons.action_edit") @lang("actions.edit")</a>
|
|
|
|
|
<a class="btn btn-sm btn-danger btn-delete" data-id="ask-{{$row['id']}}"
|
|
|
|
|
href="javascript:;">@lang("icons.action_delete") @lang("actions.delete")</a>
|
|
|
|
|
</td>
|
|
|
|
|
|