index.blade.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. @extends('layouts.app')
  2. @section('title')问题件-查询@endsection
  3. @section('content')
  4. @component("order.issue.menu")@endcomponent
  5. <div class="container-fluid" id="wave_div">
  6. <div style="min-width: 2000px;">
  7. <div id="list" class="d-none">
  8. <div id="form_div" style="min-width: 1950px;" class="bg-white"></div>
  9. <table class="table table-sm table-striped table-bordered table-hover card-body mt-2" style="background: #fff;">
  10. <tr>
  11. <th class="bg-white font-weight-bolder" colspan="3"></th>
  12. <th class="table-warning text-center font-weight-bolder"colspan="15">原始运单号</th>
  13. <th class="bg-white text-center font-weight-bolder" colspan="15">情况说明</th>
  14. <th>操作</th>
  15. </tr>
  16. <tr>
  17. <th>
  18. <label for="all">
  19. <input id="all" type="checkbox" @click="checkAll($event)" />
  20. </label>
  21. </th>
  22. <th class="">序号</th>
  23. <th class="">置顶</th>
  24. <th class="table-warning">ID</th>
  25. <th class="table-warning">登状态记日期</th>
  26. <th class="table-warning">订单日期</th>
  27. <th class="table-warning">客户</th>
  28. <th class="table-warning">店铺</th>
  29. <th class="table-warning">原始订单号</th>
  30. <th class="table-warning">原始承运商</th>
  31. <th class="table-warning">原始运单号</th>
  32. <th class="table-warning">收货人名称</th>
  33. <th class="table-warning">收货人电话</th>
  34. <th class="table-warning">省</th>
  35. <th class="table-warning">市</th>
  36. <th class="table-warning">区</th>
  37. <th class="table-warning">收货人地址</th>
  38. <th class="table-warning">原始商品明细</th>
  39. <th class="bg-white">返回商品明细</th>
  40. <th class="bg-white">退单状态</th>
  41. <th class="bg-white">情况说明</th>
  42. <th class="bg-white">问题类别</th>
  43. <th class="bg-white">处理结果说明</th>
  44. <th class="bg-white">二次订单号</th>
  45. <th class="bg-white">二次承运商</th>
  46. <th class="bg-white">二次运单号</th>
  47. <th class="bg-white">二次商品明细</th>
  48. <th class="bg-white">最终转态</th>
  49. <th class="bg-white">承运商赔偿金额</th>
  50. <th class="bg-white">承运商快递减免</th>
  51. <th class="bg-white">宝石赔偿金额</th>
  52. <th class="bg-white">宝石快递减免</th>
  53. <th class="bg-white">事故责任方</th>
  54. <th>操作</th>
  55. </tr>
  56. {{-- <tr v-for="(orderIssue,index) as orderIssues"></tr>--}}
  57. </table>
  58. </div>
  59. </div>
  60. </div>
  61. @endsection
  62. @section('lastScript')
  63. <style type="text/css">
  64. .bg-light-yellow{
  65. background: #fffff8;
  66. }
  67. .top{
  68. padding-top: 0px;
  69. padding-left: 10px;
  70. margin-top: -4px;
  71. margin-left: -5px;
  72. line-height: 55px;
  73. position: absolute;
  74. animation: anima;
  75. animation-duration: 3s;
  76. animation-timing-function: cubic-bezier(0,0,1,1);
  77. animation-direction: alternate;
  78. animation-play-state: running;
  79. -webkit-animation-name: anima;
  80. -webkit-animation-duration: 3s;
  81. -webkit-animation-timing-function: cubic-bezier(0,0,1,1);
  82. -webkit-animation-iteration-count: infinite;
  83. -webkit-animation-direction: alternate;
  84. -webkit-animation-play-state: running;
  85. }
  86. </style>
  87. <script type="text/javascript" src="{{asset('js/queryForm/queryForm.js')}}"></script>
  88. <script>
  89. let listVue = new Vue({
  90. el:'#list',
  91. data:{
  92. checkDate:[],
  93. from:'',
  94. },
  95. mounted:function(){
  96. $("#list").removeClass("d-none");
  97. // let data = [[
  98. // {name:['created_at_start','created_at_end'],type:'dataTime_dataTime',tip:['订单起始日期','订单结束日期']},
  99. // {name:'owner_id',type:'search_select',tip:'选择要显示的客户',placeholder:['客户',''],
  100. // data:[{name:'',value:''}]
  101. // },
  102. // {
  103. //
  104. // }
  105. // ],
  106. // []];
  107. // this.form = new query({
  108. // el:'form_div',
  109. // condition:data,
  110. // })
  111. // this.form.init();
  112. },
  113. methods:{
  114. }
  115. })
  116. </script>
  117. @endsection