AdwebEnquiryList.vue 27 KB

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