UnitTable.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <div>
  3. <p class="tb-title">Markup %</p>
  4. <el-table ref="elTable" border :data="tableData" :highlight-current-row=false :style="{ width: operateWith }"
  5. :header-cell-style="{
  6. backgroundColor: '#fff',
  7. color: '#606266', fontWeight: 500, fontSize: '16px',
  8. }">
  9. <template v-for="item in tableColumns">
  10. <el-table-column v-if="item.isText" align="center" :key="item.prop" :prop="item.prop" :label="item.label"
  11. :formatter="item.formatter" :width="item.width" :sortable="item.sortable"></el-table-column>
  12. <el-table-column v-if="!item.isText" :key="item.prop" :prop="item.prop" :label="item.label"
  13. :formatter="item.formatter" :width="item.width" :align="item.align ? item.align : 'center'"
  14. :sortable="item.sortable">
  15. <template v-slot="{ row, $index }">
  16. <!-- 编辑输入框 -->
  17. <el-input @input="saveUnitData(row, $index)" v-model="row[item.prop]" class="edit-input" size="small"
  18. type="number" min="0" />
  19. </template>
  20. </el-table-column>
  21. </template>
  22. </el-table>
  23. </div>
  24. </template>
  25. <script>
  26. export default {
  27. props: {
  28. tableData: {
  29. type: Array,
  30. default: [],
  31. },
  32. tableColumns: {
  33. type: Array,
  34. default: [],
  35. },
  36. operateWith: {
  37. type: String,
  38. default: "100%",
  39. },
  40. selectionShow: {
  41. type: Boolean,
  42. default: false,
  43. },
  44. handleShow: {
  45. type: Boolean,
  46. default: false,
  47. },
  48. },
  49. methods: {
  50. saveUnitData(row, idx) {
  51. this.tableData[idx] = row
  52. localStorage.setItem('unit', JSON.stringify(this.tableData))
  53. }
  54. },
  55. };
  56. </script>
  57. <style lang="scss" scoped>
  58. .tb-title {
  59. background-color: #E90000;
  60. color: #fff;
  61. font-size: 16px;
  62. text-align: center;
  63. padding: 9px 0;
  64. margin-top: 20px;
  65. font-weight: 600;
  66. }
  67. :deep(.el-table__body) {
  68. // margin-bottom:20px;
  69. // tr:hover>td.el-table__cell {
  70. // background-color: rgba(0, 0, 0, 0) !important;
  71. // }
  72. tr:not(:first-child) {
  73. // .is-center:nth-child(2){
  74. // border-right: 1px solid #EFEFEF;
  75. // }
  76. td:nth-of-type(n+3) {
  77. display: none;
  78. }
  79. }
  80. .el-table__cell {
  81. padding: 10px 0;
  82. input {
  83. text-align: center;
  84. }
  85. }
  86. }
  87. :deep(.is-center:nth-child(1)) {
  88. border-right: 1px solid #EFEFEF;
  89. }
  90. :deep(.el-input__inner) {
  91. padding-right: 0;
  92. }
  93. </style>