rank.js 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128
  1. // pages/rank/rank.js
  2. const app = getApp();
  3. const api = require('../../../api/api.js');
  4. import * as echarts from '../../ec-canvas/echarts';
  5. var dataList = [];
  6. Page({
  7. /**
  8. * 页面的初始数据
  9. */
  10. data: {
  11. navbarData: {
  12. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  13. title: '买家排名', //导航栏 中间的标题
  14. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  15. },
  16. filterType: 0, //过滤类型(0:按天;1:按月;2:按季度;3:按年)
  17. enterType: 0, //进入类型(0:买家排行;1:商品排行;2:帮卖排行;3:供应商排名;4:订单收入对比;5:订单支出对比
  18. years: ['2015', '2016', '2017', '2018', '2019', '2020', '2021', '2022', '2023', '2024',
  19. '2025', '2026', '2027', '2028', '2029', '2030'
  20. ],
  21. year: new Date().getFullYear(),
  22. month: new Date().getMonth() + 1,
  23. quarters: ['第1季度', '第2季度', '第3季度', '第4季度'], //季度列表
  24. quarter: 1, //季度
  25. ec: {
  26. lazyLoad: true // 延迟加载
  27. },
  28. show: false,
  29. currentDate: new Date().getTime(),
  30. xData: [], //X轴数据
  31. yData: [], //Y轴数据
  32. Income_list: [], //统计分析收入列表
  33. Income_money: '', //收入金额
  34. Expenditure_list: [], //统计分析支出列表
  35. Expenditure_money: '', //支出金额
  36. Buyer_ranking: [], //买家排名数组
  37. Commodity_ranking: [], //商品排名数组
  38. Help_sell_ranking: [], //帮卖排名数组
  39. Supplier_ranking: [], //供货商排名数组
  40. order_list: [], //订单收入数组
  41. },
  42. /**
  43. * 生命周期函数--监听页面加载
  44. */
  45. onLoad(options) {
  46. let that = this;
  47. let key = `navbarData.title`
  48. this.setData({
  49. [key]: options.title,
  50. enterType: Number(options.enterType),
  51. filterType: Number(options.filterType)
  52. })
  53. if (that.data.enterType == 0) {
  54. // 获取买家排名
  55. that.getBuyer_ranking()
  56. } else if (that.data.enterType == 1) {
  57. // 获取商品排名
  58. that.getCommodity_ranking()
  59. } else if (that.data.enterType == 2) {
  60. // 获取帮卖排名
  61. that.getHelp_sell_ranking()
  62. } else if (that.data.enterType == 3) {
  63. // 获取供应商排名
  64. that.getSupplier_ranking()
  65. } else if (that.data.enterType == 4) {
  66. that.echartsComponnet = that.selectComponent('#mychart2');
  67. // 获取统计分析收入
  68. that.getIncome_list()
  69. // 获取订单收入列表
  70. that.getorder_list()
  71. } else if (that.data.enterType == 5) {
  72. that.echartsComponnet = that.selectComponent('#mychart2');
  73. // 获取统计分析支出
  74. that.getExpenditure_list()
  75. }
  76. },
  77. /**
  78. * 生命周期函数--监听页面初次渲染完成
  79. */
  80. onReady() {
  81. },
  82. /**
  83. * 生命周期函数--监听页面显示
  84. */
  85. onShow() {
  86. },
  87. /**
  88. * 生命周期函数--监听页面隐藏
  89. */
  90. onHide() {
  91. },
  92. /**
  93. * 生命周期函数--监听页面卸载
  94. */
  95. onUnload() {
  96. },
  97. /**
  98. * 页面相关事件处理函数--监听用户下拉动作
  99. */
  100. onPullDownRefresh() {
  101. },
  102. /**
  103. * 页面上拉触底事件的处理函数
  104. */
  105. onReachBottom() {
  106. },
  107. /**
  108. * 用户点击右上角分享
  109. */
  110. onShareAppMessage() {
  111. },
  112. // 改变过滤条件
  113. changeFilterType(e) {
  114. let that = this;
  115. that.setData({
  116. filterType: Number(e.target.dataset.type)
  117. })
  118. if (that.data.enterType == 0) {
  119. // 获取买家排名
  120. that.getBuyer_ranking()
  121. } else if (that.data.enterType == 1) {
  122. // 获取商品排名
  123. that.getCommodity_ranking()
  124. } else if (that.data.enterType == 2) {
  125. // 获取帮卖排名
  126. that.getHelp_sell_ranking()
  127. } else if (that.data.enterType == 3) {
  128. // 获取供应商排名
  129. that.getSupplier_ranking()
  130. } else if (that.data.enterType == 4) {
  131. // 获取统计分析收入
  132. that.getIncome_list()
  133. // 获取订单收入列表
  134. that.getorder_list()
  135. } else if (that.data.enterType == 5) {
  136. // 获取统计分析支出
  137. that.getExpenditure_list()
  138. }
  139. },
  140. // 获取买家排名
  141. getBuyer_ranking() {
  142. let that = this;
  143. wx.showLoading({
  144. title: '加载中',
  145. mask: true
  146. })
  147. let year = that.data.year;
  148. let month = that.data.month;
  149. if (month < 10) {
  150. month = '0' + month
  151. }
  152. if (that.data.filterType == 1) {
  153. //月份模式
  154. wx.request({
  155. url: api.Buyer_ranking,
  156. header: {
  157. 'Authorization': wx.getStorageSync('token')
  158. },
  159. method: 'POST',
  160. data: {
  161. month: year + '-' + month
  162. },
  163. success(res) {
  164. wx.hideLoading()
  165. // console.log(res);
  166. if (res.data.code === 1) {
  167. that.setData({
  168. Buyer_ranking: res.data.data
  169. })
  170. } else {
  171. wx.showToast({
  172. title: res.data.msg,
  173. mask: true,
  174. icon: 'none'
  175. })
  176. }
  177. },
  178. fail(err) {
  179. wx.hideLoading()
  180. wx.showToast({
  181. title: '发起网络请求失败',
  182. icon: 'none',
  183. mask: true
  184. })
  185. },
  186. complete() {
  187. // wx.hideLoading()
  188. }
  189. })
  190. } else if (that.data.filterType == 3) {
  191. //年份模式
  192. wx.request({
  193. url: api.Buyer_ranking,
  194. header: {
  195. 'Authorization': wx.getStorageSync('token')
  196. },
  197. method: 'POST',
  198. data: {
  199. year: year
  200. },
  201. success(res) {
  202. wx.hideLoading()
  203. // console.log(res);
  204. if (res.data.code === 1) {
  205. that.setData({
  206. Buyer_ranking: res.data.data
  207. })
  208. } else {
  209. wx.showToast({
  210. title: res.data.msg,
  211. mask: true,
  212. icon: 'none'
  213. })
  214. }
  215. },
  216. fail(err) {
  217. wx.hideLoading()
  218. wx.showToast({
  219. title: '发起网络请求失败',
  220. icon: 'none',
  221. mask: true
  222. })
  223. },
  224. complete() {
  225. // wx.hideLoading()
  226. }
  227. })
  228. }
  229. },
  230. // 获取商品排名
  231. getCommodity_ranking() {
  232. let that = this;
  233. wx.showLoading({
  234. title: '加载中',
  235. mask: true
  236. })
  237. let year = that.data.year;
  238. let month = that.data.month;
  239. if (month < 10) {
  240. month = '0' + month
  241. }
  242. if (that.data.filterType == 1) {
  243. //月份模式
  244. wx.request({
  245. url: api.Commodity_ranking,
  246. header: {
  247. 'Authorization': wx.getStorageSync('token')
  248. },
  249. method: 'POST',
  250. data: {
  251. month: year + '-' + month
  252. },
  253. success(res) {
  254. wx.hideLoading()
  255. // console.log(res);
  256. if (res.data.code === 1) {
  257. that.setData({
  258. Commodity_ranking: res.data.data
  259. })
  260. } else {
  261. wx.showToast({
  262. title: res.data.msg,
  263. mask: true,
  264. icon: 'none'
  265. })
  266. }
  267. },
  268. fail(err) {
  269. wx.hideLoading()
  270. wx.showToast({
  271. title: '发起网络请求失败',
  272. icon: 'none',
  273. mask: true
  274. })
  275. },
  276. complete() {
  277. // wx.hideLoading()
  278. }
  279. })
  280. } else if (that.data.filterType == 2) {
  281. //季度模式
  282. wx.request({
  283. url: api.Commodity_ranking,
  284. header: {
  285. 'Authorization': wx.getStorageSync('token')
  286. },
  287. method: 'POST',
  288. data: {
  289. quarter: that.data.quarter
  290. },
  291. success(res) {
  292. wx.hideLoading()
  293. // console.log(res);
  294. if (res.data.code === 1) {
  295. that.setData({
  296. Commodity_ranking: res.data.data
  297. })
  298. } else {
  299. wx.showToast({
  300. title: res.data.msg,
  301. mask: true,
  302. icon: 'none'
  303. })
  304. }
  305. },
  306. fail(err) {
  307. wx.hideLoading()
  308. wx.showToast({
  309. title: '发起网络请求失败',
  310. icon: 'none',
  311. mask: true
  312. })
  313. },
  314. complete() {
  315. // wx.hideLoading()
  316. }
  317. })
  318. } else if (that.data.filterType == 3) {
  319. //年份模式
  320. wx.request({
  321. url: api.Commodity_ranking,
  322. header: {
  323. 'Authorization': wx.getStorageSync('token')
  324. },
  325. method: 'POST',
  326. data: {
  327. year: that.data.year
  328. },
  329. success(res) {
  330. wx.hideLoading()
  331. // console.log(res);
  332. if (res.data.code === 1) {
  333. that.setData({
  334. Commodity_ranking: res.data.data
  335. })
  336. } else {
  337. wx.showToast({
  338. title: res.data.msg,
  339. mask: true,
  340. icon: 'none'
  341. })
  342. }
  343. },
  344. fail(err) {
  345. wx.hideLoading()
  346. wx.showToast({
  347. title: '发起网络请求失败',
  348. icon: 'none',
  349. mask: true
  350. })
  351. },
  352. complete() {
  353. // wx.hideLoading()
  354. }
  355. })
  356. }
  357. },
  358. // 获取帮卖排名
  359. getHelp_sell_ranking() {
  360. let that = this;
  361. wx.showLoading({
  362. title: '加载中',
  363. mask: true
  364. })
  365. let year = that.data.year;
  366. let month = that.data.month;
  367. if (month < 10) {
  368. month = '0' + month
  369. }
  370. if (that.data.filterType == 1) {
  371. //月份模式
  372. wx.request({
  373. url: api.Help_sell_ranking,
  374. header: {
  375. 'Authorization': wx.getStorageSync('token')
  376. },
  377. method: 'POST',
  378. data: {
  379. month: year + '-' + month
  380. },
  381. success(res) {
  382. wx.hideLoading()
  383. // console.log(res);
  384. if (res.data.code === 1) {
  385. that.setData({
  386. Help_sell_ranking: res.data.data
  387. })
  388. } else {
  389. wx.showToast({
  390. title: res.data.msg,
  391. mask: true,
  392. icon: 'none'
  393. })
  394. }
  395. },
  396. fail(err) {
  397. wx.hideLoading()
  398. wx.showToast({
  399. title: '发起网络请求失败',
  400. icon: 'none',
  401. mask: true
  402. })
  403. },
  404. complete() {
  405. // wx.hideLoading()
  406. }
  407. })
  408. } else if (that.data.filterType == 3) {
  409. //年份模式
  410. wx.request({
  411. url: api.Help_sell_ranking,
  412. header: {
  413. 'Authorization': wx.getStorageSync('token')
  414. },
  415. method: 'POST',
  416. data: {
  417. year: year
  418. },
  419. success(res) {
  420. wx.hideLoading()
  421. // console.log(res);
  422. if (res.data.code === 1) {
  423. that.setData({
  424. Help_sell_ranking: res.data.data
  425. })
  426. } else {
  427. wx.showToast({
  428. title: res.data.msg,
  429. mask: true,
  430. icon: 'none'
  431. })
  432. }
  433. },
  434. fail(err) {
  435. wx.hideLoading()
  436. wx.showToast({
  437. title: '发起网络请求失败',
  438. icon: 'none',
  439. mask: true
  440. })
  441. },
  442. complete() {
  443. // wx.hideLoading()
  444. }
  445. })
  446. }
  447. },
  448. // 获取供货商排名
  449. getSupplier_ranking() {
  450. let that = this;
  451. wx.showLoading({
  452. title: '加载中',
  453. mask: true
  454. })
  455. let year = that.data.year;
  456. let month = that.data.month;
  457. if (month < 10) {
  458. month = '0' + month
  459. }
  460. if (that.data.filterType == 1) {
  461. //月份模式
  462. wx.request({
  463. url: api.Supplier_ranking,
  464. header: {
  465. 'Authorization': wx.getStorageSync('token')
  466. },
  467. method: 'POST',
  468. data: {
  469. month: year + '-' + month
  470. },
  471. success(res) {
  472. wx.hideLoading()
  473. // console.log(res);
  474. if (res.data.code === 1) {
  475. that.setData({
  476. Supplier_ranking: res.data.data
  477. })
  478. } else {
  479. wx.showToast({
  480. title: res.data.msg,
  481. mask: true,
  482. icon: 'none'
  483. })
  484. }
  485. },
  486. fail(err) {
  487. wx.hideLoading()
  488. wx.showToast({
  489. title: '发起网络请求失败',
  490. icon: 'none',
  491. mask: true
  492. })
  493. },
  494. complete() {
  495. // wx.hideLoading()
  496. }
  497. })
  498. } else if (that.data.filterType == 3) {
  499. //年份模式
  500. wx.request({
  501. url: api.Supplier_ranking,
  502. header: {
  503. 'Authorization': wx.getStorageSync('token')
  504. },
  505. method: 'POST',
  506. data: {
  507. year: year
  508. },
  509. success(res) {
  510. wx.hideLoading()
  511. // console.log(res);
  512. if (res.data.code === 1) {
  513. that.setData({
  514. Supplier_ranking: res.data.data
  515. })
  516. } else {
  517. wx.showToast({
  518. title: res.data.msg,
  519. mask: true,
  520. icon: 'none'
  521. })
  522. }
  523. },
  524. fail(err) {
  525. wx.hideLoading()
  526. wx.showToast({
  527. title: '发起网络请求失败',
  528. icon: 'none',
  529. mask: true
  530. })
  531. },
  532. complete() {
  533. // wx.hideLoading()
  534. }
  535. })
  536. }
  537. },
  538. // 获取统计分析收入
  539. getIncome_list() {
  540. let that = this;
  541. wx.showLoading({
  542. title: '加载中',
  543. mask: true
  544. })
  545. let year = that.data.year;
  546. let month = that.data.month;
  547. if (month < 10) {
  548. month = '0' + month
  549. }
  550. if (that.data.filterType == 1) {
  551. //月份模式
  552. wx.request({
  553. url: api.Income_list,
  554. header: {
  555. 'Authorization': wx.getStorageSync('token')
  556. },
  557. method: 'POST',
  558. data: {
  559. month: year + '-' + month
  560. },
  561. success(res) {
  562. wx.hideLoading()
  563. console.log(res);
  564. if (res.data.code === 1) {
  565. let arr = res.data.data.data;
  566. let xData = [];
  567. let yData = [];
  568. for (let i = 0; i < arr.length; i++) {
  569. xData.push(arr[i].date);
  570. yData.push(arr[i].price);
  571. }
  572. that.setData({
  573. Income_money: res.data.data.money,
  574. Income_list: res.data.data.data,
  575. xData,
  576. yData
  577. })
  578. dataList = res.data.data.data;
  579. that.init_echarts(); //初始化图表
  580. } else {
  581. wx.showToast({
  582. title: res.data.msg,
  583. mask: true,
  584. icon: 'none'
  585. })
  586. }
  587. },
  588. fail(err) {
  589. wx.hideLoading()
  590. wx.showToast({
  591. title: '发起网络请求失败',
  592. icon: 'none',
  593. mask: true
  594. })
  595. },
  596. complete() {
  597. // wx.hideLoading()
  598. }
  599. })
  600. } else if (that.data.filterType == 2) {
  601. //季度模式
  602. wx.request({
  603. url: api.Income_list,
  604. header: {
  605. 'Authorization': wx.getStorageSync('token')
  606. },
  607. method: 'POST',
  608. data: {
  609. quarter: that.data.quarter
  610. },
  611. success(res) {
  612. wx.hideLoading()
  613. console.log(res);
  614. if (res.data.code === 1) {
  615. let arr = res.data.data.data;
  616. let xData = [];
  617. let yData = [];
  618. for (let i = 0; i < arr.length; i++) {
  619. xData.push(arr[i].date);
  620. yData.push(arr[i].price);
  621. }
  622. that.setData({
  623. Income_money: res.data.data.money,
  624. Income_list: res.data.data.data,
  625. xData,
  626. yData
  627. })
  628. dataList = res.data.data.data;
  629. that.init_echarts(); //初始化图表
  630. } else {
  631. wx.showToast({
  632. title: res.data.msg,
  633. mask: true,
  634. icon: 'none'
  635. })
  636. }
  637. },
  638. fail(err) {
  639. wx.hideLoading()
  640. wx.showToast({
  641. title: '发起网络请求失败',
  642. icon: 'none',
  643. mask: true
  644. })
  645. },
  646. complete() {
  647. // wx.hideLoading()
  648. }
  649. })
  650. } else if (that.data.filterType == 3) {
  651. //年份模式
  652. wx.request({
  653. url: api.Income_list,
  654. header: {
  655. 'Authorization': wx.getStorageSync('token')
  656. },
  657. method: 'POST',
  658. data: {
  659. year: year
  660. },
  661. success(res) {
  662. wx.hideLoading()
  663. console.log(res);
  664. if (res.data.code === 1) {
  665. let arr = res.data.data.data;
  666. let xData = [];
  667. let yData = [];
  668. for (let i = 0; i < arr.length; i++) {
  669. xData.push(arr[i].date);
  670. yData.push(arr[i].price);
  671. }
  672. that.setData({
  673. Income_money: res.data.data.money,
  674. Income_list: res.data.data.data,
  675. xData,
  676. yData
  677. })
  678. dataList = res.data.data.data;
  679. that.init_echarts(); //初始化图表
  680. } else {
  681. wx.showToast({
  682. title: res.data.msg,
  683. mask: true,
  684. icon: 'none'
  685. })
  686. }
  687. },
  688. fail(err) {
  689. wx.hideLoading()
  690. wx.showToast({
  691. title: '发起网络请求失败',
  692. icon: 'none',
  693. mask: true
  694. })
  695. },
  696. complete() {
  697. // wx.hideLoading()
  698. }
  699. })
  700. }
  701. },
  702. // 获取统计分析支出
  703. getExpenditure_list() {
  704. let that = this;
  705. wx.showLoading({
  706. title: '加载中',
  707. mask: true
  708. })
  709. let year = that.data.year;
  710. let month = that.data.month;
  711. if (month < 10) {
  712. month = '0' + month
  713. }
  714. if (that.data.filterType == 1) {
  715. //月份模式
  716. wx.request({
  717. url: api.Expenditure_list,
  718. header: {
  719. 'Authorization': wx.getStorageSync('token')
  720. },
  721. method: 'POST',
  722. data: {
  723. month: year + '-' + month
  724. },
  725. success(res) {
  726. wx.hideLoading()
  727. console.log(res);
  728. if (res.data.code === 1) {
  729. let arr = res.data.data.data;
  730. let xData = [];
  731. let yData = [];
  732. for (let i = 0; i < arr.length; i++) {
  733. xData.push(arr[i].date);
  734. yData.push(arr[i].price);
  735. }
  736. that.setData({
  737. Expenditure_money: res.data.data.money,
  738. Expenditure_list: res.data.data.data,
  739. xData,
  740. yData
  741. })
  742. dataList = res.data.data.data;
  743. that.init_echarts(); //初始化图表
  744. } else {
  745. wx.showToast({
  746. title: res.data.msg,
  747. mask: true,
  748. icon: 'none'
  749. })
  750. }
  751. },
  752. fail(err) {
  753. wx.hideLoading()
  754. wx.showToast({
  755. title: '发起网络请求失败',
  756. icon: 'none',
  757. mask: true
  758. })
  759. },
  760. complete() {
  761. // wx.hideLoading()
  762. }
  763. })
  764. } else if (that.data.filterType == 2) {
  765. //季度模式
  766. wx.request({
  767. url: api.Expenditure_list,
  768. header: {
  769. 'Authorization': wx.getStorageSync('token')
  770. },
  771. method: 'POST',
  772. data: {
  773. quarter: that.data.quarter
  774. },
  775. success(res) {
  776. wx.hideLoading()
  777. console.log(res);
  778. if (res.data.code === 1) {
  779. let arr = res.data.data.data;
  780. let xData = [];
  781. let yData = [];
  782. for (let i = 0; i < arr.length; i++) {
  783. xData.push(arr[i].date);
  784. yData.push(arr[i].price);
  785. }
  786. that.setData({
  787. Expenditure_money: res.data.data.money,
  788. Expenditure_list: res.data.data.data,
  789. xData,
  790. yData
  791. })
  792. dataList = res.data.data.data;
  793. that.init_echarts(); //初始化图表
  794. } else {
  795. wx.showToast({
  796. title: res.data.msg,
  797. mask: true,
  798. icon: 'none'
  799. })
  800. }
  801. },
  802. fail(err) {
  803. wx.hideLoading()
  804. wx.showToast({
  805. title: '发起网络请求失败',
  806. icon: 'none',
  807. mask: true
  808. })
  809. },
  810. complete() {
  811. // wx.hideLoading()
  812. }
  813. })
  814. } else if (that.data.filterType == 3) {
  815. //年份模式
  816. wx.request({
  817. url: api.Expenditure_list,
  818. header: {
  819. 'Authorization': wx.getStorageSync('token')
  820. },
  821. method: 'POST',
  822. data: {
  823. year: year
  824. },
  825. success(res) {
  826. wx.hideLoading()
  827. console.log(res);
  828. if (res.data.code === 1) {
  829. let arr = res.data.data.data;
  830. let xData = [];
  831. let yData = [];
  832. for (let i = 0; i < arr.length; i++) {
  833. xData.push(arr[i].date);
  834. yData.push(arr[i].price);
  835. }
  836. that.setData({
  837. Expenditure_money: res.data.data.money,
  838. Expenditure_list: res.data.data.data,
  839. xData,
  840. yData
  841. })
  842. dataList = res.data.data.data;
  843. that.init_echarts(); //初始化图表
  844. } else {
  845. wx.showToast({
  846. title: res.data.msg,
  847. mask: true,
  848. icon: 'none'
  849. })
  850. }
  851. },
  852. fail(err) {
  853. wx.hideLoading()
  854. wx.showToast({
  855. title: '发起网络请求失败',
  856. icon: 'none',
  857. mask: true
  858. })
  859. },
  860. complete() {
  861. // wx.hideLoading()
  862. }
  863. })
  864. }
  865. },
  866. // 初始化图表
  867. init_echarts() {
  868. let that = this;
  869. that.echartsComponnet.init((canvas, width, height, dpr) => {
  870. // 初始化图表
  871. const Chart = echarts.init(canvas, null, {
  872. width: width,
  873. height: height,
  874. devicePixelRatio: dpr // new
  875. })
  876. Chart.setOption(that.getOption());
  877. return Chart;
  878. })
  879. },
  880. // 图表配置项
  881. getOption() {
  882. let that = this;
  883. var option = {
  884. tooltip: {
  885. trigger: 'axis'
  886. },
  887. xAxis: {
  888. type: 'category',
  889. boundaryGap: false,
  890. data: that.data.xData
  891. },
  892. yAxis: {
  893. show: false
  894. },
  895. series: [{
  896. data: that.data.yData,
  897. type: 'line',
  898. smooth: true,
  899. symbolSize: 10,
  900. lineStyle: {
  901. normal: {
  902. color: '#FF874E',
  903. width: 4
  904. }
  905. },
  906. itemStyle: {
  907. borderWidth: 3,
  908. borderColor: '',
  909. color: '#FF874E'
  910. },
  911. areaStyle: {
  912. color: {
  913. type: 'linear',
  914. x: 0,
  915. y: 0,
  916. x2: 0,
  917. y2: 1,
  918. colorStops: [{
  919. offset: 0,
  920. color: '#FF874E' // 0% 处的颜色
  921. },
  922. {
  923. offset: 1,
  924. color: '#FFFFFF' // 100% 处的颜色
  925. }
  926. ],
  927. globalCoord: false // 缺省为 false
  928. },
  929. opacity: 0.5
  930. }
  931. }]
  932. }
  933. return option;
  934. },
  935. // 获取订单收入列表
  936. getorder_list() {
  937. let that = this;
  938. wx.showLoading({
  939. title: '加载中',
  940. mask: true
  941. })
  942. let year = that.data.year;
  943. let month = that.data.month;
  944. if (month < 10) {
  945. month = '0' + month
  946. }
  947. if (that.data.filterType == 1) {
  948. //月份模式
  949. wx.request({
  950. url: api.order_list,
  951. header: {
  952. 'Authorization': wx.getStorageSync('token')
  953. },
  954. method: 'POST',
  955. data: {
  956. month: year + '-' + month
  957. },
  958. success(res) {
  959. wx.hideLoading()
  960. // console.log(res);
  961. if (res.data.code === 1) {
  962. that.setData({
  963. order_list: res.data.data.data
  964. })
  965. } else {
  966. wx.showToast({
  967. title: res.data.msg,
  968. mask: true,
  969. icon: 'none'
  970. })
  971. }
  972. },
  973. fail(err) {
  974. wx.hideLoading()
  975. wx.showToast({
  976. title: '发起网络请求失败',
  977. icon: 'none',
  978. mask: true
  979. })
  980. },
  981. complete() {
  982. // wx.hideLoading()
  983. }
  984. })
  985. } else if (that.data.filterType == 3) {
  986. //年份模式
  987. wx.request({
  988. url: api.order_list,
  989. header: {
  990. 'Authorization': wx.getStorageSync('token')
  991. },
  992. method: 'POST',
  993. data: {
  994. year: year
  995. },
  996. success(res) {
  997. wx.hideLoading()
  998. // console.log(res);
  999. if (res.data.code === 1) {
  1000. that.setData({
  1001. order_list: res.data.data.data
  1002. })
  1003. } else {
  1004. wx.showToast({
  1005. title: res.data.msg,
  1006. mask: true,
  1007. icon: 'none'
  1008. })
  1009. }
  1010. },
  1011. fail(err) {
  1012. wx.hideLoading()
  1013. wx.showToast({
  1014. title: '发起网络请求失败',
  1015. icon: 'none',
  1016. mask: true
  1017. })
  1018. },
  1019. complete() {
  1020. // wx.hideLoading()
  1021. }
  1022. })
  1023. }
  1024. },
  1025. // 显示选择器
  1026. showtime() {
  1027. this.setData({
  1028. show: true
  1029. })
  1030. },
  1031. // 确认月
  1032. oktime(e) {
  1033. let that = this;
  1034. let timec = e.detail;
  1035. let date = new Date(timec);
  1036. let year = date.getFullYear();
  1037. let month = date.getMonth() + 1;
  1038. that.setData({
  1039. year: year,
  1040. month: month,
  1041. show: false
  1042. })
  1043. if (that.data.enterType == 0) {
  1044. // 获取买家排名
  1045. that.getBuyer_ranking()
  1046. } else if (that.data.enterType == 1) {
  1047. // 获取商品排名
  1048. that.getCommodity_ranking()
  1049. } else if (that.data.enterType == 2) {
  1050. // 获取帮卖排名
  1051. that.getHelp_sell_ranking()
  1052. } else if (that.data.enterType == 3) {
  1053. // 获取供应商排名
  1054. that.getSupplier_ranking()
  1055. } else if (that.data.enterType == 4) {
  1056. // 获取统计分析收入
  1057. that.getIncome_list()
  1058. // 获取订单收入列表
  1059. that.getorder_list()
  1060. } else if (that.data.enterType == 5) {
  1061. // 获取统计分析支出
  1062. that.getExpenditure_list()
  1063. }
  1064. },
  1065. // 确认季度
  1066. okquarter(e) {
  1067. let that = this;
  1068. let quarter = e.detail.index + 1;
  1069. that.setData({
  1070. quarter: quarter,
  1071. show: false
  1072. })
  1073. },
  1074. // 确认年
  1075. okyear(e) {
  1076. let that = this;
  1077. let year = e.detail.value;
  1078. that.setData({
  1079. year: year,
  1080. show: false
  1081. })
  1082. if (that.data.enterType == 0) {
  1083. // 获取买家排名
  1084. that.getBuyer_ranking()
  1085. } else if (that.data.enterType == 1) {
  1086. // 获取商品排名
  1087. that.getCommodity_ranking()
  1088. } else if (that.data.enterType == 2) {
  1089. // 获取帮卖排名
  1090. that.getHelp_sell_ranking()
  1091. } else if (that.data.enterType == 3) {
  1092. // 获取供应商排名
  1093. that.getSupplier_ranking()
  1094. } else if (that.data.enterType == 4) {
  1095. // 获取统计分析收入
  1096. that.getIncome_list()
  1097. // 获取订单收入列表
  1098. that.getorder_list()
  1099. } else if (that.data.enterType == 5) {
  1100. // 获取统计分析支出
  1101. that.getExpenditure_list()
  1102. }
  1103. },
  1104. // 关闭选择器
  1105. offtime() {
  1106. this.setData({
  1107. show: false
  1108. })
  1109. },
  1110. })