Commit a3a660e6 by 朱继来

审单时添加客服备注

parent e928d2ca
...@@ -752,6 +752,7 @@ Class OrderController extends Controller ...@@ -752,6 +752,7 @@ Class OrderController extends Controller
"k2" => $check['k2'], "k2" => $check['k2'],
"client_source" => $client_source, "client_source" => $client_source,
"change_extend_fee" => $request->input('change_extend_fee', ''), "change_extend_fee" => $request->input('change_extend_fee', ''),
"kefu_remark" => $request->input('kefu_remark', ''),
]; ];
$temp = json_decode(curlApi($url, $resData, "POST"), true); $temp = json_decode(curlApi($url, $resData, "POST"), true);
......
...@@ -147,6 +147,8 @@ ...@@ -147,6 +147,8 @@
</tbody> </tbody>
</table> </table>
<textarea name="kefu_remark" id="kefu_remark" class="form-control" placeholder="客服备注信息" style="resize: none;">{{$order_temp_info['kefu_remark']}}</textarea>
@if ($order_info['order_goods_type'] == 2) @if ($order_info['order_goods_type'] == 2)
<table class="table table-bordered table-hover"> <table class="table table-bordered table-hover">
<tr> <tr>
......
...@@ -478,6 +478,13 @@ ...@@ -478,6 +478,13 @@
<td colspan="10">{{$order_info['order_remark']}}</td> <td colspan="10">{{$order_info['order_remark']}}</td>
</tr> </tr>
@endif @endif
@if ($order_temp_info['kefu_remark'])
<tr>
<td>客服备注信息:</td>
<td colspan="10">{{$order_temp_info['kefu_remark']}}</td>
</tr>
@endif
</tfoot> </tfoot>
</table> </table>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment