12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <style>
- .contet {
- width: 100%;
- margin: 0 auto;
- padding: 10px 20px;
- background-color: white;
- }
- .center{
- margin: 0 200px;
- width: 800px;
- }
- .a_btn {
- padding: 5px;
- border: grey solid 1px;
- border-radius: 10%;
- text-decoration: none;
- }
- .m-l-30{
- margin-left: 30px;
- }
- .center span{
- font-size: 18px;
- padding: 10px 0px 5px 0px;
- display: block;
- }
- </style>
- <div class="contet">
- <div class="center">
- <h2 style="display: inline-block">订单详情</h2>
- @if($data->orderPatient)
- <a class = "a_btn m-l-30" href="/cdms/chats">会话</a>
- <a class = "a_btn m-l-30" href="javascript:void(0)">完成</a>
- @endif
- </div>
- <div class="center">
- <span>订单号:{{$data->order_sn}}</span>
- @if(!empty($data->orderPatient))
- <span>患者:{{$data->orderPatient->name}}</span>
- <span>年龄:{{birthday_to_age($data->orderPatient->birthday)}}</span>
- <span>身份证号:{{$data->orderPatient->card_number}}</span>
- <span>下单时间:{{$data->orderPatient->created_at}}</span>
- <span>订单状态:{{$status[$data->order_status]}}接单</span>
- <span>病情描述:{{$data->orderPatient->symptoms}}</span>
- <span>图片:{{$data->orderPatient->medical_imgs}}</span>
- @else
- <span>患者:</span>
- <span>年龄:</span>
- <span>身份证号:</span>
- <span>下单时间:</span>
- <span>订单状态:</span>
- <span>病情描述:</span>
- <span>图片:</span>
- @endif
- </div>
- </div>
- <script>
- </script>
|