AdwebWasteEnquiryList.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  1. <template>
  2. <div class="p-2 adweb-waste-enquiry-list">
  3. <div class="search-form">
  4. <a-row class="r1 search-form-container" :gutter="8">
  5. <a-col :xl="7" :xxl="6">
  6. <div class="choose-site">
  7. <span class="t1">站点:</span>
  8. <select-site ref="selectSiteRef" @set-site-info="getSiteList" />
  9. </div>
  10. </a-col>
  11. <a-col :xl="8" :xxl="6">
  12. <div class="choose-site">
  13. <span class="t1">询盘时间:</span>
  14. <a-range-picker @change="onChangeDatePciker" :disabledDate="disabledDate" :value="rangeDate" style="width: 70%" />
  15. </div>
  16. </a-col>
  17. <a-col :xl="9" :xxl="12">
  18. <a-button :class="queryParam.dateType == '' ? 'active' : ''" @click="setTime('')">全部时间 </a-button>
  19. <a-button :class="queryParam.dateType == 'thirtyDay' ? 'active' : ''" @click="setTime('thirtyDay')">近30天 </a-button>
  20. <a-button :class="queryParam.dateType == 'sevenDay' ? 'active' : ''" @click="setTime('sevenDay')">近一周 </a-button>
  21. <a-button :class="queryParam.dateType == 'yesterday' ? 'active' : ''" @click="setTime('yesterday')">昨日 </a-button>
  22. <a-button :class="queryParam.dateType == 'today' ? 'active' : ''" @click="setTime('today')"> 今日 </a-button>
  23. </a-col>
  24. </a-row>
  25. </div>
  26. <a-row class="r3" type="flex" :gutter="8">
  27. <a-col flex="2">
  28. <a-input placeholder="邮箱/姓名/国家" v-model:value="queryParam.searchText" />
  29. </a-col>
  30. <a-col flex="2">
  31. <a-select v-model="queryParam.readStatus" :allowClear="true" placeholder="全部阅读状态" style="width: 100%" @change="filterStatus">
  32. <a-select-option value="0"> 未读 </a-select-option>
  33. <a-select-option value="1"> 已读 </a-select-option>
  34. </a-select>
  35. </a-col>
  36. <a-col flex="2">
  37. <a-select v-model:value="queryParam.wasteEnquiryType" :allowClear="true" placeholder="垃圾询盘类型" style="width: 100%">
  38. <a-select-option value="keyword"> 关键词 </a-select-option>
  39. <a-select-option value="email"> 邮箱 </a-select-option>
  40. <a-select-option value="ip"> ip </a-select-option>
  41. <a-select-option value="other"> 其他 </a-select-option>
  42. </a-select>
  43. </a-col>
  44. <a-col v-if="haveSubAccount" flex="2">
  45. <a-select placeholder="全部跟进人" v-model="queryParam.principalUid" showSearch allowClear style="width: 100%" :filterOption="filterOption">
  46. <a-select-option key="ALL" value="ALL">所有人</a-select-option>
  47. <a-select-option v-for="principal in subAccountOptions" :key="principal.id" :value="principal.id">
  48. {{ principal.username }}
  49. </a-select-option>
  50. </a-select>
  51. </a-col>
  52. <a-col flex="500px" style="text-align: right">
  53. <a-button type="primary" @click="searchQuery">查询</a-button>
  54. <a-button ghost type="primary" @click="searchReset" style="margin-left: 8px">重置</a-button>
  55. <a-button ghost type="primary" @click="handleExportXlsLU()" style="margin-left: 8px" :loading="excelLoading">导出Excel </a-button>
  56. <a-button ghost type="primary" @click="recycleBinVisible" style="margin-left: 8px">回收站 </a-button>
  57. <a-button ghost type="primary" @click="showBlackList" style="margin-left: 8px">黑名单 </a-button>
  58. </a-col>
  59. </a-row>
  60. <!--引用表格-->
  61. <BasicTable @register="registerTable" :rowSelection="rowSelection">
  62. <template #alertAfter>
  63. <a-divider type="vertical" />
  64. <a @click="enquiryReady">标为已读</a>
  65. <a-divider type="vertical" />
  66. <a @click="batchHandleDelete">删除</a>
  67. </template>
  68. <!--插槽:table标题-->
  69. <template #tableTitle>
  70. <!-- TODO 高级查询 -->
  71. <!-- <super-query :config="superQueryConfig" @search="handleSuperQuery" />-->
  72. </template>
  73. <!--操作栏-->
  74. <!-- <template #action="{ record }">-->
  75. <!-- <TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)" />-->
  76. <!-- </template>-->
  77. <!-- 操作动作 -->
  78. <template #action="{ record }">
  79. <div style="padding: 5px 8px; display: flex; justify-content: space-around">
  80. <a-tag v-if="isForwardSite" color="blue" @click="forwardDetail(record)" style="cursor: pointer"> 转发 </a-tag>
  81. <a-tag color="purple" @click="showEnquiryDetail(record)" style="cursor: pointer"> 详情 </a-tag>
  82. <a-popconfirm
  83. title="确认拒收后,该用户会归入【黑名单】,后期不再接收该用户的询盘信息~"
  84. ok-text="是"
  85. cancel-text="否"
  86. placement="topRight"
  87. @confirm="enquiryAddBlackList(record)"
  88. >
  89. <a-tag color="orange" style="cursor: pointer"> 拒收 </a-tag>
  90. </a-popconfirm>
  91. <a-tag color="green" @click="showEnquiryTrackRecord(record)" style="cursor: pointer"> 跟踪 </a-tag>
  92. <a-tag
  93. color="blue"
  94. v-if="record.visitId !== null && record.visitId !== '' && record.visitId !== undefined"
  95. style="cursor: pointer"
  96. @click="enquiryTrack(record)"
  97. >
  98. 访问记录
  99. </a-tag>
  100. </div>
  101. </template>
  102. <template #bodyCell="{ column, record, text }">
  103. <!-- 自定义显示字段 -->
  104. <!-- 询盘状态 -->
  105. <template v-if="column.key == 'userEffective'">
  106. <a class="theme-color" v-if="text === 2" @click="showEnquiryDetail(record)">{{ record.userEffectiveStr }}</a>
  107. <span v-else-if="text == 0" style="color: #fa8c16">{{ record.userEffectiveStr }}</span>
  108. <span v-else>{{ record.userEffectiveStr }}</span>
  109. </template>
  110. <!-- 阅读状态 -->
  111. <template v-if="column.key == 'readStatus'">
  112. <a v-if="text == 0" class="theme-color" @click="showEnquiryDetail(record)">未读</a>
  113. <span v-else>已读</span>
  114. </template>
  115. <!-- 询盘详情 -->
  116. <div v-if="column.key == 'details'">
  117. <a @click="showEnquiryDetail(record)" style="margin: 0 10px 0 10px"> {{ record.context ? record.context.substr(0, 50) : '--' }}</a>
  118. </div>
  119. <!-- 来源页面 -->
  120. <template v-if="column.key == 'fromPage'">
  121. <template v-if="!text">-</template>
  122. <template v-else-if="text.indexOf('http') < 0">-</template>
  123. <template v-else-if="text.indexOf('http') === 0">
  124. <template v-if="text.lastIndexOf('/') <= 7">
  125. <a :href="text" target="_blank" style="text-decoration: underline">Home</a>
  126. </template>
  127. <template v-else>
  128. <a :href="text" target="_blank" style="text-decoration: underline">{{
  129. text.substring(text.lastIndexOf('/') + 1).slice(0, 45) + (text.substring(text.lastIndexOf('/') + 1).length > 45 ? '...' : '')
  130. }}</a>
  131. </template>
  132. </template>
  133. <template v-else-if="text.indexOf('http') > 0">
  134. <a :href="text.substring(text.indexOf('http'))" target="_blank" style="text-decoration: underline">{{
  135. text.substring(0, text.indexOf('http')).slice(0, 45) + (text.substring(0, text.indexOf('http')).length > 45 ? '...' : '')
  136. }}</a>
  137. </template>
  138. <template v-else>-</template>
  139. </template>
  140. <!-- 邮箱 -->
  141. <div v-if="column.key == 'fromEmail'">
  142. <a-popover>
  143. <template #content>
  144. {{ text }}
  145. </template>
  146. <a @click.prevent="copyEmailFunction(text)" :href="'mailto:' + text" v-if="text">{{
  147. text.slice(0, 30) + (text.length > 30 ? '...' : '')
  148. }}</a>
  149. <div v-else>--</div>
  150. </a-popover>
  151. </div>
  152. <template v-if="column.key == 'wasteEnquiryType'">
  153. <a-tag v-if="text == 'keyword'" color="#2db7f5">关键词</a-tag>
  154. <a-tag v-if="text == 'email'" color="#108ee9">邮箱</a-tag>
  155. <a-tag v-if="text == 'ip'" color="#3D59AB">IP</a-tag>
  156. <a-tag v-if="text == 'other'" color="#87CEEB">其他</a-tag>
  157. <span v-if="text == '' || text == null">-</span>
  158. </template>
  159. </template>
  160. </BasicTable>
  161. <!-- 表单区域 -->
  162. <AdwebEnquiryModal ref="registerModal" @success="handleSuccess" />
  163. <!--回收站-->
  164. <xp-recycle-bin-modal ref="XpRecycleBinModalRef" @ok="getTableAndNum" />
  165. <!--询盘详情 reload用于子组件删除询盘功能刷新父组件table showDelBtn用于展示删除按钮-->
  166. <enquiry-detail
  167. :userEffectiveOption="userEffectiveOption"
  168. :showDelBtn="true"
  169. @reload="getTableAndNum()"
  170. @ok="getTableAndNum"
  171. ref="enquiryDetailRef"
  172. />
  173. <!-- 转发询盘 -->
  174. <a-modal title="转发" v-model:open="forwardVisible" @ok="editForward" @cancel="cancelEditForward" :confirm-loading="forwardLoading">
  175. <a-radio-group v-model:value="selectedUserId">
  176. <a-radio v-for="item in subAccountOptions" style="display: block; height: 30px; lineheight: 30px" :value="item.id">
  177. {{ item.username }}
  178. </a-radio>
  179. </a-radio-group>
  180. </a-modal>
  181. <!--黑名单-->
  182. <black-list ref="blackListRef" @ok="getTableAndNum" />
  183. <!--跟踪记录-->
  184. <enquiry-track-record ref="enquiryTrackRecordRef" />
  185. </div>
  186. </template>
  187. <script lang="ts" name="adweb-adwebWasteEnquiry" setup>
  188. import selectSite from '@/components/Adweb/selectSite.vue';
  189. import { nextTick, onBeforeMount, onMounted, reactive, ref } from 'vue';
  190. import { BasicTable } from '/@/components/Table';
  191. import { useListPage } from '/@/hooks/system/useListPage';
  192. import { wasteColumns, superQuerySchema } from './AdwebEnquiry.data';
  193. import { batchDelete, deleteOne, getExportUrl, getImportUrl, list } from './AdwebEnquiry.api';
  194. import AdwebEnquiryModal from './components/AdwebEnquiryModal.vue';
  195. import { useUserStore } from '/@/store/modules/user';
  196. import { getAction, postAction } from '@/api/manage/manage';
  197. import { useMessage } from '@/hooks/web/useMessage';
  198. // 过滤日期范围
  199. import dayjs, { Dayjs } from 'dayjs';
  200. const dateFormat = 'YYYY-MM-DD';
  201. type RangeValue = [Dayjs, Dayjs];
  202. // 过滤日期范围
  203. let rangeDate = ref<RangeValue>();
  204. import { filterOption } from 'ant-design-vue/es/vc-mentions/src/util';
  205. import enquiryDetail from '@/views/adweb/enquiry/modules/enquiryDetail.vue';
  206. import XpRecycleBinModal from '@/views/adweb/system/modules/XpRecycleBinModal.vue';
  207. import blackList from '@/views/adweb/enquiry/modules/blackList.vue';
  208. import enquiryTrackRecord from '@/views/adweb/enquiry/modules/enquiryTrackRecord.vue';
  209. const formRef = ref();
  210. const queryParam = reactive<any>({});
  211. const toggleSearchStatus = ref<boolean>(false);
  212. const registerModal = ref();
  213. const selectSiteRef = ref(null);
  214. const { createMessage } = useMessage();
  215. //注册table数据
  216. const { prefixCls, tableContext, onExportXls, onImportXls } = useListPage({
  217. tableProps: {
  218. title: '询盘信息存储表单',
  219. api: list,
  220. columns: wasteColumns,
  221. canResize: false,
  222. useSearchForm: false,
  223. actionColumn: {
  224. width: 180,
  225. fixed: 'right',
  226. },
  227. striped: true,
  228. bordered: false,
  229. immediate: false, // 不直接触发,通过reload事件触发接口
  230. beforeFetch: (params) => {
  231. // 如果查询条件中没有设置状态,则默认查出所有状态数据
  232. if (queryParam.userEffective == undefined) {
  233. queryParam.userEffective = '0';
  234. }
  235. return Object.assign(params, queryParam);
  236. },
  237. },
  238. exportConfig: {
  239. name: '垃圾询盘列表',
  240. url: getExportUrl,
  241. params: queryParam,
  242. },
  243. importConfig: {
  244. url: getImportUrl,
  245. success: handleSuccess,
  246. },
  247. });
  248. const [
  249. registerTable,
  250. { reload, clearSelectedRowKeys, updateTableDataRecord, findTableDataRecord, getDataSource },
  251. { rowSelection, selectedRowKeys },
  252. ] = tableContext;
  253. // const labelCol = reactive({
  254. // xs: 24,
  255. // sm: 4,
  256. // xl: 6,
  257. // xxl: 4,
  258. // });
  259. // const wrapperCol = reactive({
  260. // xs: 24,
  261. // sm: 20,
  262. // });
  263. //
  264. // let siteCode: string | null = ref('');
  265. // 站点列表
  266. let siteList = ref([{ id: '', code: '' }]);
  267. // 询盘数量
  268. const enquiryNums = ref({
  269. all: 0,
  270. noRead: 0,
  271. product: 0,
  272. wait: 0,
  273. });
  274. // 子账号列表
  275. let subAccountOptions = ref([{ id: '', username: '' }]);
  276. // 是否有子账户
  277. let haveSubAccount = ref(false);
  278. // 导出excel进度
  279. let excelLoading = ref<boolean>(false);
  280. // 编辑转发进度
  281. let forwardLoading = ref<boolean>(false);
  282. // 选中跟进人
  283. let selectedUserId = ref<any>(undefined);
  284. let userEffectiveOption = ref<[]>([]);
  285. // 当前用户角色
  286. const userRole = ref<any>([]);
  287. // 已经选择的站点code
  288. const siteCode = ref<any>('');
  289. const isForwardSite = ref<boolean>(false);
  290. //转发的询盘id
  291. const forwardEnquiryDetail = ref<any>(undefined);
  292. //转发是否可见
  293. const forwardVisible = ref(false);
  294. // 询盘详情子组件
  295. const enquiryDetailRef = ref();
  296. // 回收站子组件
  297. const XpRecycleBinModalRef = ref();
  298. // 黑名单子组件
  299. const blackListRef = ref();
  300. // 跟踪记录
  301. const enquiryTrackRecordRef = ref();
  302. const userStore = useUserStore();
  303. onBeforeMount(() => {
  304. siteCode.value = localStorage.getItem('siteCode');
  305. getTurnInquiryCode();
  306. });
  307. onMounted(async () => {
  308. userRole.value = userStore.getRoleList;
  309. getEffectiveList();
  310. });
  311. function getSiteList(selectedSiteInfo: any) {
  312. queryParam.siteId = selectedSiteInfo.id;
  313. getTableAndNum(true);
  314. }
  315. function filterStatus(value: number) {
  316. queryParam.readStatus = value;
  317. }
  318. //重新刷新页面数据及获取询盘数量
  319. function getTableAndNum(clearParam: boolean = false) {
  320. // 设置默认站点
  321. let siteId = queryParam.siteId;
  322. for (let site of siteList.value) {
  323. if (site.id === siteId) {
  324. localStorage.setItem('siteCode', site.code);
  325. }
  326. }
  327. getEnquiryNums();
  328. getSubAccountOptions();
  329. if (clearParam) {
  330. if (queryParam.readStatus) {
  331. delete queryParam.readStatus;
  332. }
  333. if (queryParam.searchText) {
  334. delete queryParam.searchText;
  335. }
  336. if (queryParam.searchContent) {
  337. delete queryParam.searchContent;
  338. }
  339. if (queryParam.userEffective) {
  340. delete queryParam.userEffective;
  341. }
  342. if (queryParam.principalUid) {
  343. delete queryParam.principalUid;
  344. }
  345. }
  346. // queryParam.fields = 'id,,siteName,contact,fromEmail,whatsApp,phone,fromIp,readStatus,details,principalUid,fromPage,userEffective,countryName,pluginName,recordCtime,action';
  347. // queryParam.userEffective = '1,2';
  348. loadData();
  349. }
  350. //搜索条件部分的逻辑
  351. function onChangeDatePciker(date, dateString) {
  352. if (dateString.length > 0) {
  353. rangeDate.value = date;
  354. queryParam.start = dateString[0];
  355. queryParam.end = dateString[1];
  356. queryParam.dateType = undefined;
  357. }
  358. }
  359. //日期选择只能今天之前
  360. function disabledDate(current) {
  361. return current && current > dayjs().endOf('day');
  362. }
  363. //设置列表的时间查询条件
  364. function setTime(time) {
  365. queryParam.dateType = time;
  366. queryParam.start = '';
  367. queryParam.end = '';
  368. // sevenDay thirtyDay today yesterday
  369. if (time == '') {
  370. rangeDate.value = undefined;
  371. } else if (time == 'sevenDay') {
  372. rangeDate.value = [dayjs().subtract(6, 'days'), dayjs()];
  373. } else if (time == 'thirtyDay') {
  374. rangeDate.value = [dayjs().subtract(29, 'days'), dayjs()];
  375. } else if (time == 'today') {
  376. rangeDate.value = [dayjs(), dayjs()];
  377. } else if (time == 'yesterday') {
  378. rangeDate.value = [dayjs().subtract(1, 'days'), dayjs().subtract(1, 'days')];
  379. }
  380. if (rangeDate.value != undefined) {
  381. queryParam.start = rangeDate.value[0].format(dateFormat);
  382. queryParam.end = rangeDate.value[1].format(dateFormat);
  383. }
  384. getTableAndNum();
  385. }
  386. //获取不同状态询盘的数量
  387. function getEnquiryNums() {
  388. let siteId = '';
  389. if (queryParam.siteId && queryParam.siteId != '') {
  390. siteId = queryParam.siteId;
  391. } else {
  392. siteId = '';
  393. }
  394. let d = {
  395. siteId: siteId,
  396. dateType: queryParam.dateType,
  397. start: queryParam.start,
  398. end: queryParam.end,
  399. };
  400. getAction('/adweb/adwebEnquiry/getEnquiryNums', d).then((res) => {
  401. if (res.code == 200) {
  402. enquiryNums.value.all = res.result.all;
  403. enquiryNums.value.noRead = res.result.noRead;
  404. enquiryNums.value.product = res.result.product;
  405. enquiryNums.value.wait = res.result.wait;
  406. } else {
  407. enquiryNums.value.all = 0;
  408. enquiryNums.value.noRead = 0;
  409. enquiryNums.value.product = 0;
  410. enquiryNums.value.wait = 0;
  411. }
  412. });
  413. }
  414. // 获取子账户的下拉框选项
  415. function getSubAccountOptions() {
  416. getAction('/usercountry/subAccounts/options?siteId=' + queryParam.siteId, null).then((res) => {
  417. if (res.code === 200) {
  418. subAccountOptions.value = res.result;
  419. haveSubAccount.value = res.result !== null && res.result !== undefined && res.result.length > 0;
  420. }
  421. });
  422. }
  423. //批量设为已读
  424. function enquiryReady() {
  425. console.log(selectedRowKeys.value.length, 'selectedRowKeysselectedRowKeysselectedRowKeys');
  426. if (selectedRowKeys.value.length <= 0) {
  427. createMessage.warning('请选择至少一条记录!');
  428. return;
  429. }
  430. getAction('/adweb/adwebEnquiry/read', { id: selectedRowKeys.value.toString() }).then((res) => {
  431. if (res.success) {
  432. createMessage.success('批量设置已读成功!');
  433. getTableAndNum();
  434. clearSelectedRowKeys();
  435. } else {
  436. if (res.code == 403) {
  437. createMessage.warning(res.message);
  438. } else {
  439. createMessage.error('设置失败!');
  440. }
  441. }
  442. });
  443. }
  444. // 加载table列表数据
  445. function loadData(page: number = 1) {
  446. reload({ page: page });
  447. }
  448. // 导出excel
  449. function handleExportXlsLU() {
  450. excelLoading.value = true;
  451. delete queryParam.userEffective;
  452. onExportXls().then(() => {
  453. excelLoading.value = false;
  454. });
  455. }
  456. //询盘详情
  457. async function showEnquiryDetail(record) {
  458. if (record.readStatus == 0) {
  459. getAction('/adweb/adwebEnquiry/read?id=' + record.id, null).then(() => {
  460. getTableAndNum();
  461. });
  462. }
  463. await nextTick();
  464. if (enquiryDetailRef.value && enquiryDetailRef.value.init) {
  465. enquiryDetailRef.value.init(record);
  466. }
  467. }
  468. //获取询盘分类列表
  469. function getEffectiveList() {
  470. getAction('/adweb/adwebEnquiry/getEnquiryCatalog', null)
  471. .then(function (res) {
  472. if (res.code == 200) {
  473. userEffectiveOption.value = JSON.parse(res.result);
  474. } else {
  475. createMessage.error('获取询盘分类失败!');
  476. }
  477. })
  478. .catch(function (err) {
  479. console.log(err);
  480. });
  481. }
  482. //复制email到剪切板
  483. function copyEmailFunction(text) {
  484. //复制email到剪切板
  485. if (!navigator.clipboard) {
  486. console.log('浏览器不支持navigator');
  487. let copy = (e) => {
  488. e.preventDefault();
  489. e.clipboardData.setData('text/plain', text);
  490. createMessage.success('复制成功');
  491. document.removeEventListener('copy', copy);
  492. };
  493. document.addEventListener('copy', copy);
  494. document.execCommand('Copy');
  495. return;
  496. }
  497. navigator.clipboard.writeText(text).then(
  498. function () {
  499. createMessage.success('复制成功');
  500. },
  501. function (err) {
  502. createMessage.error('复制失败', err);
  503. }
  504. );
  505. }
  506. //获取需要轮流询盘的站点code,判断哪个站点的询盘需要开启转发功能
  507. function getTurnInquiryCode() {
  508. // 站点code
  509. let dictSiteCode = [{ label: '', value: '' }];
  510. getAction('/adweb/adwebEnquiry/getTurnInquiryCode', null).then((res) => {
  511. if (res.code === 200) {
  512. Object.assign(dictSiteCode, res.result);
  513. for (let it in dictSiteCode) {
  514. if (dictSiteCode[it].value === siteCode.value) {
  515. isForwardSite.value = true;
  516. }
  517. }
  518. }
  519. });
  520. }
  521. //转发询盘
  522. function forwardDetail(record) {
  523. forwardEnquiryDetail.value = record.id;
  524. forwardVisible.value = true;
  525. }
  526. //拒收
  527. function enquiryAddBlackList(record) {
  528. delete record.wasteEnquiry;
  529. postAction('/enquiry/blacklist/addBlacklist', record).then((res) => {
  530. if (res.success) {
  531. createMessage.success(`拒收成功!`);
  532. getTableAndNum();
  533. } else {
  534. if (res.code == 403 || res.code == 500) {
  535. createMessage.warning(res.message);
  536. } else {
  537. createMessage.error('拒收失败!');
  538. }
  539. }
  540. });
  541. }
  542. // 编辑转发
  543. function editForward() {
  544. if (forwardEnquiryDetail.value === undefined) {
  545. createMessage.warning('请选择询盘信息!');
  546. return;
  547. }
  548. if (!selectedUserId.value) {
  549. createMessage.warning('请选择跟进人!');
  550. return;
  551. }
  552. forwardLoading.value = true;
  553. let param = {
  554. ids: forwardEnquiryDetail.value,
  555. uid: selectedUserId.value,
  556. code: siteCode.value,
  557. };
  558. getAction('/adweb/adwebEnquiry/setForward', param)
  559. .then((res) => {
  560. if (res.success) {
  561. createMessage.success(res.message);
  562. loadData();
  563. cancelEditForward();
  564. getEnquiryNums();
  565. clearSelectedRowKeys();
  566. } else {
  567. createMessage.warning(res.message);
  568. }
  569. })
  570. .finally(() => {
  571. forwardLoading.value = false;
  572. });
  573. }
  574. // 取消转发的编辑
  575. function cancelEditForward() {
  576. selectedUserId.value = undefined;
  577. forwardEnquiryDetail.value = undefined;
  578. forwardVisible.value = false;
  579. }
  580. //回收箱
  581. async function recycleBinVisible() {
  582. await nextTick();
  583. if (XpRecycleBinModalRef.value && XpRecycleBinModalRef.value.init) {
  584. XpRecycleBinModalRef.value.init(queryParam.siteId, '1,2');
  585. }
  586. }
  587. //黑名单
  588. async function showBlackList() {
  589. await nextTick();
  590. if (blackListRef.value && blackListRef.value.init) {
  591. blackListRef.value.init(queryParam.siteId);
  592. }
  593. }
  594. //跟踪记录
  595. async function showEnquiryTrackRecord(record) {
  596. await nextTick();
  597. if (enquiryTrackRecordRef.value && enquiryTrackRecordRef.value.init) {
  598. enquiryTrackRecordRef.value.init(record);
  599. }
  600. }
  601. // 高级查询配置
  602. const superQueryConfig = reactive(superQuerySchema);
  603. /**
  604. * 高级查询事件
  605. */
  606. function handleSuperQuery(params) {
  607. Object.keys(params).map((k) => {
  608. queryParam[k] = params[k];
  609. });
  610. searchQuery();
  611. }
  612. /**
  613. * 新增事件
  614. */
  615. function handleAdd() {
  616. registerModal.value.disableSubmit = false;
  617. registerModal.value.add();
  618. }
  619. /**
  620. * 编辑事件
  621. */
  622. function handleEdit(record: Recordable) {
  623. registerModal.value.disableSubmit = false;
  624. registerModal.value.edit(record);
  625. }
  626. /**
  627. * 详情
  628. */
  629. function handleDetail(record: Recordable) {
  630. registerModal.value.disableSubmit = true;
  631. registerModal.value.edit(record);
  632. }
  633. /**
  634. * 删除事件
  635. */
  636. async function handleDelete(record) {
  637. await deleteOne({ id: record.id }, handleSuccess);
  638. }
  639. /**
  640. * 批量删除事件
  641. */
  642. async function batchHandleDelete() {
  643. await batchDelete({ ids: selectedRowKeys.value }, handleSuccess);
  644. }
  645. /**
  646. * 成功回调
  647. */
  648. function handleSuccess() {
  649. (selectedRowKeys.value = []) && reload();
  650. }
  651. /**
  652. * 操作栏
  653. */
  654. function getTableAction(record) {
  655. return [
  656. {
  657. label: '编辑',
  658. onClick: handleEdit.bind(null, record),
  659. },
  660. ];
  661. }
  662. /**
  663. * 下拉操作栏
  664. */
  665. function getDropDownAction(record) {
  666. return [
  667. {
  668. label: '详情',
  669. onClick: handleDetail.bind(null, record),
  670. },
  671. {
  672. label: '删除',
  673. popConfirm: {
  674. title: '是否确认删除',
  675. confirm: handleDelete.bind(null, record),
  676. placement: 'topLeft',
  677. },
  678. },
  679. ];
  680. }
  681. /**
  682. * 查询
  683. */
  684. function searchQuery() {
  685. console.log(queryParam.userEffective, 'queryParam.userEffectivequeryParam.userEffective');
  686. reload();
  687. }
  688. /**
  689. * 重置
  690. */
  691. function searchReset() {
  692. selectedRowKeys.value = [];
  693. //刷新数据
  694. getTableAndNum(true);
  695. }
  696. </script>
  697. <style lang="less" scoped>
  698. .ant-form-item {
  699. flex: 1;
  700. }
  701. .jeecg-basic-table-form-container {
  702. padding: 0;
  703. .table-page-search-submitButtons {
  704. display: block;
  705. margin-bottom: 24px;
  706. white-space: nowrap;
  707. }
  708. .query-group-cust {
  709. min-width: 100px !important;
  710. }
  711. .query-group-split-cust {
  712. width: 30px;
  713. display: inline-block;
  714. text-align: center;
  715. }
  716. .ant-form-item:not(.ant-form-item-with-help) {
  717. margin-bottom: 16px;
  718. height: 32px;
  719. }
  720. :deep(.ant-picker),
  721. :deep(.ant-input-number) {
  722. width: 100%;
  723. }
  724. }
  725. .theme-color {
  726. color: @primary-color;
  727. }
  728. .r1 {
  729. .choose-site {
  730. display: flex;
  731. }
  732. .t1 {
  733. font-size: 18px;
  734. }
  735. .ant-calendar-picker {
  736. margin-right: 20px;
  737. }
  738. }
  739. .r2 {
  740. background: #fff;
  741. border-radius: 10px;
  742. padding: 30px 20px;
  743. margin-top: 20px;
  744. .ant-col:not(:last-child) {
  745. border-right: 1px solid #e6e6e6;
  746. }
  747. p {
  748. margin: 0;
  749. text-align: center;
  750. &.t1 {
  751. color: #333;
  752. margin-bottom: 15px;
  753. img {
  754. margin-right: 10px;
  755. width: 15px;
  756. margin-top: -5px;
  757. }
  758. }
  759. &.t2 {
  760. color: @primary-color;
  761. font-size: 30px;
  762. font-weight: 500;
  763. line-height: 1;
  764. text-decoration: underline;
  765. cursor: pointer;
  766. padding-left: 25px;
  767. }
  768. }
  769. }
  770. .r3 {
  771. margin-bottom: 20px;
  772. }
  773. </style>