EnquiryPublicBlackEmailList.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <template>
  2. <a-card :bordered="false">
  3. <!-- 查询区域 -->
  4. <div class="table-page-search-wrapper">
  5. <a-form layout="inline" @keyup.enter.native="reload">
  6. <a-row :gutter="24">
  7. <a-col :md="6" :sm="12">
  8. <a-form-item label="邮箱">
  9. <a-input placeholder="输入邮箱查询" v-model:value="queryParam.email"></a-input>
  10. </a-form-item>
  11. </a-col>
  12. <a-col :md="6" :sm="10">
  13. <a-form-item label="黑白名单">
  14. <a-select allowClear v-model:value="queryParam.blackOrWhite" placeholder="输入黑白名单类型">
  15. <a-select-option value="0">黑名单</a-select-option>
  16. <a-select-option value="1">白名单</a-select-option>
  17. </a-select>
  18. </a-form-item>
  19. </a-col>
  20. <a-col :md="6" :sm="8" style="justify-content: center;align-items: center;">
  21. <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
  22. <a-button type="primary" @click="reload">
  23. 查询
  24. </a-button>
  25. <a-button ghost type="primary" @click="searchReset" style="margin-left: 8px">重置</a-button>
  26. </span>
  27. </a-col>
  28. </a-row>
  29. </a-form>
  30. </div>
  31. <!-- 查询区域-END -->
  32. <!-- table区域-begin -->
  33. <!--引用表格-->
  34. <BasicTable @register="registerTable" :rowSelection="rowSelection">
  35. <!--插槽:table标题-->
  36. <template #tableTitle>
  37. <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
  38. <a-dropdown v-if="selectedRowKeys.length > 0">
  39. <template #overlay>
  40. <a-menu>
  41. <a-menu-item key="1" @click="batchHandleDelete">
  42. <Icon icon="ant-design:delete-outlined"></Icon>
  43. 删除
  44. </a-menu-item>
  45. </a-menu>
  46. </template>
  47. <a-button>批量操作
  48. <Icon icon="mdi:chevron-down"></Icon>
  49. </a-button>
  50. </a-dropdown>
  51. </template>
  52. <!--操作栏-->
  53. <template #action="{ record }">
  54. <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
  55. </template>
  56. <template #bodyCell="{ column, record, index, text }">
  57. <template v-if="column.dataIndex === 'blackOrWhite'">
  58. <span>
  59. <a-tag v-if="record.blackOrWhite === 0" color="red">黑名单</a-tag>
  60. <a-tag v-else>白名单</a-tag>
  61. </span>
  62. </template>
  63. <template v-if="column.dataIndex === 'wasteEnquiryNum'">
  64. <span>
  65. <span v-if="text === '' || text === null || text === 0">0</span>
  66. <a v-else @click='wasteNumVisible(record.email)'>{{ text }}</a>
  67. </span>
  68. </template>
  69. <template v-if="column.dataIndex === 'action'">
  70. <span>
  71. <a @click="handleEdit(record)">编辑</a>
  72. <a-divider type="vertical" />
  73. <a-dropdown>
  74. <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
  75. <a-menu slot="overlay">
  76. <a-menu-item>
  77. <a @click="handleDetail(record)">详情</a>
  78. </a-menu-item>
  79. <a-menu-item>
  80. <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
  81. <a>删除</a>
  82. </a-popconfirm>
  83. </a-menu-item>
  84. </a-menu>
  85. </a-dropdown>
  86. </span>
  87. </template>
  88. </template>
  89. </BasicTable>
  90. <enquiry-public-black-email-modal ref="modalFormRef" @ok="reload()"></enquiry-public-black-email-modal>
  91. <xp-recycle-bin-modal ref="XpRecycleBinModalRef"/>
  92. </a-card>
  93. </template>
  94. <script lang="ts" name="EnquiryPublicBlackEmailList" setup>
  95. import '/@/assets/less/TableExpand.less';
  96. import '/@/assets/less/common.less';
  97. import {batchDelete, deleteOne, getExportUrl, getImportUrl, list} from './publicBlackEmail.api';
  98. import EnquiryPublicBlackEmailModal from './modules/EnquiryPublicBlackEmailModal.vue';
  99. import XpRecycleBinModal from './modules/XpRecycleBinModal.vue';
  100. import {defineComponent, nextTick, onMounted, reactive, ref} from "vue";
  101. import {columns} from './publicBlackEmail.data';
  102. import {BasicTable, TableAction} from "@/components/Table";
  103. import {useListPage} from "@/hooks/system/useListPage";
  104. const XpRecycleBinModalRef = ref();
  105. const modalFormRef = ref();
  106. const description = ref<String>("询盘公共邮箱黑名单管理页面");
  107. let queryParam = reactive<any>({});
  108. const dictOptions = ref({});
  109. const superFieldList = ref([]);
  110. //注册table数据
  111. const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
  112. tableProps: {
  113. title: '公共邮箱黑名单',
  114. api: list,
  115. columns: columns,
  116. canResize: false,
  117. useSearchForm: false,
  118. actionColumn: {
  119. width: 180,
  120. fixed: 'right',
  121. },
  122. striped: true,
  123. bordered: false,
  124. beforeFetch: (params) => {
  125. return Object.assign(params, queryParam);
  126. },
  127. },
  128. exportConfig: {
  129. name: '询盘列表',
  130. url: getExportUrl,
  131. params: queryParam,
  132. },
  133. importConfig: {
  134. url: getImportUrl,
  135. success: handleSuccess,
  136. },
  137. });
  138. const [registerTable, { reload, clearSelectedRowKeys, updateTableDataRecord, findTableDataRecord, getDataSource }, { rowSelection, selectedRowKeys }] = tableContext;
  139. onMounted(() => {
  140. getSuperFieldList();
  141. })
  142. function getSuperFieldList(){
  143. let fieldList=[];
  144. fieldList.push({type:'string',value:'email',text:'邮箱',dictCode:''})
  145. superFieldList.value = fieldList
  146. }
  147. async function wasteNumVisible(email){
  148. await nextTick();
  149. if (XpRecycleBinModalRef.value && XpRecycleBinModalRef.value.init) {
  150. XpRecycleBinModalRef.value.init(email);
  151. }
  152. }
  153. function handleEdit (record){
  154. modalFormRef.value.title = "编辑";
  155. modalFormRef.value.edit(record);
  156. modalFormRef.value.disableSubmit = false;
  157. }
  158. /**
  159. * 操作栏
  160. */
  161. function getTableAction(record) {
  162. return [
  163. {
  164. label: '编辑',
  165. onClick: handleEdit.bind(null, record),
  166. },
  167. ];
  168. }
  169. /**
  170. * 详情
  171. */
  172. function handleDetail(record: Recordable) {
  173. modalFormRef.value.disableSubmit = true;
  174. modalFormRef.value.edit(record);
  175. }
  176. /**
  177. * 下拉操作栏
  178. */
  179. function getDropDownAction(record) {
  180. return [
  181. {
  182. label: '详情',
  183. onClick: handleDetail.bind(null, record),
  184. }, {
  185. label: '删除',
  186. popConfirm: {
  187. title: '是否确认删除',
  188. confirm: handleDelete.bind(null, record),
  189. placement: 'topLeft',
  190. }
  191. }
  192. ]
  193. }
  194. /**
  195. * 新增事件
  196. */
  197. function handleAdd() {
  198. modalFormRef.value.disableSubmit = false;
  199. modalFormRef.value.add();
  200. }
  201. /**
  202. * 成功回调
  203. */
  204. function handleSuccess() {
  205. (selectedRowKeys.value = []) && reload();
  206. }
  207. /**
  208. * 删除事件
  209. */
  210. async function handleDelete(record) {
  211. await deleteOne({ id: record.id }, handleSuccess);
  212. }
  213. /**
  214. * 批量删除事件
  215. */
  216. async function batchHandleDelete() {
  217. await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
  218. }
  219. function searchReset() {
  220. queryParam = {}
  221. reload();
  222. clearSelectedRowKeys();
  223. }
  224. </script>
  225. <style>
  226. .table-page-search-wrapper {
  227. display: block;
  228. }
  229. </style>