NormalTable.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. <template>
  2. <div style="position: fixed;">
  3. <BasicTable @register="registerTable" :rowSelection="rowSelection">
  4. <template #tableTitle>
  5. <a-button preIcon="ant-design:plus-outlined" type="primary" @click="handleAdd">新增</a-button>
  6. <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
  7. <j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
  8. <a-dropdown v-if="selectedRowKeys.length > 0" :getPopupContainer="getPopupContainer">
  9. <template #overlay>
  10. <a-menu>
  11. <a-menu-item key="1" @click="batchHandleDelete">
  12. <Icon icon="ant-design:delete-outlined" />
  13. 删除
  14. </a-menu-item>
  15. </a-menu>
  16. </template>
  17. <a-button
  18. >批量操作
  19. <Icon style="fontsize: 12px" icon="ant-design:down-outlined" />
  20. </a-button>
  21. </a-dropdown>
  22. </template>
  23. <template #action="{ record }">
  24. <a class="table-action-link" @click="handleEdit(record)">编辑</a>
  25. <a-popconfirm
  26. title="确定删除?"
  27. @confirm="handleDelete(record)"
  28. >
  29. <a class="table-action-link">删除</a>
  30. </a-popconfirm>
  31. </template>
  32. <template #bodyCell="{ column, record }">
  33. <slot name="filterCell" v-bind="{ column, record }"></slot>
  34. </template>
  35. </BasicTable>
  36. <DeviceModal @register="registerModal" @saveOrUpdate="saveOrUpdateHandler" :showTab="showTab" :deviceType="deviceType" />
  37. </div>
  38. </template>
  39. <script lang="ts" name="system-user" setup>
  40. //ts语法
  41. import { ref, provide, reactive, toRaw, defineExpose } from 'vue';
  42. import { BasicTable, TableAction, ActionItem, EditRecordRow, BasicColumn } from '/@/components/Table';
  43. import { useModal } from '/@/components/Modal';
  44. import DeviceModal from './DeviceModal.vue';
  45. // import { getToken } from '/@/utils/auth';
  46. // import { useGlobSetting } from '/@/hooks/setting';
  47. import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
  48. import { useListPage } from '/@/hooks/system/useListPage';
  49. import { getPopupContainer } from '/@/utils';
  50. const props = defineProps({
  51. columnsType: {
  52. type: String,
  53. // required: true,
  54. },
  55. columns: {
  56. type: Array,
  57. // required: true,
  58. default: () => [],
  59. },
  60. searchFormSchema: {
  61. type: Array,
  62. required: true,
  63. default: () => [],
  64. },
  65. formSchema: {
  66. type: Array,
  67. required: true,
  68. },
  69. list: {
  70. type: Function,
  71. required: true,
  72. },
  73. getImportUrl: {
  74. type: String,
  75. required: true,
  76. },
  77. getExportUrl: {
  78. type: String,
  79. required: true,
  80. },
  81. deleteById: {
  82. type: Function,
  83. required: true,
  84. },
  85. batchDelete: {
  86. type: Function,
  87. },
  88. saveOrUpdate: {
  89. type: Function,
  90. required: true,
  91. },
  92. pointList: {
  93. type: Function,
  94. },
  95. showTab: {
  96. type: Boolean,
  97. default: false,
  98. },
  99. designScope: {
  100. type: String,
  101. },
  102. title: {
  103. type: String,
  104. },
  105. deviceType: {
  106. type: String,
  107. },
  108. });
  109. const isUpdate = ref(false);
  110. const record = reactive({});
  111. provide('formSchema', props.formSchema);
  112. provide('isUpdate', isUpdate);
  113. provide('formData', record);
  114. provide('deviceType', props.deviceType);
  115. // const glob = useGlobSetting();
  116. const [registerModal, { openModal, closeModal }] = useModal();
  117. const columnList = getTableHeaderColumns(props.columnsType);
  118. // 列表页面公共参数、方法
  119. const { prefixCls, tableContext, onExportXls, onImportXls, doRequest } = useListPage({
  120. designScope: props.designScope,
  121. tableProps: {
  122. title: props.title,
  123. api: props.list,
  124. columns: props.columns.length > 0 ? (props.columns as any[]) : columnList,
  125. // size: 'small',
  126. // bordered: false,
  127. formConfig: {
  128. // labelWidth: 100,
  129. labelAlign: 'left',
  130. labelCol: {
  131. xs: 24,
  132. sm: 24,
  133. md: 24,
  134. lg: 9,
  135. xl: 7,
  136. xxl: 5,
  137. },
  138. schemas: props.searchFormSchema as any[],
  139. },
  140. striped: true,
  141. actionColumn: {
  142. width: 180,
  143. },
  144. beforeFetch: (params) => {
  145. return Object.assign({ column: 'createTime', order: 'desc' }, params);
  146. },
  147. },
  148. exportConfig: {
  149. name: props.title,
  150. url: props.getExportUrl,
  151. },
  152. importConfig: {
  153. url: props.getImportUrl,
  154. },
  155. });
  156. //注册table数据
  157. const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
  158. const saveOrUpdateHandler = async (params) => {
  159. try {
  160. await props.saveOrUpdate(params, isUpdate.value);
  161. !props.showTab ? closeModal() : '';
  162. await doRequest(props.list, { confirm: false });
  163. } catch (error) {
  164. message.error('保存失败,请联系管理员');
  165. }
  166. };
  167. /**
  168. * 新增事件
  169. */
  170. function handleAdd() {
  171. for (let key in record) {
  172. delete record[key];
  173. }
  174. isUpdate.value = false;
  175. openModal(true);
  176. }
  177. /**
  178. * 编辑事件
  179. */
  180. function handleEdit(data) {
  181. isUpdate.value = true;
  182. Object.assign(record, toRaw(data));
  183. openModal(true, {
  184. record,
  185. });
  186. }
  187. /**
  188. * 删除事件
  189. */
  190. async function handleDelete(record) {
  191. await props.deleteById({ id: record }, reload);
  192. }
  193. /**
  194. * 批量删除事件
  195. */
  196. async function batchHandleDelete() {
  197. doRequest(() => props.batchDelete({ ids: selectedRowKeys.value }));
  198. }
  199. /**
  200. * 查看
  201. */
  202. // function handleDetail(record) {
  203. // iframeUrl.value = `${glob.uploadUrl}/sys/annountCement/show/${record.id}?token=${getToken()}`;
  204. // openDetail(true);
  205. // }
  206. /**
  207. * 操作列定义
  208. * @param record
  209. */
  210. function getActions(record: EditRecordRow, column: BasicColumn): ActionItem[] {
  211. return [
  212. {
  213. label: '编辑',
  214. onClick: handleEdit.bind(null, record, column),
  215. },
  216. {
  217. label: '删除',
  218. popConfirm: {
  219. title: '是否确认删除',
  220. confirm: handleDelete.bind(null, record, column),
  221. },
  222. },
  223. // {
  224. // label: '查看',wss
  225. // onClick: handleDetail.bind(null, record),
  226. // },
  227. ];
  228. }
  229. /**
  230. * 下拉操作栏
  231. */
  232. function getDropDownAction(record) {
  233. return [
  234. // {
  235. // label: '删除',
  236. // popConfirm: {
  237. // title: '是否确认删除',
  238. // confirm: handleDelete.bind(null, record),
  239. // },
  240. // },
  241. // {
  242. // label: '查看',
  243. // onClick: handleDetail.bind(null, record),
  244. // },
  245. ];
  246. }
  247. defineExpose({
  248. doRequest,
  249. });
  250. </script>
  251. <style scoped lang="less">
  252. @ventSpace: zxm;
  253. @vent-table-no-hover: #00bfff10;
  254. :deep(.@{ventSpace}-table-cell-row-hover) {
  255. background: #264d8833 !important;
  256. }
  257. :deep(.@{ventSpace}-table-row-selected) {
  258. background: #268bc522 !important;
  259. }
  260. :deep(.@{ventSpace}-table-tbody > tr > td) {
  261. background-color: #0dc3ff05;
  262. }
  263. :deep(.jeecg-basic-table-row__striped) {
  264. td {
  265. background-color: @vent-table-no-hover !important;
  266. }
  267. }
  268. </style>