paramTable.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <div>
  3. <table>
  4. <tbody>
  5. <tr class="title">
  6. <th width="250px">parameters</th>
  7. <th width="250px">type</th>
  8. <th width="250px" v-if="colShow">required</th>
  9. <th width="250px">description</th>
  10. </tr>
  11. <template>
  12. <tr v-for="(items, key) in data" :key="key">
  13. <td>{{ items.parameters }}</td>
  14. <td>{{ items.type }}</td>
  15. <td v-if="colShow">{{ items.required }}</td>
  16. <td>{{ items.description }}</td>
  17. </tr>
  18. </template>
  19. </tbody>
  20. </table>
  21. </div>
  22. </template>
  23. <script>
  24. export default {
  25. props: {
  26. data: {},
  27. colShow: { type: Boolean, default: false },
  28. },
  29. };
  30. </script>
  31. <style lang="scss" scoped>
  32. table {
  33. // border-collapse: collapse;
  34. font-size: 16px;
  35. text-align: left;
  36. overflow: hidden;
  37. border-right: 1px solid #686868;
  38. border-top: 1px solid #686868;
  39. border-spacing: 0;
  40. tr {
  41. height: 40px;
  42. &:nth-child(1) {
  43. background-color: #e90000;
  44. }
  45. th {
  46. border-left: 1px solid #686868;
  47. border-bottom: 1px solid #686868;
  48. vertical-align: middle;
  49. color: #fff;
  50. font-family: ProximaNova-Semibold;
  51. padding:0 5px;
  52. }
  53. td {
  54. border-left: 1px solid #686868;
  55. border-bottom: 1px solid #686868;
  56. vertical-align: middle;
  57. color: #4a596c;
  58. padding:0 5px;
  59. }
  60. }
  61. }
  62. </style>