index.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. import { default } from '../../../../CABaggageData2.0/src/components/BackButton/index.vue';
  2. <template>
  3. <el-table
  4. v-el-table-infinite-scroll="load"
  5. :row-key="props.tableProperty.rowKey ? props.tableProperty.rowKey : tablePropertyDefault.rowKey"
  6. :row-style="rowStyle"
  7. :data="props.tableData"
  8. :height=" props.tableProperty.height ? props.tableProperty.height : tablePropertyDefault.height"
  9. :max-height=" props.tableProperty.maxHeight ? props.tableProperty.maxHeight : tablePropertyDefault.maxHeight"
  10. :stripe="props.tableProperty.stripe ? props.tableProperty.stripe : tablePropertyDefault.stripe"
  11. :border="props.tableProperty.border ? props.tableProperty.border : tablePropertyDefault.border"
  12. :highlight-current-row="props.tableProperty.highlightCurrentRow ? props.tableProperty.highlightCurrentRow : tablePropertyDefault.highlightCurrentRow"
  13. :header-cell-class-name=" props.tableProperty.headerRowClassName ? props.tableProperty.headerRowClassName : tablePropertyDefault.headerRowClassName"
  14. :tooltip-effect="props.tableProperty.tooltipEffect ? props.tableProperty.tooltipEffect : tablePropertyDefault.tooltipEffect"
  15. :show-summary="props.tableProperty.showSummary ? props.tableProperty.showSummary : tablePropertyDefault.showSummary"
  16. :row-class-name="tableRowClassName"
  17. :cell-class-name="cellClassName"
  18. >
  19. <!-- label-class-name 可通过 tableHeader中传入class来修改某一个或某一类表头的样式-->
  20. <el-table-column
  21. class="infinite-list-item"
  22. v-for="(items, index) in props.tableHeader"
  23. :key="index"
  24. :label="items.label"
  25. :prop="items.key"
  26. :width="props.tableColumnProperty.width"
  27. :sortable="items.sortable ? items.sortable : props.tableColumnProperty.sortable"
  28. :show-overflow-tooltip="props.tableColumnProperty.showOverflowTooltip"
  29. :align="items.align ? items.align : props.tableColumnProperty.align"
  30. :header-align="items.headerAlign ? items.headerAlign : props.tableColumnProperty.headerAlign"
  31. :label-class-name="items.lableClass ? items.lableClass : ''"
  32. >
  33. <template #default="scope">
  34. <!-- 枚举值则为 items.key+'-enum' -->
  35. {{ scope.row[items.key+'-enum'] ? scope.row[items.key+'-enum']:scope.row[items.key]}}
  36. </template>
  37. </el-table-column>
  38. <el-table-column
  39. v-if="props.tableBtnGroup.length"
  40. label="操作"
  41. :align="props.tableColumnProperty.align"
  42. :width="BtnGroupWidth"
  43. >
  44. <template #default="scope">
  45. <el-button
  46. v-for="(btn, index) in props.tableBtnGroup"
  47. :key="index"
  48. size="small"
  49. @click="handleClick(scope.$index, scope.row, btn.param)"
  50. :class="btn.className"
  51. >{{ btn.name }}</el-button
  52. >
  53. </template>
  54. </el-table-column>
  55. </el-table>
  56. <!-- <ul v-infinite-scroll="load" class="infinite-list" style="overflow: auto">
  57. <li v-for="i in count" :key="i" class="infinite-list-item">{{ i }}</li>
  58. </ul> -->
  59. </template>
  60. <script setup lang="ts">
  61. //表格参数
  62. const tablePropertyDefault = {
  63. height: "100%",
  64. maxHeight: "100%",
  65. stripe: true,
  66. border: true,
  67. highlightCurrentRow: false,
  68. rowClassName: "rowClass",
  69. headerRowClassName: "headerRowClass",
  70. tooltipEffect: "light",
  71. showSummary: false,
  72. rowKey: "",
  73. };
  74. const props = defineProps({
  75. //表头参数数组
  76. tableHeader: {
  77. type: Array,
  78. default: [],
  79. },
  80. //表格参数
  81. tableProperty: {
  82. type: Object,
  83. default: {
  84. height: "100%",
  85. maxHeight: "100%",
  86. stripe: true,
  87. border: true,
  88. highlightCurrentRow: false,
  89. rowClassName: "rowClass",
  90. headerRowClassName: "headerRowClass",
  91. tooltipEffect: "light",
  92. showSummary: false,
  93. rowKey: "",
  94. },
  95. },
  96. //公共表头参数
  97. tableColumnProperty: {
  98. type: Object,
  99. default: {
  100. width: "",
  101. fixed: "",
  102. sortable: false,
  103. showOverflowTooltip: false,
  104. align: "center",
  105. headerAlign: "",
  106. },
  107. },
  108. //操作栏按钮组
  109. tableBtnGroup: {
  110. type: Array,
  111. default: [
  112. // {
  113. // name:"编辑", //按钮名称
  114. // className:"editBtn", //按钮class样式 可以在父组件中定义好此class样式
  115. // param:2 //按钮类型参数
  116. // }
  117. ],
  118. },
  119. //表格数据
  120. tableData: {
  121. type: Array,
  122. default: [],
  123. },
  124. //操作栏宽度
  125. BtnGroupWidth:{
  126. type:String,
  127. default:""
  128. }
  129. });
  130. //向父组件传参 btnClick:点击按钮后 load 触发下拉加载 cellClass 修改某一行class的触发条件
  131. const emit = defineEmits(["btnClick", "load","cellClass"]);
  132. //按钮点击index为当前行序号 row 为当前行 param按钮类型判断参数由父组件传过来
  133. const handleClick = (index: number, row: Object, param: number) => {
  134. emit("btnClick", index, row, param);
  135. };
  136. //行公共样式
  137. const rowStyle = (row: Object, rowIndex: number) => {
  138. let styleJson: Object = {
  139. height: "50px",
  140. fontSize: "14px",
  141. color: "#101116",
  142. };
  143. return styleJson;
  144. };
  145. //表格行class样式 可通过父组件直接传class名称修改当前行样式
  146. const tableRowClassName = (row: Object, rowIndex: number) => {
  147. if (row.row.rowClass) {
  148. return row.row.rowClass;
  149. }
  150. return "";
  151. };
  152. //给某一格加class
  153. const cellClass=ref("")
  154. const cellClassName = (row: Object) => {
  155. emit("cellClass",row)
  156. return cellClass.value;
  157. };
  158. //滚动分页加载
  159. const load = () => {
  160. emit("load", true);
  161. };
  162. defineExpose({
  163. cellClass
  164. })
  165. </script>
  166. <style scoped lang="scss">
  167. .infinite-list {
  168. height: 300px;
  169. padding: 0;
  170. margin: 0;
  171. list-style: none;
  172. }
  173. .infinite-list .infinite-list-item {
  174. display: flex;
  175. align-items: center;
  176. justify-content: center;
  177. height: 50px;
  178. background: var(--el-color-primary-light-9);
  179. margin: 10px;
  180. color: var(--el-color-primary);
  181. }
  182. .infinite-list .infinite-list-item + .list-item {
  183. margin-top: 10px;
  184. }
  185. ::v-deep.el-table .rowClass {
  186. height: 40px;
  187. font-size: 14px;
  188. color: #101116;
  189. }
  190. ::v-deep.el-table .headerRowClass {
  191. height: 40px;
  192. background: #ffffff;
  193. font-size: 14px;
  194. font-weight: bold;
  195. color: #101116;
  196. }
  197. ::v-deep.el-table .editBtn {
  198. background: #ffffff;
  199. border: 1px solid #f79ec6;
  200. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.06);
  201. border-radius: 4px;
  202. font-size: 12px;
  203. font-weight: 400;
  204. color: #ac014d;
  205. }
  206. ::v-deep.el-table .delBtn {
  207. background: #eb2f3b;
  208. box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.06);
  209. border-radius: 4px;
  210. font-size: 12px;
  211. font-weight: 400;
  212. color: #ffffff;
  213. border: none;
  214. }
  215. </style>