| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <template>
- <table class="info_table">
- <!-- <tr>
- <td class="cell_title" colspan="">前车或后车</td>
- </tr> -->
- <tr>
- <td class="cell_title">前车或后车</td>
- <td class="cell_title">闭式泵A口压力</td>
- <td class="cell_title">闭式泵B口压力</td>
- <td class="cell_title">开式回路压力</td>
- <td class="cell_title">驻车制动压力</td>
- <td class="cell_title">行车制动压力</td>
- </tr>
- <tr v-for="item in grider.slingSys" :key="item.id">
- <td class="cell_title"><span class="fontSpan">{{ item.no }}</span></td>
- <td class="cell_title"><span class="fontSpan">{{ item.weight }}</span></td>
- <td class="cell_title"><span class="fontSpan">{{ item.height }}</span></td>
- <td class="cell_title"><span class="fontSpan">{{ item.quantity }}</span></td>
- <td class="cell_title"><span class="fontSpan">{{ item.quantity }}</span></td>
- <td class="cell_title"><span class="fontSpan">{{ item.quantity }}</span></td>
- </tr>
- </table>
- </template>
- <script>
- export default {
- name: 'TacklingSysMng',
- data() {
- return {
- grider: {}
- }
- },
- methods: {
- show(data) {
- if (data) {
- this.grider = data
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .info_table {
- position: relative;
- overflow: hidden;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- -webkit-box-flex: 1;
- -ms-flex: 1;
- flex: 1;
- width: 100%;
- max-width: 100%;
- //background-color: #FFFFFF;
- font-size: 14px;
- color: white;
- table-layout:fixed;
- .cell_title{
- //background-color: #f7f7f7 !important;
- text-align: center;
- width: 25%;
- }
- .cell_data{
- text-align: center;
- width: 25%;
- }
- td {
- border: 1px solid #dfe6ec;
- padding: 9px 0;
- min-width: 0;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- text-overflow: ellipsis;
- vertical-align: middle;
- position: relative;
- text-align: left;
- // white-space:nowrap;
- // text-overflow:
- // ellipsis;
- // overflow: hidden;
- }
- .fontSpan{
- font-weight: 900;
- color: green;
- }
- }
- </style>
|