NormalTable.vue 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <template>
  2. <div>
  3. <BasicTable @register="registerTable">
  4. <template #action="{ record }">
  5. <TableAction :actions="getActions(record)" :dropDownActions="getDropDownAction(record)" />
  6. </template>
  7. <template #bodyCell="{ column, record }">
  8. <slot name="filterCell" v-bind="{ column, record }"></slot>
  9. </template>
  10. </BasicTable>
  11. <DeviceModal :editID="editID" :fileType="fileType" @register="registerModal" />
  12. </div>
  13. </template>
  14. <script lang="ts" name="system-user" setup>
  15. //ts语法
  16. import { ref, provide, reactive, toRaw, defineExpose } from 'vue';
  17. import { BasicTable, TableAction } from '/@/components/Table';
  18. import { useModal } from '/@/components/Modal';
  19. import DeviceModal from './DeviceModal.vue';
  20. import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
  21. import { useListPage } from '/@/hooks/system/useListPage';
  22. const props = defineProps({
  23. //查询参数
  24. searchParam: {
  25. type: String,
  26. default: '',
  27. },
  28. //菜单树传递参数
  29. nodeParam: {
  30. type: Object,
  31. default: () => {
  32. return {};
  33. },
  34. },
  35. columnsType: {
  36. type: String,
  37. // required: true,
  38. },
  39. columns: {
  40. type: Array,
  41. // required: true,
  42. default: () => [],
  43. },
  44. list: {
  45. type: Function,
  46. required: true,
  47. },
  48. //下载文件接口
  49. downLoad: {
  50. type: Function,
  51. required: true,
  52. },
  53. deleteById: {
  54. type: Function,
  55. required: true,
  56. },
  57. pointList: {
  58. type: Function,
  59. // required: true,
  60. },
  61. designScope: {
  62. type: String,
  63. },
  64. title: {
  65. type: String,
  66. },
  67. });
  68. let fileType = ref(''); //文件类型
  69. let editID = ref(0); //文件ID
  70. const isUpdate = ref(false);
  71. const record = reactive({});
  72. provide('formData', record);
  73. const [registerModal, { openModal, closeModal }] = useModal();
  74. const columnList = getTableHeaderColumns(props.columnsType);
  75. console.log('aaa', columnList);
  76. // 列表页面公共参数、方法
  77. const { tableContext, doRequest } = useListPage({
  78. designScope: props.designScope,
  79. tableProps: {
  80. title: props.title,
  81. api: props.list,
  82. columns: props.columns.length > 0 ? (props.columns as any[]) : columnList,
  83. // size: 'small',
  84. bordered: false,
  85. // formConfig: {
  86. // // labelWidth: 100,
  87. // labelAlign: 'left',
  88. // labelCol: {
  89. // xs: 24,
  90. // sm: 24,
  91. // md: 24,
  92. // lg: 9,
  93. // xl: 7,
  94. // xxl: 5,
  95. // },
  96. // schemas: props.searchFormSchema as any[],
  97. // },
  98. striped: true,
  99. showIndexColumn: true, //是否显示序列号
  100. actionColumn: {
  101. width: 280,
  102. },
  103. useSearchForm: false, //不使用查询条件
  104. // pagination: false, //不使用分页组件
  105. beforeFetch: (params) => {
  106. params.parentId = props.nodeParam.id ? props.nodeParam.id : '';
  107. params.selectFlag = props.nodeParam.id ? false : true;
  108. params.likeFileName = props.searchParam ? props.searchParam : '';
  109. // return Object.assign({ column: '111', order: 'd11' }, params);
  110. // return Object.assign({ parentId: '', selectFlag: true, likeFileName: '' }, params);
  111. },
  112. },
  113. });
  114. //注册table数据
  115. const [registerTable, { reload }, { selectedRowKeys }] = tableContext;
  116. /**
  117. * 编辑事件
  118. */
  119. function handleEdit(data) {
  120. isUpdate.value = true;
  121. Object.assign(record, toRaw(data));
  122. console.log(record, '编辑');
  123. let index = record.fileSuffix.indexOf('.');
  124. fileType.value = record.fileSuffix.substring(index + 1);
  125. editID.value = record.id;
  126. console.log(fileType, '文件格式');
  127. console.log(editID.value, '编辑文件ID');
  128. openModal(true, {
  129. record,
  130. });
  131. }
  132. /**
  133. * 删除事件
  134. */
  135. async function handleDelete(record) {
  136. await props.deleteById({ id: record.id }, reload);
  137. }
  138. //下载文件
  139. function handleDownLoad(record) {
  140. console.log(record, '下载');
  141. props.downLoad({ id: record.id }).then((res) => {
  142. console.log('11111');
  143. console.log(res, '文件下载成功');
  144. let filename = `${record.fileName}`;
  145. downFilePublic(res, filename);
  146. });
  147. }
  148. // 下载公用方法
  149. function downFilePublic(content, fileName) {
  150. const blob = new Blob([content], { type: 'application/xlsx;charset=UTF-8' }); // 构造一个blob对象来处理数据
  151. // 对于<a>标签,只有 Firefox 和 Chrome(内核) 支持 download 属性
  152. // IE10以上支持blob但是依然不支持download
  153. if ('download' in document.createElement('a')) {
  154. // 支持a标签download的浏览器
  155. const link = document.createElement('a'); // 创建a标签
  156. link.download = fileName; // a标签添加属性
  157. link.style.display = 'none';
  158. link.href = URL.createObjectURL(blob);
  159. document.body.appendChild(link);
  160. link.click(); // 执行下载
  161. URL.revokeObjectURL(link.href); // 释放url
  162. document.body.removeChild(link); // 释放标签
  163. } else {
  164. // 其他浏览器
  165. navigator.msSaveBlob(blob, fileName);
  166. }
  167. }
  168. /**
  169. * 操作列定义
  170. * @param record
  171. */
  172. function getActions(record) {
  173. return [
  174. {
  175. label: '详情',
  176. onClick: handleEdit.bind(null, record),
  177. },
  178. {
  179. label: '编辑',
  180. onClick: handleEdit.bind(null, record),
  181. },
  182. {
  183. label: '删除',
  184. popConfirm: {
  185. title: '是否确认删除',
  186. confirm: handleDelete.bind(null, record),
  187. },
  188. },
  189. {
  190. label: '下载',
  191. onClick: handleDownLoad.bind(null, record),
  192. },
  193. // {
  194. // label: '审批',
  195. // onClick: handleEdit.bind(null, record),
  196. // },
  197. // {
  198. // label: '查看',
  199. // onClick: handleDetail.bind(null, record),
  200. // },
  201. ];
  202. }
  203. /**
  204. * 下拉操作栏
  205. */
  206. function getDropDownAction(record) {
  207. return [
  208. // {
  209. // label: '删除',
  210. // popConfirm: {
  211. // title: '是否确认删除',
  212. // confirm: handleDelete.bind(null, record),
  213. // },
  214. // },
  215. // {
  216. // label: '查看',
  217. // onClick: handleDetail.bind(null, record),
  218. // },
  219. ];
  220. }
  221. defineExpose({
  222. doRequest,
  223. });
  224. </script>
  225. <style scoped lang="less">
  226. // @ventSpace: zxm;
  227. // @vent-table-no-hover: rgba(43, 135, 255, 0.1);
  228. // @vent-table-hover: rgba(53, 147, 255, 0.2);
  229. // :deep(.zxm-table-row) {
  230. // td {
  231. // background-color: @vent-table-hover !important;
  232. // }
  233. // }
  234. // :deep(.jeecg-basic-table-row__striped) {
  235. // td {
  236. // background-color: @vent-table-no-hover !important;
  237. // }
  238. // }
  239. // ::v-deep .zxm-table-title {
  240. // display: none;
  241. // }
  242. // ::v-deep .zxm-table-thead > tr > th {
  243. // border-top: 0px !important;
  244. // border-left: 0px !important;
  245. // border-right: 0px !important;
  246. // border-bottom: 1px solid #268bc1 !important;
  247. // color: #3beff9 !important;
  248. // }
  249. // ::v-deep .zxm-table-tbody > tr > td {
  250. // border: none;
  251. // }
  252. // ::v-deep .zxm-table-thead {
  253. // background: linear-gradient(to bottom, transparent, rgba(53, 147, 255, 0.5)) !important;
  254. // }
  255. @ventSpace: zxm;
  256. @vent-table-no-hover: #00bfff10;
  257. :deep(.@{ventSpace}-table-cell-row-hover) {
  258. background: #264d8833 !important;
  259. }
  260. :deep(.@{ventSpace}-table-row-selected) {
  261. background: #268bc522 !important;
  262. }
  263. :deep(.@{ventSpace}-table-tbody > tr > td) {
  264. background-color: #0dc3ff05;
  265. }
  266. :deep(.jeecg-basic-table-row__striped) {
  267. td {
  268. background-color: @vent-table-no-hover !important;
  269. }
  270. }
  271. ::v-deep .zxm-table-title {
  272. display: none;
  273. }
  274. </style>