enquiryAnalysis.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568
  1. <template>
  2. <div class="wrap home">
  3. <!-- 站点选择和时间筛选 -->
  4. <a-row class="r1" :gutter="8">
  5. <a-col :xl="7" :xxl="6" v-if="siteList.length > 1">
  6. <div class="choose-site">
  7. <span class="t1">站点:</span>
  8. <select-site @comMethods="changeSite" />
  9. <!-- <a-select v-model="queryParam.siteId"-->
  10. <!-- show-search-->
  11. <!-- :filter-option="filterOption"-->
  12. <!-- placeholder="全部站点"-->
  13. <!-- style="width: 70%"-->
  14. <!-- @change="reloadData">-->
  15. <!-- <a-select-option v-for="data in siteList" :key="data.id" :value="data.id">-->
  16. <!-- {{ data.name }}-->
  17. <!-- </a-select-option>-->
  18. <!-- </a-select>-->
  19. </div>
  20. </a-col>
  21. <a-col :xl="8" :xxl="6">
  22. <div class="choose-site">
  23. <span class="t1">统计时间:</span>
  24. <a-range-picker @change="onChangeDatePciker" :disabledDate="disabledDate" :value="rangeDate" style="width:70%"/>
  25. </div>
  26. </a-col>
  27. <a-col :xl="9" :xxl="12">
  28. <a-button :class="queryParam.dateType == '' ? 'active' : ''" @click="setTime('')">全部时间</a-button>
  29. <a-button :class="queryParam.dateType == 'thirtyDay' ? 'active' : ''" @click="setTime('thirtyDay')">近30天</a-button>
  30. <a-button :class="queryParam.dateType == 'sevenDay' ? 'active' : ''" @click="setTime('sevenDay')">近一周</a-button>
  31. <a-button :class="queryParam.dateType == 'yesterday' ? 'active' : ''" @click="setTime('yesterday')">昨日</a-button>
  32. <a-button :class="queryParam.dateType == 'today' ? 'active' : ''" @click="setTime('today')">今日</a-button>
  33. </a-col>
  34. </a-row>
  35. <!-- 占位 -->
  36. <div style="height: 20px;"></div>
  37. <a-spin :spinning="loading" tips="加载中...">
  38. <a-row class="r2">
  39. <a-col :span="8">
  40. <p class="t1"><img src="@/assets/V2-7/enquiryNum.svg"/>询盘数</p>
  41. <router-link :to="{ path: '/inquiry/list', query: {dateType: this.queryParam.dateType, start: this.queryParam.start, end: this.queryParam.end ,offset: 1} }">
  42. <p class="t2">{{ enquiryIndexNumber.enquiry }}</p>
  43. </router-link>
  44. </a-col>
  45. <a-col :span="8">
  46. <p class="t1"><img src="@/assets/V2-7/unReadEnquiryNum.svg"/>未读询盘数</p>
  47. <router-link :to="{ path: '/inquiry/list', query: {dateType: this.queryParam.dateType, start: this.queryParam.start, end: this.queryParam.end, readStatus: '0' , offset: 1} }">
  48. <p class="t2">{{ enquiryIndexNumber.unRead }}</p>
  49. </router-link>
  50. </a-col>
  51. <a-col :span="8">
  52. <p class="t1"><img src="@/assets/V2-7/conversionRate.svg"/>UV到询盘的转化率</p>
  53. <p class="t3">{{ enquiryIndexNumber.conversionRate }}</p>
  54. </a-col>
  55. </a-row>
  56. <a-row class="r3">
  57. <a-col><p class="title">询盘趋势图</p></a-col>
  58. </a-row>
  59. <a-row class="r5" :gutter="[20,20]">
  60. <a-row class="r5-1">
  61. <a-col :span="24">
  62. <div class="fr" v-if="coreDataChart.x.length > 0">
  63. <span><i style="background: #544BEB;"></i>UV</span>
  64. <span><i style="background: #58CCA8;"></i>询盘数</span>
  65. </div>
  66. <area-chart v-if="coreDataChart.x.length > 0" :dataSource="coreDataChart"></area-chart>
  67. <a-empty v-else style="float: right;width: 100%;margin-top: 110px;"></a-empty>
  68. </a-col>
  69. </a-row>
  70. </a-row>
  71. <a-row class="r3">
  72. <a-col><p class="title">询盘地域分布</p></a-col>
  73. </a-row>
  74. <a-row class="r5" :gutter="[20,20]">
  75. <a-col :span="12">
  76. <map-adweb v-if="countryMapData.length > 0" :dataSource="countryMapData" :aliases="[{dataKey:'country',alias:'国家'},{dataKey:'num',alias:'访问数量'}]"
  77. :height="chartheight"></map-adweb>
  78. <a-empty v-else style="margin-top: 50px;">
  79. <span slot="description">暂无数据</span>
  80. </a-empty>
  81. </a-col>
  82. <a-col :span="2">
  83. </a-col>
  84. <a-col :span="10">
  85. <a-table
  86. style="margin-top: 40px; margin-bottom: 40px;"
  87. :rowKey="(record,index)=>{return index}"
  88. class="chartTable"
  89. :scroll="{ y: 400 }"
  90. :pagination=false
  91. :columns="chartDetailDataCol"
  92. :customRow="clickRow"
  93. :data-source="chartDetailData"
  94. :showHeader="false">
  95. <template slot="flagSlot" slot-scope="text,record">
  96. <span class="img-box">
  97. <img src="../../../assets/flag_placeholder.png" :class="'flag flag-' + record.countryCode" alt="Czech Republic"/>
  98. </span>
  99. </template>
  100. <template slot="numSlot" slot-scope="text,record">
  101. {{ record.num }} | {{ record.proportion }}
  102. </template>
  103. <template slot="countryNameSlot" slot-scope="text,record">
  104. <a> {{ text === null ? record.country : text }}</a>
  105. </template>
  106. </a-table>
  107. </a-col>
  108. </a-row>
  109. </a-spin>
  110. </div>
  111. </template>
  112. <script>
  113. import { getAction } from '@/api/manage'
  114. import {JeecgListMixin} from '@/mixins/JeecgListMixin'
  115. import enquiryTrack from '@views/adweb/enquiry/modules/enquiryTrack'
  116. import enquiryGenzong from '@views/adweb/enquiry/modules/enquiryGenzong'
  117. import enquiryDetail from '@views/adweb/enquiry/modules/enquiryDetail'
  118. import XpRecycleBinModal from '../../system/modules/XpRecycleBinModal'
  119. import blackList from '@views/adweb/enquiry/modules/blackList'
  120. import moment from 'moment'
  121. import dashChart from './chart/DashChartDemo'
  122. import areaChart from './chart/areaChart'
  123. import MapAdweb from '@/components/chart/mapAdweb'
  124. import selectSite from '@/components/adweb/selectSite'
  125. export default {
  126. name: 'EnquiryAnalysis',
  127. mixins: [JeecgListMixin],
  128. components: {
  129. enquiryTrack,
  130. enquiryGenzong,
  131. XpRecycleBinModal,
  132. enquiryDetail,
  133. blackList,
  134. areaChart,
  135. dashChart,
  136. MapAdweb,
  137. selectSite
  138. },
  139. data() {
  140. return {
  141. // 通用
  142. ipagination: {
  143. current: 1,
  144. pageSize: 30,
  145. pageSizeOptions: ['15', '30', '45', '60'],
  146. showTotal: (total, range) => {
  147. return range[0] + "-" + range[1] + " 共" + total + "条"
  148. },
  149. showQuickJumper: true,
  150. showSizeChanger: true,
  151. total: 0
  152. },
  153. disableMixinCreated: true,
  154. loading: true,
  155. // 筛选
  156. siteList: [],
  157. rangeDate: undefined,
  158. // uv、pv、询盘数
  159. enquiryIndexNumber: {
  160. unRead: 0,
  161. conversionRate: "0%",
  162. enquiry: 0
  163. },
  164. // 数据趋势的数据
  165. coreDataChart: {
  166. x: [],
  167. uv: [],
  168. pv: [],
  169. enquiry: []
  170. },
  171. // 访客数据地图分布
  172. chartheight: 400,
  173. countryMapData: [],
  174. // 访客地域分布列表
  175. chartDetailData: [],
  176. chartDetailDataCol: [
  177. {
  178. title: "国旗",
  179. align: "center",
  180. width: 30,
  181. scopedSlots: {customRender: 'flagSlot'}
  182. },
  183. {
  184. title: "国家",
  185. align: "left",
  186. dataIndex: 'countryName',
  187. scopedSlots: {customRender: 'countryNameSlot'}
  188. },
  189. {
  190. title: "数量",
  191. align: "right",
  192. dataIndex: 'num',
  193. scopedSlots: {customRender: 'numSlot'}
  194. },
  195. ]
  196. }
  197. },
  198. mounted() {
  199. this.queryParam.dateType = 'sevenDay';
  200. this.rangeDate = [moment().subtract(7, "days"), moment().subtract(1, "days")];
  201. this.getSiteList();
  202. },
  203. methods: {
  204. // ========================================== 筛选 ==========================================
  205. //获取站点列表
  206. getSiteList() {
  207. let that = this
  208. getAction('/sys/api/getSiteListByUid').then(function (res) {
  209. if (res.code == 0) {
  210. if (res.data || res.data.length) {
  211. let defaultSiteCode = localStorage.getItem('siteCode');
  212. if (defaultSiteCode) {
  213. let isInSite = false
  214. for (let i in res.data) {
  215. if (defaultSiteCode === res.data[i].code) {
  216. isInSite = true;
  217. that.queryParam.siteId = res.data[i].id;
  218. break;
  219. }
  220. }
  221. if (!isInSite) {
  222. that.queryParam.siteId = res.data[0].id;
  223. localStorage.setItem('siteCode', res.data[0].code);
  224. }
  225. } else {
  226. that.queryParam.siteId = res.data[0].id;
  227. localStorage.setItem('siteCode', res.data[0].code);
  228. }
  229. that.siteList = res.data;
  230. that.reloadData()
  231. }
  232. } else {
  233. that.$message.error('获取站点失败!')
  234. }
  235. }).catch(function (err) {
  236. console.log(err)
  237. })
  238. },
  239. // 搜索
  240. filterOption(inputValue, option) {
  241. return option.componentOptions.children[0].text.indexOf(inputValue) >= 0
  242. },
  243. //搜索条件部分的逻辑
  244. onChangeDatePciker(date, dateString) {
  245. if (dateString.length > 0) {
  246. this.rangeDate = date
  247. this.queryParam.start = dateString[0]
  248. this.queryParam.end = dateString[1]
  249. this.queryParam.dateType = undefined
  250. this.reloadData();
  251. }
  252. },
  253. //日期选择只能今天之前
  254. disabledDate(current) {
  255. return current && current > moment().subtract(0, "days");
  256. },
  257. //设置列表的时间查询条件
  258. setTime(time) {
  259. this.queryParam.dateType = time
  260. this.queryParam.start = ''
  261. this.queryParam.end = ''
  262. if (time == '') {
  263. this.rangeDate = undefined
  264. } else if (time == 'sevenDay') {
  265. this.rangeDate = [moment().subtract(7, "days"), moment().subtract(1, "days")]
  266. } else if (time == 'thirtyDay') {
  267. this.rangeDate = [moment().subtract(30, "days"), moment().subtract(1, "days")]
  268. } else if (time == 'yesterday') {
  269. this.rangeDate = [moment().subtract(1, "days"), moment().subtract(1, "days")]
  270. } else if (time == 'today') {
  271. this.rangeDate = [moment(), moment()]
  272. }
  273. this.reloadData();
  274. },
  275. changeSite(value, e) {
  276. this.selectSiteInfo = e.data.attrs.info
  277. this.queryParam.siteId = this.selectSiteInfo.id;
  278. this.reloadData(this.queryParam.siteId)
  279. },
  280. //重新刷新页面数据
  281. reloadData(value) {
  282. this.loading = true;
  283. for (let i in this.siteList){
  284. if(value === this.siteList[i].id){
  285. localStorage.setItem("siteCode",this.siteList[i].code)
  286. }
  287. }
  288. this.getFlowIndexNumber();
  289. this.getCountryMapData();
  290. },
  291. // ========================================== 访客量、浏览量、询盘数量、折线图以及统计 ==========================================
  292. getFlowIndexNumber() {
  293. let that = this;
  294. getAction('/datacenter/daily/number', this.queryParam).then(function (res) {
  295. console.log('res', res);
  296. if (!res.result) {
  297. that.enquiryIndexNumber = {
  298. unRead: 0,
  299. conversionRate: "0%",
  300. enquiry: 0
  301. };
  302. that.coreDataChart = {
  303. x: [],
  304. uv: [],
  305. pv: [],
  306. enquiry: []
  307. };
  308. that.loading = false;
  309. return;
  310. }
  311. that.enquiryIndexNumber = res.result.enquiryIndexNumber;
  312. let r = res.result.dailyTrends;
  313. let x = [], uv = [], enquiry = [];
  314. if (r != null && r.length > 0) {
  315. for (let item of r) {
  316. x.push(item.date)
  317. uv.push(item.uvCount)
  318. enquiry.push(item.enquiryCount)
  319. }
  320. }
  321. that.coreDataChart.x = x
  322. that.coreDataChart.uv = uv
  323. that.coreDataChart.enquiry = enquiry
  324. that.loading = false;
  325. });
  326. },
  327. // ========================================== 访客数地域分布 ==========================================
  328. getCountryMapData() {
  329. let that = this;
  330. that.countryMapData = [];
  331. that.chartDetailData = [];
  332. getAction('/datacenter/enquiry/map', this.queryParam).then(function (res) {
  333. if (res.code == 200) {
  334. that.countryMapData = res.result.accessMap;
  335. that.chartDetailData = res.result.accessList;
  336. if (that.chartDetailData !== null && that.chartDetailData.length > 0) {
  337. for (let item of that.chartDetailData) {
  338. let searchText = item.countryName ? item.countryName : item.country;
  339. let itemQueryParam = {
  340. dateType: that.queryParam.dateType,
  341. start: that.queryParam.start,
  342. end: that.queryParam.end,
  343. offset: 1, //日期相对今天偏移1天
  344. searchText: searchText
  345. };
  346. item.queryParam = itemQueryParam;
  347. }
  348. }
  349. }
  350. })
  351. },
  352. clickRow(record,index) {
  353. return {
  354. on: {
  355. click: () => {
  356. this.$router.push({ path: '/inquiry/list', query: record.queryParam })
  357. }
  358. }
  359. }
  360. },
  361. }
  362. }
  363. </script>
  364. <!-- 通用样式 -->
  365. <style scoped>
  366. @import '~@assets/less/common.less';
  367. </style>
  368. <!-- 询盘页面的样式 -->
  369. <style lang="less" scoped>
  370. .img-box {
  371. width: 22px;
  372. height: 15px;
  373. display: flex;
  374. justify-content: center;
  375. align-items: center;
  376. img {
  377. width: 100%;
  378. height: 100%;
  379. }
  380. }
  381. .ant-alert {
  382. /deep/ .ant-btn {
  383. border-radius: 0;
  384. margin-left: 10px;
  385. }
  386. }
  387. .theme-color {
  388. color: @primary-color;
  389. }
  390. .r1 {
  391. .choose-site {
  392. display: flex;
  393. /deep/ .ant-select-selection {
  394. background: transparent;
  395. color: #fff;
  396. }
  397. /deep/ .ant-select-selection__clear {
  398. background: transparent;
  399. }
  400. /deep/ i, /deep/ .ant-calendar-range-picker-separator {
  401. color: #fff;
  402. }
  403. }
  404. .t1 {
  405. font-size: 18px;
  406. color: #fff;
  407. }
  408. .ant-calendar-picker {
  409. margin-right: 20px;
  410. /deep/ .ant-input {
  411. background: transparent;
  412. color: #e2e2e2;
  413. }
  414. }
  415. /deep/ .ant-btn {
  416. background: transparent;
  417. color: #e2e2e2;
  418. margin-right: 10px;
  419. &.active {
  420. background: #fff;
  421. border-color: #fff;
  422. color: @primary-color;
  423. }
  424. }
  425. }
  426. .r2 {
  427. background: #fff;
  428. border-radius: 10px;
  429. padding: 30px 20px;
  430. .ant-col:not(:last-child) {
  431. border-right: 1px solid #e6e6e6;
  432. }
  433. p {
  434. margin: 0;
  435. text-align: center;
  436. &.t1 {
  437. color: #333;
  438. margin-bottom: 15px;
  439. img {
  440. margin-right: 10px;
  441. width: 15px;
  442. margin-top: -5px;
  443. }
  444. }
  445. &.t2 {
  446. color: @primary-color;
  447. font-size: 30px;
  448. font-weight: 500;
  449. line-height: 1;
  450. padding-left: 25px;
  451. }
  452. &.t3 {
  453. font-size: 30px;
  454. font-weight: 500;
  455. line-height: 1;
  456. padding-left: 25px;
  457. }
  458. }
  459. }
  460. .r3 {
  461. margin-top: 20px;
  462. }
  463. .r4 {
  464. margin-top: 20px;
  465. /deep/ .ant-table-tbody {
  466. background: #fff;
  467. }
  468. /deep/ .ant-table-tbody > tr > td {
  469. border-bottom: 1px solid #f7f7f7;
  470. }
  471. }
  472. </style>
  473. <!-- 首页的样式 -->
  474. <style scoped lang="less">
  475. p, span {
  476. color: #000;
  477. margin: 0;
  478. }
  479. .theme-color {
  480. color: @primary-color;
  481. }
  482. .title {
  483. font-size: 18px;
  484. color: #000;
  485. }
  486. @import '../../dashboard/less/home2-7.less';
  487. @import "../../../assets/less/flags.css";
  488. </style>
  489. <style lang="less">
  490. .pop-wrap {
  491. .ant-popover-inner-content {
  492. padding: 0;
  493. }
  494. .wrap {
  495. width: 400px;
  496. padding: 20px 20px;
  497. background: url("../../../assets/home2-7/pop-bg.svg") no-repeat;
  498. background-position: bottom right;
  499. p {
  500. line-height: 1.8;
  501. i {
  502. color: @primary-color;
  503. margin-right: 10px;
  504. }
  505. }
  506. .name {
  507. font-size: 18px;
  508. margin-bottom: 20px;
  509. }
  510. .job {
  511. font-size: 15px;
  512. color: #9f9f9f;
  513. }
  514. .ant-col-8 {
  515. text-align: right;
  516. }
  517. }
  518. }
  519. </style>