approvalProcessConfigList.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. <template>
  2. <div class="p-2">
  3. <!--查询区域-->
  4. <div class="jeecg-basic-table-form-container">
  5. <a-form ref="formRef" @keyup.enter.native="reload" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
  6. <a-row :gutter="24">
  7. <a-col :lg="8">
  8. <a-form-item name="tableId">
  9. <template #label><span title="表单(tableId)">表单(tableId)</span></template>
  10. <J-input v-model:value="queryParam.tableId" placeholder="" />
  11. </a-form-item>
  12. </a-col>
  13. <a-col :lg="8">
  14. <a-form-item name="status">
  15. <template #label><span title="是否启用(status)">关闭(close)</span></template>
  16. <JDictSelectTag v-model:value="queryParam.status" placeholder="请选择" dictCode="yes_or_no" style="width: 100%" />
  17. </a-form-item>
  18. </a-col>
  19. <template v-if="toggleSearchStatus">
  20. <a-col :lg="8">
  21. <a-form-item name="tableName">
  22. <template #label><span title="描述(tableName)">描述(tableName)</span></template>
  23. <J-input v-model:value="queryParam.tableName" placeholder="" />
  24. </a-form-item>
  25. </a-col>
  26. </template>
  27. <a-col :xl="6" :lg="7" :md="8" :sm="24">
  28. <span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
  29. <a-col :lg="6">
  30. <a-button type="primary" preIcon="ant-design:search-outlined" @click="reload">查询</a-button>
  31. <a-button preIcon="ant-design:reload-outlined" @click="searchReset" style="margin-left: 8px">重置</a-button>
  32. <a @click="toggleSearchStatus = !toggleSearchStatus" style="margin-left: 8px">
  33. {{ toggleSearchStatus ? '收起' : '展开' }}
  34. <Icon :icon="toggleSearchStatus ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" />
  35. </a>
  36. </a-col>
  37. </span>
  38. </a-col>
  39. </a-row>
  40. </a-form>
  41. </div>
  42. <!--引用表格-->
  43. <BasicTable @register="registerTable" :rowSelection="rowSelection" size="small">
  44. <!--插槽:table标题-->
  45. <template #tableTitle>
  46. <a-button type="primary" v-auth="'baseCode:base_approver_set:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增(add)</a-button>
  47. <a-button type="primary" v-auth="'baseCode:base_approver_set:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls">
  48. 导出(export)</a-button
  49. >
  50. <a-dropdown v-if="selectedRowKeys.length > 0">
  51. <template #overlay>
  52. <a-menu>
  53. <a-menu-item key="1" @click="batchHandleDelete" v-auth="'baseCode:base_approver_set:deleteBatch'">
  54. <Icon icon="ant-design:delete-outlined" />
  55. 删除(delete)
  56. </a-menu-item>
  57. </a-menu>
  58. </template>
  59. <a-button v-auth="'baseCode:base_approver_set:deleteBatch'"
  60. >批量操作
  61. <Icon icon="mdi:chevron-down" />
  62. </a-button>
  63. </a-dropdown>
  64. </template>
  65. <!--操作栏-->
  66. <template #action="{ record }">
  67. <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
  68. </template>
  69. <!--字段回显插槽-->
  70. <template #bodyCell="{ column, record, index, text }"> </template>
  71. <template #viewFile="props">
  72. </template>
  73. </BasicTable>
  74. <!-- 表单区域 -->
  75. <approvalProcessConfigModal @register="registerModal" @success="handleSuccess" />
  76. </div>
  77. </template>
  78. <script lang="ts" name="approvalProcessConfig" setup>
  79. import { ref, reactive, computed, unref, onMounted } from 'vue';
  80. import { BasicTable, useTable, TableAction } from '/@/components/Table';
  81. import { useListPage } from '/@/hooks/system/useListPage';
  82. import { useModal } from '/@/components/Modal';
  83. import approvalProcessConfigModal from './components/approvalProcessConfigModal.vue';
  84. import { columns} from './approvalProcessConfigForm.data';
  85. import {list,deleteOne,batchDelete, getImportUrl, getExportUrl,} from './approvalProcessConfigForm.api';
  86. import {JInput,JDictSelectTag } from '/@/components/Form';
  87. import { cloneDeep } from 'lodash-es';
  88. const formRef = ref();
  89. const queryParam = reactive<any>({});
  90. //注册model
  91. const [registerModal, { openModal }] = useModal();
  92. //注册table数据
  93. const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
  94. tableProps: {
  95. title: '审批流程配置',
  96. api: list,
  97. columns,
  98. canResize: false,
  99. useSearchForm: false,
  100. actionColumn: {
  101. width: 300,
  102. fixed: 'right',
  103. },
  104. scroll: {
  105. x: '1200px',
  106. y:'calc(100vh - 400px)',
  107. },
  108. beforeFetch: async (params) => {
  109. let rangerQuery = await setRangeQuery();
  110. return Object.assign(params, rangerQuery);
  111. },
  112. },
  113. exportConfig: {
  114. name: '审批流程配置',
  115. url: getExportUrl,
  116. params: queryParam,
  117. },
  118. importConfig: {
  119. url: getImportUrl,
  120. success: handleSuccess,
  121. },
  122. });
  123. const [registerTable, { reload }, { rowSelection, selectedRowKeys }] = tableContext;
  124. /**
  125. * 高级查询事件
  126. */
  127. function handleSuperQuery(params) {
  128. Object.keys(params).map((k) => {
  129. queryParam[k] = params[k];
  130. });
  131. reload();
  132. }
  133. /**
  134. * 新增事件
  135. */
  136. function handleAdd() {
  137. openModal(true, {
  138. isUpdate: false,
  139. showFooter: true,
  140. isRevise: false,
  141. });
  142. }
  143. /**
  144. * 编辑事件
  145. */
  146. function handleEdit(record: Recordable) {
  147. openModal(true, {
  148. record,
  149. isUpdate: true,
  150. showFooter: true,
  151. isRevise: false,
  152. });
  153. }
  154. /**
  155. * 详情
  156. */
  157. function handleDetail(record: Recordable) {
  158. openModal(true, {
  159. record,
  160. isUpdate: true,
  161. showFooter: false,
  162. });
  163. }
  164. /**
  165. * 删除事件
  166. */
  167. async function handleDelete(record) {
  168. await deleteOne({ id: record.id }, handleSuccess);
  169. }
  170. /**
  171. * 批量删除事件
  172. */
  173. async function batchHandleDelete() {
  174. await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
  175. }
  176. /**
  177. * 成功回调
  178. */
  179. function handleSuccess() {
  180. (selectedRowKeys.value = []) && reload();
  181. }
  182. /**
  183. * 操作栏
  184. */
  185. function getTableAction(record) {
  186. return [
  187. {
  188. label: '编辑(edit)',
  189. onClick: handleEdit.bind(null, record),
  190. auth: 'baseCode:base_approver_set:edit',
  191. ifShow: record.submit == '0' || !record.submit,
  192. },
  193. ];
  194. }
  195. /**
  196. * 下拉操作栏
  197. */
  198. function getDropDownAction(record) {
  199. return [
  200. {
  201. label: '详情(detail)',
  202. onClick: handleDetail.bind(null, record),
  203. },
  204. {
  205. label: '删除(delete)',
  206. popConfirm: {
  207. title: '是否确认删除',
  208. confirm: handleDelete.bind(null, record),
  209. placement: 'topLeft',
  210. },
  211. auth: 'baseCode:base_approver_set:delete',
  212. ifShow: record.submit == '0' || !record.submit,
  213. },
  214. ];
  215. }
  216. /* ----------------------以下为原生查询需要添加的-------------------------- */
  217. const toggleSearchStatus = ref<boolean>(false);
  218. const labelCol = reactive({
  219. xs: 24,
  220. sm: 9,
  221. });
  222. const wrapperCol = reactive({
  223. xs: 24,
  224. sm: 15,
  225. });
  226. const labelCol1 = reactive({
  227. xs: 24,
  228. sm: 12,
  229. });
  230. const wrapperCol1 = reactive({
  231. xs: 24,
  232. sm: 12,
  233. });
  234. /**
  235. * 重置
  236. */
  237. function searchReset() {
  238. formRef.value.resetFields();
  239. selectedRowKeys.value = [];
  240. //刷新数据
  241. reload();
  242. }
  243. let rangeField = 'billDate,';
  244. /**
  245. * 设置范围查询条件
  246. */
  247. async function setRangeQuery() {
  248. let queryParamClone = cloneDeep(queryParam);
  249. if (rangeField) {
  250. let fieldsValue = rangeField.split(',');
  251. fieldsValue.forEach((item) => {
  252. if (queryParamClone[item]) {
  253. let range = queryParamClone[item];
  254. queryParamClone[item + '_begin'] = range[0];
  255. queryParamClone[item + '_end'] = range[1];
  256. delete queryParamClone[item];
  257. } else {
  258. queryParamClone[item + '_begin'] = '';
  259. queryParamClone[item + '_end'] = '';
  260. }
  261. });
  262. }
  263. return queryParamClone;
  264. }
  265. </script>
  266. <style lang="less" scoped>
  267. .jeecg-basic-table-form-container {
  268. padding: 0;
  269. .table-page-search-submitButtons {
  270. display: block;
  271. margin-bottom: 8px;
  272. white-space: nowrap;
  273. }
  274. .query-group-cust {
  275. min-width: 100px !important;
  276. }
  277. .query-group-split-cust {
  278. width: 30px;
  279. display: inline-block;
  280. text-align: center;
  281. }
  282. .ant-form-item:not(.ant-form-item-with-help) {
  283. margin-bottom: 8px;
  284. height: 32px;
  285. }
  286. :deep(.ant-picker),
  287. :deep(.ant-input-number) {
  288. width: 100%;
  289. }
  290. }
  291. </style>