AdwebEnquiryList.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. <template>
  2. <div class="p-2">
  3. <!--查询区域-->
  4. <div class="jeecg-basic-table-form-container">
  5. <a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
  6. <a-row :gutter="24">
  7. <a-col :lg="6">
  8. <a-form-item name="siteCode">
  9. <template #label><span title="站点code,关联站点表">站点co</span></template>
  10. <a-input placeholder="请输入站点code,关联站点表" v-model:value="queryParam.siteCode" allow-clear ></a-input>
  11. </a-form-item>
  12. </a-col>
  13. <a-col :xl="6" :lg="7" :md="8" :sm="24">
  14. <span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
  15. <a-col :lg="6">
  16. <a-button type="primary" preIcon="ant-design:search-outlined" @click="searchQuery">查询</a-button>
  17. <a-button type="primary" preIcon="ant-design:reload-outlined" @click="searchReset" style="margin-left: 8px">重置</a-button>
  18. <a @click="toggleSearchStatus = !toggleSearchStatus" style="margin-left: 8px">
  19. {{ toggleSearchStatus ? '收起' : '展开' }}
  20. <Icon :icon="toggleSearchStatus ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" />
  21. </a>
  22. </a-col>
  23. </span>
  24. </a-col>
  25. </a-row>
  26. </a-form>
  27. </div>
  28. <!--引用表格-->
  29. <BasicTable @register="registerTable" :rowSelection="rowSelection">
  30. <!--插槽:table标题-->
  31. <template #tableTitle>
  32. <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
  33. <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
  34. <j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
  35. <a-dropdown v-if="selectedRowKeys.length > 0">
  36. <template #overlay>
  37. <a-menu>
  38. <a-menu-item key="1" @click="batchHandleDelete">
  39. <Icon icon="ant-design:delete-outlined"></Icon>
  40. 删除
  41. </a-menu-item>
  42. </a-menu>
  43. </template>
  44. <a-button>批量操作
  45. <Icon icon="mdi:chevron-down"></Icon>
  46. </a-button>
  47. </a-dropdown>
  48. <!-- 高级查询 -->
  49. <super-query :config="superQueryConfig" @search="handleSuperQuery" />
  50. </template>
  51. <!--操作栏-->
  52. <template #action="{ record }">
  53. <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
  54. </template>
  55. <template v-slot:bodyCell="{ column, record, index, text }">
  56. </template>
  57. </BasicTable>
  58. <!-- 表单区域 -->
  59. <AdwebEnquiryModal ref="registerModal" @success="handleSuccess"></AdwebEnquiryModal>
  60. </div>
  61. </template>
  62. <script lang="ts" name="adweb-adwebEnquiry" setup>
  63. import { ref, reactive } from 'vue';
  64. import { BasicTable, useTable, TableAction } from '/@/components/Table';
  65. import { useListPage } from '/@/hooks/system/useListPage';
  66. import { columns, superQuerySchema } from './AdwebEnquiry.data';
  67. import { list, deleteOne, batchDelete, getImportUrl, getExportUrl } from './AdwebEnquiry.api';
  68. import { downloadFile } from '/@/utils/common/renderUtils';
  69. import AdwebEnquiryModal from './components/AdwebEnquiryModal.vue'
  70. import { useUserStore } from '/@/store/modules/user';
  71. const formRef = ref();
  72. const queryParam = reactive<any>({});
  73. const toggleSearchStatus = ref<boolean>(false);
  74. const registerModal = ref();
  75. const userStore = useUserStore();
  76. //注册table数据
  77. const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
  78. tableProps: {
  79. title: '询盘信息存储表单',
  80. api: list,
  81. columns,
  82. canResize:false,
  83. useSearchForm: false,
  84. actionColumn: {
  85. width: 120,
  86. fixed: 'right',
  87. },
  88. beforeFetch: (params) => {
  89. return Object.assign(params, queryParam);
  90. },
  91. },
  92. exportConfig: {
  93. name: "询盘信息存储表单",
  94. url: getExportUrl,
  95. params: queryParam,
  96. },
  97. importConfig: {
  98. url: getImportUrl,
  99. success: handleSuccess
  100. },
  101. });
  102. const [registerTable, { reload, collapseAll, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
  103. const labelCol = reactive({
  104. xs:24,
  105. sm:4,
  106. xl:6,
  107. xxl:4
  108. });
  109. const wrapperCol = reactive({
  110. xs: 24,
  111. sm: 20,
  112. });
  113. // 高级查询配置
  114. const superQueryConfig = reactive(superQuerySchema);
  115. /**
  116. * 高级查询事件
  117. */
  118. function handleSuperQuery(params) {
  119. Object.keys(params).map((k) => {
  120. queryParam[k] = params[k];
  121. });
  122. searchQuery();
  123. }
  124. /**
  125. * 新增事件
  126. */
  127. function handleAdd() {
  128. registerModal.value.disableSubmit = false;
  129. registerModal.value.add();
  130. }
  131. /**
  132. * 编辑事件
  133. */
  134. function handleEdit(record: Recordable) {
  135. registerModal.value.disableSubmit = false;
  136. registerModal.value.edit(record);
  137. }
  138. /**
  139. * 详情
  140. */
  141. function handleDetail(record: Recordable) {
  142. registerModal.value.disableSubmit = true;
  143. registerModal.value.edit(record);
  144. }
  145. /**
  146. * 删除事件
  147. */
  148. async function handleDelete(record) {
  149. await deleteOne({ id: record.id }, handleSuccess);
  150. }
  151. /**
  152. * 批量删除事件
  153. */
  154. async function batchHandleDelete() {
  155. await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
  156. }
  157. /**
  158. * 成功回调
  159. */
  160. function handleSuccess() {
  161. (selectedRowKeys.value = []) && reload();
  162. }
  163. /**
  164. * 操作栏
  165. */
  166. function getTableAction(record) {
  167. return [
  168. {
  169. label: '编辑',
  170. onClick: handleEdit.bind(null, record),
  171. },
  172. ];
  173. }
  174. /**
  175. * 下拉操作栏
  176. */
  177. function getDropDownAction(record) {
  178. return [
  179. {
  180. label: '详情',
  181. onClick: handleDetail.bind(null, record),
  182. }, {
  183. label: '删除',
  184. popConfirm: {
  185. title: '是否确认删除',
  186. confirm: handleDelete.bind(null, record),
  187. placement: 'topLeft',
  188. }
  189. }
  190. ]
  191. }
  192. /**
  193. * 查询
  194. */
  195. function searchQuery() {
  196. reload();
  197. }
  198. /**
  199. * 重置
  200. */
  201. function searchReset() {
  202. formRef.value.resetFields();
  203. selectedRowKeys.value = [];
  204. //刷新数据
  205. reload();
  206. }
  207. </script>
  208. <style lang="less" scoped>
  209. .jeecg-basic-table-form-container {
  210. padding: 0;
  211. .table-page-search-submitButtons {
  212. display: block;
  213. margin-bottom: 24px;
  214. white-space: nowrap;
  215. }
  216. .query-group-cust{
  217. min-width: 100px !important;
  218. }
  219. .query-group-split-cust{
  220. width: 30px;
  221. display: inline-block;
  222. text-align: center
  223. }
  224. .ant-form-item:not(.ant-form-item-with-help){
  225. margin-bottom: 16px;
  226. height: 32px;
  227. }
  228. :deep(.ant-picker),:deep(.ant-input-number){
  229. width: 100%;
  230. }
  231. }
  232. </style>