NormalTable.vue 7.1 KB

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