index.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <template>
  2. <div>
  3. <van-nav-bar left-arrow left-text="返回" @click-left="goBack" title="预约工单" />
  4. <div class="search">
  5. <van-radio-group style="font-size:14px" icon-size="16px" v-model="dateType" direction="horizontal">
  6. <van-radio name="1">七天</van-radio>
  7. <van-radio name="2">近一月</van-radio>
  8. <van-radio name="3">自定义</van-radio>
  9. <van-radio name="4">全年</van-radio>
  10. <van-button type="primary" size="mini" @click="searchFn">查询</van-button>
  11. </van-radio-group>
  12. </div>
  13. <van-cell-group class="date-cell-group" v-show="dateType === '3'">
  14. <van-cell title="选择日期区间" :value="date" @click="show = true" is-link />
  15. <van-calendar v-model="show" type="range" :min-date="minDate" @confirm="onConfirm" />
  16. </van-cell-group>
  17. <div>
  18. <van-row>
  19. <van-col span="24">
  20. <div style="width: auto;height: 400px;" class="payMoney" id="today" @click="toWebsiteFn"></div>
  21. </van-col>
  22. </van-row>
  23. </div>
  24. <van-overlay :show="isshow">
  25. <div class="wrapper">
  26. <van-loading color="#0094ff" size="24px" vertical>加载中...</van-loading>
  27. </div>
  28. </van-overlay>
  29. </div>
  30. </template>
  31. <script>
  32. import { getUrlKey } from '@/utils/common'
  33. export default {
  34. data() {
  35. return {
  36. dateType: '1',
  37. date: '',
  38. show: false,
  39. minDate: new Date(2020, 1, 1),
  40. endDate: '',
  41. startDate: '',
  42. isshow: false
  43. }
  44. },
  45. created() {
  46. this.searchFn()
  47. },
  48. methods: {
  49. toWebsiteFn(e) {
  50. if (e.target.nodeName === 'DIV' || e.target.nodeName === 'SPAN') {
  51. console.log(e)
  52. let time =
  53. e.path.length > 14
  54. ? e.path[7].innerText.split('安装工单量')[0].split('\n')[0]
  55. : e.path[4].innerText.split('安装工单量')[0].split('\n')[0]
  56. this.$router.push({
  57. path: '/reservation/website',
  58. query: {
  59. time,
  60. type: this.dateType
  61. }
  62. })
  63. }
  64. },
  65. //折线图
  66. echartsFn(id, value) {
  67. let myChart = this.$echarts.getInstanceByDom(document.getElementById(id))
  68. if (myChart == null) {
  69. myChart = this.$echarts.init(document.getElementById(id))
  70. }
  71. myChart.setOption(
  72. {
  73. title: {
  74. text: value.title
  75. },
  76. tooltip: {
  77. trigger: 'axis',
  78. triggerOn: 'click',
  79. enterable: true
  80. // formatter: function (params) {
  81. // console.log(params, this);
  82. // // if (params.seriesType === `line`) {
  83. // // setTimeout(() => {
  84. // // this.hookToolTip = params.name;
  85. // // }, 1000);
  86. // // }
  87. // return "{b0}";
  88. // }.bind(this),
  89. },
  90. legend: {
  91. data: value.rightTitle,
  92. top: '6%'
  93. },
  94. grid: {
  95. top: '20%',
  96. left: '3%',
  97. right: '4%',
  98. bottom: '3%',
  99. containLabel: true
  100. },
  101. // toolbox: {
  102. // feature: {
  103. // saveAsImage: {},
  104. // },
  105. // },
  106. xAxis: {
  107. type: 'category',
  108. boundaryGap: false,
  109. data: value.ddate,
  110. axisLabel: {
  111. //坐标轴刻度标签的相关设置。
  112. interval: 'auto',
  113. rotate: '45'
  114. },
  115. axisTick: {
  116. inside: true
  117. }
  118. },
  119. yAxis: {
  120. type: 'value'
  121. },
  122. series: value.ser
  123. },
  124. true
  125. )
  126. myChart.on('click', function (params) {
  127. console.log(params, 1111)
  128. })
  129. },
  130. //折线图数据请求
  131. async installEcharts(params, value) {
  132. let installRes = await this.postRequest('/wechat-analysis/summarys', { sumMode: 'install.reserve', ...params })
  133. let repairRes = await this.postRequest('/wechat-analysis/summarys', { sumMode: 'repair.reserve', ...params })
  134. // console.log(repairRes)
  135. let date = []
  136. let azgdl = []
  137. let azsbs = []
  138. let wxgdl = []
  139. let wxsbs = []
  140. installRes.data.forEach(v => {
  141. date.push(v.ddate)
  142. azgdl.push(v.orderct)
  143. azsbs.push(v.machinect)
  144. })
  145. repairRes.data.forEach(v => {
  146. // date.push(v.ddate)
  147. wxgdl.push(v.orderct)
  148. wxsbs.push(v.machinect)
  149. })
  150. // if (date.length > 20) {
  151. // let a = date.map((v, i) => {
  152. // if ((i + 1) % 7 === 1) {
  153. // return v
  154. // } else {
  155. // return ''
  156. // }
  157. // })
  158. // date = a
  159. // }
  160. // console.log(date)
  161. if (value === 'today') {
  162. let obj = {
  163. title: '预约工单量',
  164. rightTitle: ['安装工单量', '安装设备数', '维修工单量', '维修设备数'],
  165. ddate: date,
  166. ser: [
  167. {
  168. name: '安装工单量',
  169. type: 'line',
  170. data: azgdl
  171. },
  172. {
  173. name: '安装设备数',
  174. type: 'line',
  175. data: azsbs
  176. },
  177. {
  178. name: '维修工单量',
  179. type: 'line',
  180. data: wxgdl
  181. },
  182. {
  183. name: '维修设备数',
  184. type: 'line',
  185. data: wxsbs
  186. }
  187. ]
  188. }
  189. this.echartsFn('today', obj)
  190. this.isshow = false
  191. }
  192. },
  193. //查询
  194. async searchFn() {
  195. this.isshow = true
  196. let params = {
  197. openid: getUrlKey('openid', window.location.href),
  198. moduleId: '11',
  199. type: '家用'
  200. }
  201. let obj = {}
  202. if (this.dateType === '4') {
  203. let nowDate = new Date()
  204. let date = {
  205. // 获取当前年份
  206. year: nowDate.getFullYear(),
  207. //获取当前月份
  208. month: nowDate.getMonth() + 1,
  209. //获取当天
  210. day: nowDate.getDate()
  211. }
  212. let start = date.year + '/01/01'
  213. let end = date.year + '/' + (date.month > 9 ? date.month : '0' + date.month) + '/' + (date.day > 9 ? date.day : '0' + date.day)
  214. obj = {
  215. startDate: start,
  216. endDate: end,
  217. timeConditionType: 'month',
  218. sumType: 0
  219. }
  220. } else if (this.dateType === '3') {
  221. let start = this.startDate
  222. let end = this.endDate
  223. obj = {
  224. startDate: start,
  225. endDate: end,
  226. timeConditionType: 'day',
  227. sumType: 0
  228. }
  229. } else if (this.dateType === '2') {
  230. let start = this.dateUtils.getBeforeDate(31)
  231. // let end = this.dateUtils.formatDate(new Date());
  232. let end = this.dateUtils.getBeforeDate(1)
  233. obj = {
  234. startDate: start,
  235. endDate: end,
  236. timeConditionType: 'day',
  237. sumType: 0
  238. }
  239. } else {
  240. let start = this.dateUtils.getBeforeDate(7)
  241. // let end = this.dateUtils.formatDate(new Date())
  242. let end = this.dateUtils.getBeforeDate(-1)
  243. obj = {
  244. startDate: start,
  245. endDate: end,
  246. timeConditionType: 'day',
  247. sumType: 0
  248. }
  249. }
  250. // let res = await this.postRequest('/wechat-analysis/summarys', { sumMode: 'install.reserve', ...params, ...obj })
  251. this.installEcharts({ ...params, ...obj }, 'today')
  252. },
  253. //日期区间
  254. formatDate(date) {
  255. return `${date.getFullYear()}/${date.getMonth() + 1 > 9 ? date.getMonth() + 1 : '0' + (date.getMonth() + 1)}/${
  256. date.getDate() > 9 ? date.getDate() : '0' + date.getDate()
  257. }`
  258. },
  259. onConfirm(date) {
  260. const [start, end] = date
  261. this.show = false
  262. this.startDate = this.formatDate(start)
  263. this.endDate = this.formatDate(end)
  264. this.date = `${this.formatDate(start)} - ${this.formatDate(end)}`
  265. },
  266. goBack() {
  267. this.$router.back()
  268. }
  269. }
  270. }
  271. </script>
  272. <style lang='scss' scoped>
  273. .wrapper {
  274. display: flex;
  275. align-items: center;
  276. justify-content: center;
  277. height: 100%;
  278. }
  279. .search {
  280. background-color: #fff;
  281. padding: 10px 0;
  282. margin-top: 10px;
  283. .van-radio-group {
  284. justify-content: space-around;
  285. align-items: center;
  286. }
  287. }
  288. .payMoney {
  289. background-color: #fff;
  290. margin-top: 10px;
  291. padding-top: 10px;
  292. }
  293. </style>