index.blade.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. @extends('layouts.app')
  2. @section('title')计费模型-仓储计费@endsection
  3. @section('content')
  4. <div id="nav2">
  5. @component('maintenance.menu')@endcomponent
  6. @component('maintenance.priceModel.storage.menu')@endcomponent
  7. </div>
  8. <div class="container-fluid mt-2" id="container">
  9. <table class="table table-hover table-striped text-nowrap">
  10. <tr>
  11. <th>序号</th>
  12. <th>计费类型</th>
  13. <th>用仓类型</th>
  14. <th>最低起租面积</th>
  15. <th>单价</th>
  16. <th>减免类型</th>
  17. <th>减免值</th>
  18. <th>录入时间</th>
  19. <th>操作</th>
  20. </tr>
  21. <tr v-for="model in models">
  22. <td></td>
  23. </tr>
  24. </table>
  25. </div>
  26. @stop
  27. @section("lastScript")
  28. <script>
  29. new Vue({
  30. el:"#container",
  31. data:{
  32. models : [],
  33. },
  34. });
  35. </script>
  36. @stop