TotalTable.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. <template>
  2. <div class="wrap">
  3. <p class="tb-title" :class="{ 'left': tableType }">
  4. <span>{{ title }}</span>
  5. <span :style="{ width:comWidth + 'px' }" v-if="title=='Sell Price' &&comLocationNum !==1">Total</span>
  6. </p>
  7. <el-table
  8. ref="elTable" border :data="tableData" :header-cell-style="{
  9. backgroundColor: '#fff',
  10. color: '#606266',
  11. fontWeight: 500,
  12. fontSize: '16px'
  13. }" stripe>
  14. <el-table-column
  15. v-for="(item, index) in tableColumns" :key="`${curOrder}-${item.prop}`" :align="item.align ? item.align : 'center'"
  16. :prop="item.prop" :label="item.label" :formatter="item.formatter" :sortable="item.sortable">
  17. <template slot="header" slot-scope="scope">
  18. <div v-if="title=='Buy Price' && comLocationNum === 1">
  19. <el-input
  20. v-show="!item.isFirstColumn"
  21. v-model="item.label"
  22. size="small"
  23. type="number"
  24. @blur="getNumber($event, index)"
  25. :min="min"
  26. />
  27. <span v-show="item.isFirstColumn">{{ item.label }}</span>
  28. </div>
  29. <div v-else>
  30. <span>{{ item.label }}</span>
  31. </div>
  32. </template>
  33. <template slot-scope="scope">
  34. <template v-if="tableType && !item.isFirstColumn">
  35. <span>{{
  36. scope.row[item.prop]
  37. | differencePrice(
  38. curDecoration[item.prop],
  39. indexDecoration[item.prop],
  40. poaConfig
  41. )
  42. }}</span>
  43. </template>
  44. <template v-else>
  45. <span
  46. v-if="(typeof scope.row[item.prop]=='string' && scope.row[item.prop].includes('.') || typeof scope.row[item.prop]=='number') &&
  47. !item.isFirstColumn">$</span>
  48. <span>{{
  49. scope.row[item.prop] ? scope.row[item.prop] : '0.00'
  50. }}</span>
  51. </template>
  52. </template>
  53. </el-table-column>
  54. </el-table>
  55. </div>
  56. </template>
  57. <script>
  58. import { minus as npMinus } from 'number-precision'
  59. export default {
  60. filters: {
  61. differencePrice(a, curDecoVal, indexDecoVal, poaConfig) {
  62. const rep = /^[0-9]+(\.[0-9]*)?$/
  63. if (!rep.test(a)) {
  64. return a || 'Waived';
  65. }
  66. if (poaConfig.includes(curDecoVal) || poaConfig.includes(indexDecoVal)) {
  67. if (curDecoVal === '111' || curDecoVal === '111.00' || indexDecoVal === '111' || indexDecoVal === '111.00') {
  68. return '-';
  69. } else if (curDecoVal === '999' || curDecoVal === '999.00' || indexDecoVal === '999' || indexDecoVal === '999.00') {
  70. return 'POA';
  71. }
  72. } else if (curDecoVal === indexDecoVal) {
  73. return 0;
  74. } else if (+curDecoVal > +indexDecoVal) {
  75. return `-$ ${npMinus(curDecoVal, indexDecoVal)}`;
  76. } else if (+curDecoVal < +indexDecoVal) {
  77. return `+$ ${npMinus(indexDecoVal, curDecoVal)}`;
  78. } else {
  79. return 'Waived';
  80. }
  81. }
  82. },
  83. props: {
  84. tableData: {
  85. type: Array,
  86. default: () => [],
  87. },
  88. tableColumns: {
  89. type: Array,
  90. default: () => [],
  91. },
  92. tableType: {
  93. type: String,
  94. default: '',
  95. },
  96. curDecoration: {
  97. type: Object,
  98. default: () => { },
  99. },
  100. indexDecoration: {
  101. type: Object,
  102. default: () => { },
  103. },
  104. comLocationNum: {
  105. type: Number,
  106. default: 1,
  107. },
  108. curOrder: {
  109. type: String,
  110. default: '',
  111. },
  112. min: {
  113. type: String,
  114. default: '',
  115. },
  116. title: {
  117. type: String,
  118. default: '',
  119. },
  120. },
  121. data() {
  122. return {
  123. poaConfig: ['111', '111.00', '999', '999.00'],
  124. }
  125. },
  126. methods: {
  127. getNumber(e, index) {
  128. if (parseInt(e.target.value) < this.min) {
  129. this.$emit('send-idx', index);
  130. }
  131. },
  132. },
  133. computed: {
  134. comWidth(){
  135. return 800/this.tableColumns.length - 1
  136. }
  137. }
  138. }
  139. </script>
  140. <style lang="scss" scoped>
  141. .wrap{
  142. overflow-x: auto;
  143. }
  144. .tb-title {
  145. background-color: #e90000;
  146. color: #fff;
  147. font-size: 16px;
  148. margin-top: 20px;
  149. font-weight: 600;
  150. display: flex;
  151. span{
  152. display: inline-block;
  153. height: 34px;
  154. line-height: 34px;
  155. text-align: center;
  156. &:nth-child(1){
  157. flex:1;
  158. }
  159. &:nth-child(2){
  160. border-left: 1px solid #EBEEF5;
  161. }
  162. }
  163. }
  164. .left {
  165. background-color: #fff;
  166. color: #000;
  167. text-align: left;
  168. }
  169. pre {
  170. text-align: center;
  171. color: #606266;
  172. font-family: Proxima Nova;
  173. }
  174. :deep(.el-table--scrollable-x ::-webkit-scrollbar) {
  175. display: none;
  176. }
  177. :deep(.is-center:nth-child(1)) {
  178. border-right: 1px solid #efefef;
  179. }
  180. :deep(.cell) {
  181. padding: 0;
  182. // white-space: nowrap;
  183. // text-overflow: clip;
  184. // overflow: visible;
  185. }
  186. :deep(.el-input__inner) {
  187. padding-right: 0;
  188. text-align: center;
  189. }
  190. </style>