| 1234567891011121314151617181920212223242526272829303132333435363738 |
- @extends('layouts.app')
- @section('title')计费模型-仓储计费@endsection
- @section('content')
- <div id="nav2">
- @component('maintenance.menu')@endcomponent
- @component('maintenance.priceModel.storage.menu')@endcomponent
- </div>
- <div class="container-fluid mt-2" id="container">
- <table class="table table-hover table-striped text-nowrap">
- <tr>
- <th>序号</th>
- <th>计费类型</th>
- <th>用仓类型</th>
- <th>最低起租面积</th>
- <th>单价</th>
- <th>减免类型</th>
- <th>减免值</th>
- <th>录入时间</th>
- <th>操作</th>
- </tr>
- <tr v-for="model in models">
- <td></td>
- </tr>
- </table>
- </div>
- @stop
- @section("lastScript")
- <script>
- new Vue({
- el:"#container",
- data:{
- models : [],
- },
- });
- </script>
- @stop
|