dailyData.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  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 @com-methods="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="r5" :gutter="[20, 20]">
  39. <a-row class="r5-1">
  40. <a-col :span="24">
  41. <div class="fr" v-if="coreDataChart.x.length > 0">
  42. <span><i style="background: #544beb"></i>UV</span>
  43. <span><i style="background: #f0b358"></i>PV</span>
  44. <span><i style="background: #58cca8"></i>询盘数</span>
  45. </div>
  46. <area-chart v-if="coreDataChart.x.length > 0" :dataSource="coreDataChart" />
  47. <a-empty v-else style="float: right; width: 100%; margin-top: 110px" />
  48. </a-col>
  49. </a-row>
  50. <a-row style="margin: 20px">
  51. <a-table :columns="dailyDataColumns" :data-source="dailyDataSource" size="middle" rowKey="type" :pagination="false">
  52. <template #newUserProportionSlot="text, record">
  53. <template v-if="record.newUvNum === 0"> 0.00 % </template>
  54. <template v-else>
  55. {{ ((record.newUvNum * 100) / record.uvNum).toFixed(2) + ' %' }}
  56. </template>
  57. </template>
  58. <template #conversionSlot="text, record">
  59. <span style="margin-left: 20px"></span>
  60. <template v-if="record.enquiryNum === 0 || record.uvNum === 0"> 0.00 % </template>
  61. <template v-else>
  62. {{ ((record.enquiryNum * 100) / record.uvNum).toFixed(2) + ' %' }}
  63. </template>
  64. </template>
  65. <template #centerSlot="text, record, index">
  66. <span style="margin-left: 20px">{{ text }}</span>
  67. </template>
  68. <template #enquiryNumSlot="text, record, index">
  69. <router-link v-if="text > 0" :to="{ path: '/inquiry/list', query: { start: record.time, end: record.time } }">
  70. <span style="margin-left: 20px; color: blue">{{ text }}</span>
  71. </router-link>
  72. <span v-else style="margin-left: 20px">{{ text }}</span>
  73. </template>
  74. </a-table>
  75. </a-row>
  76. </a-row>
  77. </a-spin>
  78. </div>
  79. </template>
  80. <script>
  81. import '/@/assets/less/common.less';
  82. import { getAction } from '/@/api/manage/manage';
  83. import { JeecgListMixin } from '/@/hooks/component/JeecgListMixin';
  84. import moment from 'moment';
  85. import areaChart from './chart/areaChart.vue';
  86. import selectSite from '/@/components/adweb/selectSite.vue';
  87. export default {
  88. name: 'DailyData',
  89. components: {
  90. areaChart,
  91. selectSite,
  92. },
  93. mixins: [JeecgListMixin],
  94. data() {
  95. return {
  96. // 通用
  97. ipagination: {
  98. current: 1,
  99. pageSize: 30,
  100. pageSizeOptions: ['15', '30', '45', '60'],
  101. showTotal: (total, range) => {
  102. return range[0] + '-' + range[1] + ' 共' + total + '条';
  103. },
  104. showQuickJumper: true,
  105. showSizeChanger: true,
  106. total: 0,
  107. },
  108. disableMixinCreated: true,
  109. loading: true,
  110. // 筛选
  111. siteList: [],
  112. rangeDate: undefined,
  113. // 数据趋势的数据
  114. coreDataChart: {
  115. x: [],
  116. uv: [],
  117. pv: [],
  118. enquiry: [],
  119. },
  120. // 来源媒介列表
  121. dailyDataColumns: [
  122. {
  123. title: '统计时间',
  124. dataIndex: 'time',
  125. },
  126. {
  127. title: '访客(UV)',
  128. dataIndex: 'uvNum',
  129. scopedSlots: {
  130. customRender: 'centerSlot',
  131. },
  132. },
  133. {
  134. title: '新访客',
  135. dataIndex: 'newUvNum',
  136. scopedSlots: {
  137. customRender: 'centerSlot',
  138. },
  139. },
  140. {
  141. title: '新访客占比',
  142. scopedSlots: {
  143. customRender: 'newUserProportionSlot',
  144. },
  145. },
  146. {
  147. title: '浏览量(PV)',
  148. dataIndex: 'pvNum',
  149. scopedSlots: {
  150. customRender: 'centerSlot',
  151. },
  152. },
  153. {
  154. title: '询盘数',
  155. dataIndex: 'enquiryNum',
  156. scopedSlots: {
  157. customRender: 'enquiryNumSlot',
  158. },
  159. },
  160. {
  161. title: 'UV到询盘转化率',
  162. scopedSlots: {
  163. customRender: 'conversionSlot',
  164. },
  165. },
  166. ],
  167. dailyDataSource: [],
  168. };
  169. },
  170. mounted() {
  171. this.queryParam.dateType = 'sevenDay';
  172. this.rangeDate = [moment().subtract(7, 'days'), moment().subtract(1, 'days')];
  173. this.getSiteList();
  174. },
  175. methods: {
  176. // ========================================== 筛选 ==========================================
  177. //获取站点列表
  178. getSiteList() {
  179. let that = this;
  180. getAction('/sys/api/getSiteListByUid')
  181. .then(function (res) {
  182. if (res.code == 0) {
  183. if (res.data || res.data.length) {
  184. let defaultSiteCode = localStorage.getItem('siteCode');
  185. if (defaultSiteCode) {
  186. let isInSite = false;
  187. for (let i in res.data) {
  188. if (defaultSiteCode === res.data[i].code) {
  189. isInSite = true;
  190. that.queryParam.siteId = res.data[i].id;
  191. break;
  192. }
  193. }
  194. if (!isInSite) {
  195. that.queryParam.siteId = res.data[0].id;
  196. localStorage.setItem('siteCode', res.data[0].code);
  197. }
  198. } else {
  199. that.queryParam.siteId = res.data[0].id;
  200. localStorage.setItem('siteCode', res.data[0].code);
  201. }
  202. that.siteList = res.data;
  203. that.reloadData();
  204. }
  205. } else {
  206. that.$message.error('获取站点失败!');
  207. }
  208. })
  209. .catch(function (err) {
  210. console.log(err);
  211. });
  212. },
  213. // 搜索
  214. filterOption(inputValue, option) {
  215. return option.componentOptions.children[0].text.indexOf(inputValue) >= 0;
  216. },
  217. //搜索条件部分的逻辑
  218. onChangeDatePciker(date, dateString) {
  219. if (dateString.length > 0) {
  220. this.rangeDate = date;
  221. this.queryParam.start = dateString[0];
  222. this.queryParam.end = dateString[1];
  223. this.queryParam.dateType = undefined;
  224. this.reloadData();
  225. }
  226. },
  227. //日期选择只能今天之前
  228. disabledDate(current) {
  229. return current && current > moment().subtract(0, 'days');
  230. },
  231. //设置列表的时间查询条件
  232. setTime(time) {
  233. this.queryParam.dateType = time;
  234. this.queryParam.start = '';
  235. this.queryParam.end = '';
  236. if (time == '') {
  237. this.rangeDate = undefined;
  238. } else if (time == 'sevenDay') {
  239. this.rangeDate = [moment().subtract(7, 'days'), moment().subtract(1, 'days')];
  240. } else if (time == 'thirtyDay') {
  241. this.rangeDate = [moment().subtract(30, 'days'), moment().subtract(1, 'days')];
  242. } else if (time == 'yesterday') {
  243. this.rangeDate = [moment().subtract(1, 'days'), moment().subtract(1, 'days')];
  244. } else if (time == 'today') {
  245. this.rangeDate = [moment(), moment()];
  246. }
  247. this.reloadData();
  248. },
  249. changeSite(value, e) {
  250. this.selectSiteInfo = e.data.attrs.info;
  251. this.queryParam.siteId = this.selectSiteInfo.id;
  252. this.reloadData(this.queryParam.siteId);
  253. },
  254. //重新刷新页面数据
  255. reloadData(value) {
  256. this.loading = true;
  257. for (let i in this.siteList) {
  258. if (value === this.siteList[i].id) {
  259. localStorage.setItem('siteCode', this.siteList[i].code);
  260. }
  261. }
  262. this.getFlowIndexNumber();
  263. this.getDailyList();
  264. },
  265. // ========================================== 访客量、浏览量、询盘数量、折线图以及统计 ==========================================
  266. getFlowIndexNumber() {
  267. let that = this;
  268. getAction('/datacenter/flow/number', this.queryParam).then(function (res) {
  269. console.log('res', res);
  270. if (!res.result) {
  271. that.coreDataChart = {
  272. x: [],
  273. uv: [],
  274. pv: [],
  275. enquiry: [],
  276. };
  277. that.loading = false;
  278. return;
  279. }
  280. that.flowIndexNums = res.result.flowIndexNumber;
  281. let r = res.result.dailyTrends;
  282. let x = [],
  283. pv = [],
  284. uv = [],
  285. enquiry = [];
  286. if (r != null && r.length > 0) {
  287. for (let item of r) {
  288. x.push(item.date);
  289. pv.push(item.pvCount);
  290. uv.push(item.uvCount);
  291. enquiry.push(item.enquiryCount);
  292. }
  293. }
  294. that.coreDataChart.x = x;
  295. that.coreDataChart.pv = pv;
  296. that.coreDataChart.uv = uv;
  297. that.coreDataChart.enquiry = enquiry;
  298. that.loading = false;
  299. });
  300. },
  301. // ========================================== 每日数据列表 ==========================================
  302. getDailyList() {
  303. let that = this;
  304. getAction('/datacenter/daily/list', this.queryParam).then(function (res) {
  305. if (res.code == 200) {
  306. that.dailyDataSource = res.result;
  307. } else {
  308. that.dailyDataSource = [];
  309. }
  310. });
  311. },
  312. },
  313. };
  314. </script>
  315. <!-- 询盘页面的样式 -->
  316. <style lang="less" scoped>
  317. .ant-alert {
  318. /deep/ .ant-btn {
  319. border-radius: 0;
  320. margin-left: 10px;
  321. }
  322. }
  323. .theme-color {
  324. color: @primary-color;
  325. }
  326. .r1 {
  327. .choose-site {
  328. display: flex;
  329. /deep/ .ant-select-selection {
  330. background: transparent;
  331. color: #fff;
  332. }
  333. /deep/ .ant-select-selection__clear {
  334. background: transparent;
  335. }
  336. /deep/ i,
  337. /deep/ .ant-calendar-range-picker-separator {
  338. color: #fff;
  339. }
  340. }
  341. .t1 {
  342. font-size: 18px;
  343. color: #fff;
  344. }
  345. .ant-calendar-picker {
  346. margin-right: 20px;
  347. /deep/ .ant-input {
  348. background: transparent;
  349. color: #e2e2e2;
  350. }
  351. }
  352. /deep/ .ant-btn {
  353. background: transparent;
  354. color: #e2e2e2;
  355. margin-right: 10px;
  356. &.active {
  357. background: #fff;
  358. border-color: #fff;
  359. color: @primary-color;
  360. }
  361. }
  362. }
  363. .r2 {
  364. background: #fff;
  365. border-radius: 10px;
  366. padding: 30px 20px;
  367. margin-top: 20px;
  368. .ant-col:not(:last-child) {
  369. border-right: 1px solid #e6e6e6;
  370. }
  371. p {
  372. margin: 0;
  373. text-align: center;
  374. &.t1 {
  375. color: #333;
  376. margin-bottom: 15px;
  377. img {
  378. margin-right: 10px;
  379. width: 15px;
  380. margin-top: -5px;
  381. }
  382. }
  383. &.t2 {
  384. color: @primary-color;
  385. font-size: 30px;
  386. font-weight: 500;
  387. line-height: 1;
  388. padding-left: 25px;
  389. }
  390. }
  391. }
  392. .r3 {
  393. margin-top: 20px;
  394. }
  395. .r4 {
  396. margin-top: 20px;
  397. /deep/ .ant-table-tbody {
  398. background: #fff;
  399. }
  400. /deep/ .ant-table-tbody > tr > td {
  401. border-bottom: 1px solid #f7f7f7;
  402. }
  403. }
  404. </style>
  405. <!-- 首页的样式 -->
  406. <style scoped lang="less">
  407. p,
  408. span {
  409. color: #000;
  410. margin: 0;
  411. }
  412. .theme-color {
  413. color: @primary-color;
  414. }
  415. .title {
  416. font-size: 18px;
  417. color: #000;
  418. }
  419. </style>
  420. <style lang="less">
  421. .pop-wrap {
  422. .ant-popover-inner-content {
  423. padding: 0;
  424. }
  425. .wrap {
  426. width: 400px;
  427. padding: 20px 20px;
  428. background: url('../../../assets/home2-7/pop-bg.svg') no-repeat;
  429. background-position: bottom right;
  430. p {
  431. line-height: 1.8;
  432. i {
  433. color: @primary-color;
  434. margin-right: 10px;
  435. }
  436. }
  437. .name {
  438. font-size: 18px;
  439. margin-bottom: 20px;
  440. }
  441. .job {
  442. font-size: 15px;
  443. color: #9f9f9f;
  444. }
  445. .ant-col-8 {
  446. text-align: right;
  447. }
  448. }
  449. }
  450. </style>