AdwebEnquiryRuleList.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <a-card :bordered="false">
  3. <!-- 查询区域 -->
  4. <div class="table-page-search-wrapper">
  5. <a-form ref="formRef" @keyup.enter.native="searchQuery" :model="queryParam">
  6. <a-row :gutter="24">
  7. <a-col :md="6" :sm="12">
  8. <a-form-item label="关键词" name="word">
  9. <a-input allow-clear placeholder="输入关键词查询" v-model:value="queryParam.word" />
  10. </a-form-item>
  11. </a-col>
  12. <a-col :md="6" :sm="10">
  13. <a-form-item label="黑白名单" name="blackOrWhiteList">
  14. <a-select allow-clear v-model:value="queryParam.blackOrWhiteList" 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="10">
  21. <a-form-item label="作用域" name="useStatus">
  22. <a-select allow-clear v-model:value="queryParam.useStatus" placeholder="输入关键词状态类型">
  23. <a-select-option value="0">询盘关键词</a-select-option>
  24. <a-select-option value="1">OpenAi关键词</a-select-option>
  25. </a-select>
  26. </a-form-item>
  27. </a-col>
  28. <a-col :md="6" :sm="10">
  29. <a-form-item label="关键词状态" name="isEnable">
  30. <a-select allow-clear v-model:value="queryParam.isEnable" placeholder="输入关键词状态类型">
  31. <a-select-option value="0">停用</a-select-option>
  32. <a-select-option value="1">启用</a-select-option>
  33. </a-select>
  34. </a-form-item>
  35. </a-col>
  36. <a-col :md="6" :sm="8">
  37. <span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
  38. <a-button type="primary" @click="searchQuery" preIcon="ant-design:search-outlined">查询</a-button>
  39. <a-button ghost type="primary" @click="searchReset" preIcon="ant-design:reload-outlined" style="margin-left: 8px">重置</a-button>
  40. </span>
  41. </a-col>
  42. </a-row>
  43. </a-form>
  44. </div>
  45. <!-- 查询区域-END -->
  46. <!-- table区域-begin -->
  47. <div class="table">
  48. <div class="ant-alert ant-alert-info" style="margin-bottom: 16px">
  49. <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a
  50. >项
  51. <a style="margin-left: 24px" @click="clearSelectedRowKeys">清空</a>
  52. </div>
  53. <!--引用表格-->
  54. <BasicTable @register="registerTable" :rowSelection="rowSelection">
  55. <!--插槽:table标题-->
  56. <template #tableTitle>
  57. <a-button type="primary" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增 </a-button>
  58. <a-button type="primary" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
  59. <j-upload-button type="primary" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
  60. <a-dropdown v-if="selectedRowKeys.length > 0">
  61. <template #overlay>
  62. <a-menu>
  63. <a-menu-item key="1" @click="batchHandleDelete">
  64. <Icon icon="ant-design:delete-outlined" />
  65. 删除
  66. </a-menu-item>
  67. </a-menu>
  68. </template>
  69. <a-button
  70. >批量操作
  71. <Icon icon="mdi:chevron-down" />
  72. </a-button>
  73. </a-dropdown>
  74. </template>
  75. <!--操作栏-->
  76. <template #action="{ record }">
  77. <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />
  78. </template>
  79. <template #bodyCell="{ column, record, index, text }">
  80. <template v-if="column.dataIndex === 'blackOrWhiteList'">
  81. <span>
  82. <a-tag v-if="record.blackOrWhiteList === 0" color="red">黑名单</a-tag>
  83. <a-tag v-else>白名单</a-tag>
  84. </span>
  85. </template>
  86. <template v-if="column.dataIndex === 'wasteEnquiryNum'">
  87. <template v-if="record.useStatus == 0">
  88. <span v-if="text === '' || text === null || text === 0">0</span>
  89. <a v-else @click="wasteNumVisible(record.word)">{{ text }}</a>
  90. </template>
  91. <template v-if="record.useStatus == 1">
  92. <span>-</span>
  93. </template>
  94. </template>
  95. <template v-if="column.dataIndex === 'useStatus'">
  96. <a-tag v-if="text === 0" color="orange">询盘关键词</a-tag>
  97. <a-tag v-else-if="text === 1" color="green">OpenAi关键词</a-tag>
  98. <a-tag v-else>--</a-tag>
  99. </template>
  100. <template v-if="column.dataIndex === 'isEnable'">
  101. <a-tag v-if="text === 0" color="orange">停用</a-tag>
  102. <a-tag v-else-if="text === 1" color="green">启用</a-tag>
  103. <a-tag v-else>--</a-tag>
  104. </template>
  105. <template v-if="column.dataIndex === 'action'">
  106. <span>
  107. <a @click="handleEdit(record)">编辑</a>
  108. <a-divider type="vertical" />
  109. <a-dropdown>
  110. <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
  111. <template #overlay>
  112. <a-menu>
  113. <a-menu-item>
  114. <a @click="handleDetail(record)">详情</a>
  115. </a-menu-item>
  116. <a-menu-item>
  117. <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
  118. <a>删除</a>
  119. </a-popconfirm>
  120. </a-menu-item>
  121. </a-menu>
  122. </template>
  123. </a-dropdown>
  124. </span>
  125. </template>
  126. </template>
  127. </BasicTable>
  128. </div>
  129. <adweb-enquiry-rule-modal ref="modalFormRef" @ok="reload" />
  130. <xp-recycle-bin-modal ref="XpRecycleBinModalRef" />
  131. </a-card>
  132. </template>
  133. <script lang="ts" setup name="AdwebEnquiryRuleList">
  134. import '@/assets/less/TableExpand.less';
  135. import '@/assets/less/common.less';
  136. import AdwebEnquiryRuleModal from './modules/AdwebEnquiryRuleModal.vue';
  137. import { nextTick, onMounted, reactive, ref } from 'vue';
  138. import XpRecycleBinModal from './modules/XpRecycleBinModal.vue';
  139. import { useListPage } from '@/hooks/system/useListPage';
  140. import { batchDelete, deleteOne, getExportUrl, getImportUrl, list } from './publicRuleList.api';
  141. import { columns } from './publicRuleList.data';
  142. import { useCommonList } from '@/hooks/component/JeecgList';
  143. import { BasicTable, TableAction } from '@/components/Table';
  144. const description = ref('用于询盘规则过滤管理页面');
  145. const dictOptions = reactive<any>({});
  146. const superFieldList = reactive<any>([]);
  147. const formRef = ref();
  148. const XpRecycleBinModalRef = ref();
  149. const modalFormRef = ref();
  150. let queryParam = reactive<any>({});
  151. //注册table数据
  152. const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
  153. tableProps: {
  154. title: '公共邮箱黑名单',
  155. api: list,
  156. columns: columns,
  157. canResize: false,
  158. useSearchForm: false,
  159. actionColumn: {
  160. width: 180,
  161. fixed: 'right',
  162. },
  163. striped: true,
  164. bordered: false,
  165. beforeFetch: (params) => {
  166. return Object.assign(params, queryParam);
  167. },
  168. },
  169. exportConfig: {
  170. name: '询盘列表',
  171. url: getExportUrl,
  172. params: queryParam,
  173. },
  174. importConfig: {
  175. url: getImportUrl,
  176. success: handleSuccess,
  177. },
  178. });
  179. const [
  180. registerTable,
  181. { reload, clearSelectedRowKeys, updateTableDataRecord, findTableDataRecord, getDataSource },
  182. { rowSelection, selectedRowKeys },
  183. ] = tableContext;
  184. const { handleEdit, getTableAction, batchHandleDelete, handleDetail, getDropDownAction, handleDelete, handleAdd, searchQuery, searchReset } =
  185. useCommonList({ tableContext, modalFormRef, formRef, batchDelete, deleteOne });
  186. onMounted(() => {
  187. getSuperFieldList();
  188. });
  189. function getSuperFieldList() {
  190. superFieldList.push({ type: 'string', value: 'word', text: '关键词', dictCode: '' });
  191. superFieldList.push({ type: 'int', value: 'blackOrWhiteList', text: '黑名单或白名单0为黑名单,1为白名单', dictCode: '' });
  192. superFieldList.push({ type: 'int', value: 'isEnable', text: '是否启用该字段1为启用0为停用', dictCode: '' });
  193. }
  194. function wasteNumVisible(keyword) {
  195. nextTick().then(() => {
  196. XpRecycleBinModalRef.value.init(keyword);
  197. });
  198. }
  199. /**
  200. * 成功回调
  201. */
  202. function handleSuccess() {
  203. (selectedRowKeys.value = []) && reload();
  204. }
  205. </script>