TimeAll.vue 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  1. <template>
  2. <div class="page_timeAll">
  3. <div class="cell clearfix">
  4. <!-- <el-select
  5. v-model="listQuery.value"
  6. placeholder="请选择"
  7. style="width:120px;margin-right:20px"
  8. @change="selectChange"
  9. >
  10. <el-option
  11. v-for="item in options"
  12. :key="item.value"
  13. :label="item.label"
  14. :value="item.value"
  15. ></el-option>
  16. </el-select> -->
  17. <label class="title">
  18. <span class="name">日期查询</span> :
  19. </label>
  20. <el-date-picker
  21. v-model="listQuery.start_time"
  22. prefix-icon="el-icon-date"
  23. @change="changeTime"
  24. :editable="false"
  25. style="width: 196px;"
  26. type="date"
  27. placeholder="选择日期时间"
  28. align="right"
  29. format="yyyy-MM-dd"
  30. value-format="yyyy-MM-dd"
  31. ></el-date-picker>
  32. <span class>-</span>
  33. <el-date-picker
  34. v-model="listQuery.end_time"
  35. prefix-icon="el-icon-date"
  36. @change="changeEndTime"
  37. :editable="false"
  38. style="width: 196px;"
  39. type="date"
  40. placeholder="选择日期时间"
  41. align="right"
  42. format="yyyy-MM-dd"
  43. value-format="yyyy-MM-dd"
  44. ></el-date-picker>
  45. </div>
  46. <div class="tableTitle">统计图</div>
  47. <div class="cell clearfix" style="margin:0;">
  48. <p class="point"></p>
  49. <p class="pointTitle">次</p>
  50. </div>
  51. <div>
  52. <line-chart :options="chart"></line-chart>
  53. </div>
  54. <div class="tableTitle">统计表</div>
  55. <div>
  56. <div style="margin-bottom: 10px;">
  57. <el-button @click="exportList" type="primary">导出</el-button>
  58. </div>
  59. <el-table :data="tableData" border style="width: 100%" :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}">
  60. <el-table-column
  61. fixed
  62. label="日期"
  63. width="100"
  64. property="date"
  65. align="center"
  66. ></el-table-column>
  67. <el-table-column
  68. :label="modeItem.name"
  69. property="number"
  70. align="center"
  71. min-width="100"
  72. v-for="(modeItem, index) in activeModes"
  73. :key="index"
  74. >
  75. <template slot-scope="scope">
  76. {{ scope.row.data[modeItem.id].number ? scope.row.data[modeItem.id].number : "" }}
  77. </template>
  78. </el-table-column>
  79. <el-table-column
  80. fixed="right"
  81. label="总次数"
  82. width="80"
  83. property="total"
  84. align="center"
  85. ></el-table-column>
  86. </el-table>
  87. <!-- <el-pagination-->
  88. <!-- align="right"-->
  89. <!-- @size-change="handleSizeChange"-->
  90. <!-- @current-change="handleCurrentChange"-->
  91. <!-- :current-page="listQuery.page"-->
  92. <!-- :page-sizes="[20, 40, 60, 80,100]"-->
  93. <!-- :page-size="10"-->
  94. <!-- background-->
  95. <!-- style="margin-top:20px;"-->
  96. <!-- layout="total, sizes, prev, pager, next, jumper"-->
  97. <!-- :total="total"-->
  98. <!-- ></el-pagination>-->
  99. </div>
  100. </div>
  101. </template>
  102. <script>
  103. import echarts from "echarts";
  104. import LineChart from "../../components/LineChart";
  105. import {geStatistics,getTreatlist} from "@/api/common/common"
  106. export default {
  107. components: {
  108. LineChart
  109. },
  110. data() {
  111. return {
  112. options: [
  113. {
  114. value: 0,
  115. label: "全部"
  116. },
  117. {
  118. value: 1,
  119. label: "留治"
  120. },
  121. {
  122. value: 2,
  123. label: "转出"
  124. },
  125. ],
  126. chart: {
  127. tooltip: {},
  128. // legend: {
  129. // data: ["次"],
  130. // left: 0
  131. // },
  132. xAxis: {
  133. data: []
  134. },
  135. yAxis: {
  136. axisLabel: {
  137. formatter: "{value} %"
  138. },
  139. show: false
  140. },
  141. series: [
  142. {
  143. name: "次",
  144. type: "bar",
  145. data: [],
  146. barWidth: 30,
  147. label: {
  148. normal: {
  149. show: true,
  150. position: "top",
  151. formatter: "{c}次"
  152. }
  153. },
  154. //配置样式
  155. itemStyle: {
  156. //通常情况下:
  157. //每个柱子的颜色即为colorList数组里的每一项,如果柱子数目多于colorList的长度,则柱子颜色循环使用该数组
  158. normal: {
  159. color: function(params) {
  160. //我这边就两个柱子,大体就两个柱子颜色渐变,所以数组只有两个值,多个颜色就多个值
  161. var colorList = [
  162. ["#A9E0F3", "#9FBDFC"],
  163. ["#A9E0F3", "#9FBDFC"],
  164. ["#A9E0F3", "#9FBDFC"],
  165. ["#FFD7C0", "#FF9994"],
  166. ["#FFD7C0", "#FF9994"],
  167. ["#FFD7C0", "#FF9994"],
  168. ["#D7C3FD", "#B3A8F7"],
  169. ["#D7C3FD", "#B3A8F7"],
  170. ["#D7C3FD", "#B3A8F7"]
  171. ];
  172. var index = params.dataIndex;
  173. if (params.dataIndex >= colorList.length) {
  174. index = params.dataIndex % colorList.length;
  175. }
  176. return new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  177. { offset: 0, color: colorList[index][0] },
  178. // { offset: 0.5, color: colorList[index][1] },
  179. { offset: 1, color: colorList[index][1] }
  180. ]);
  181. },
  182. barBorderRadius: [5, 5, 0, 0] //柱状角成椭圆形
  183. },
  184. //鼠标悬停时:
  185. emphasis: {
  186. shadowBlur: 10,
  187. shadowOffsetX: 0,
  188. shadowColor: "rgba(0, 0, 0, 0.2)"
  189. }
  190. }
  191. }
  192. ]
  193. },
  194. modeOptions:[],
  195. total:0,
  196. listQuery: {
  197. start_time: "",
  198. end_time: "",
  199. page: 1,
  200. limit: 20,
  201. value: 0,
  202. mode_id:"",
  203. },
  204. tableData:[],
  205. modesData: {
  206. xAxis: [],
  207. series: []
  208. },
  209. pickerOptions: {
  210. disabledDate(time) {
  211. let threeMonths = new Date(new Date().setFullYear(new Date().getFullYear()-1)).getTime() - 24 * 3600 * 1000;
  212. return time.getTime() > Date.now() || time.getTime() < threeMonths;;
  213. }
  214. },
  215. };
  216. },
  217. methods: {
  218. exportList(){
  219. // console.log("DialysisData",this.tableData)
  220. // console.log("activeModes",this.activeModes)
  221. if(this.tableData!=null && this.tableData.length>0){
  222. for(let i=0;i<this.tableData.length;i++){
  223. this.tableData[i].index = i +1
  224. for(let j=0;j<this.activeModes.length;j++){
  225. if(this.activeModes[j].id == 1){
  226. this.tableData[i].mode_id_1 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  227. }
  228. if(this.activeModes[j].id == 2){
  229. this.tableData[i].mode_id_2 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  230. }
  231. if(this.activeModes[j].id == 3){
  232. this.tableData[i].mode_id_3 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  233. }
  234. if(this.activeModes[j].id == 4){
  235. this.tableData[i].mode_id_4 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  236. }
  237. if(this.activeModes[j].id == 5){
  238. this.tableData[i].mode_id_5 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  239. }
  240. if(this.activeModes[j].id == 6){
  241. this.tableData[i].mode_id_6 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  242. }
  243. if(this.activeModes[j].id == 7){
  244. this.tableData[i].mode_id_7 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  245. }
  246. if(this.activeModes[j].id == 8){
  247. this.tableData[i].mode_id_8 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  248. }
  249. if(this.activeModes[j].id == 9){
  250. this.tableData[i].mode_id_9 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  251. }
  252. if(this.activeModes[j].id == 10){
  253. this.tableData[i].mode_id_10 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  254. }
  255. if(this.activeModes[j].id == 11){
  256. this.tableData[i].mode_id_11 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  257. }
  258. if(this.activeModes[j].id == 12){
  259. this.tableData[i].mode_id_12 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  260. }
  261. if(this.activeModes[j].id == 13){
  262. this.tableData[i].mode_id_13 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  263. }
  264. if(this.activeModes[j].id == 14){
  265. this.tableData[i].mode_id_14 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  266. }
  267. if(this.activeModes[j].id == 19){
  268. this.tableData[i].mode_id_19 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  269. }
  270. if(this.activeModes[j].id == 20){
  271. this.tableData[i].mode_id_20 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  272. }
  273. if(this.activeModes[j].id == 21){
  274. this.tableData[i].mode_id_21 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  275. }
  276. if(this.activeModes[j].id == 22){
  277. this.tableData[i].mode_id_22 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  278. }
  279. if(this.activeModes[j].id == 23){
  280. this.tableData[i].mode_id_23 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  281. }
  282. if(this.activeModes[j].id == 24){
  283. this.tableData[i].mode_id_24 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  284. }
  285. if(this.activeModes[j].id == 25){
  286. this.tableData[i].mode_id_25 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  287. }
  288. if(this.activeModes[j].id == 26){
  289. this.tableData[i].mode_id_26 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  290. }
  291. if(this.activeModes[j].id == 27){
  292. this.tableData[i].mode_id_27 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  293. }
  294. if(this.activeModes[j].id == 28){
  295. this.tableData[i].mode_id_28 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  296. }
  297. if(this.activeModes[j].id == 29){
  298. this.tableData[i].mode_id_29 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  299. }
  300. if(this.activeModes[j].id == 30){
  301. this.tableData[i].mode_id_30 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  302. }
  303. if(this.activeModes[j].id == 31){
  304. this.tableData[i].mode_id_31 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  305. }
  306. if(this.activeModes[j].id == 32){
  307. this.tableData[i].mode_id_32 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  308. }
  309. if(this.activeModes[j].id == 33){
  310. this.tableData[i].mode_id_33 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  311. }
  312. if(this.activeModes[j].id == 34){
  313. this.tableData[i].mode_id_34 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  314. }
  315. if(this.activeModes[j].id == 35){
  316. this.tableData[i].mode_id_35 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  317. }
  318. if(this.activeModes[j].id == 36){
  319. this.tableData[i].mode_id_36 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  320. }
  321. if(this.activeModes[j].id == 37){
  322. this.tableData[i].mode_id_37 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  323. }
  324. if(this.activeModes[j].id == 38){
  325. this.tableData[i].mode_id_38 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  326. }
  327. if(this.activeModes[j].id == 39){
  328. this.tableData[i].mode_id_39 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  329. }
  330. if(this.activeModes[j].id == 40){
  331. this.tableData[i].mode_id_40 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  332. }
  333. if(this.activeModes[j].id == 41){
  334. this.tableData[i].mode_id_41 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  335. }
  336. if(this.activeModes[j].id == 42){
  337. this.tableData[i].mode_id_42 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  338. }
  339. if(this.activeModes[j].id == 43){
  340. this.tableData[i].mode_id_43 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
  341. }
  342. }
  343. }
  344. }
  345. import('@/vendor/Export2Excel').then(excel => {
  346. const tHeader = ['序号','日期','HD','HDF','HD+HP','HP','HF','SCUF','IUF','HFHD','HFHD+HP','PHF','HFR','HDF+HP','CRRT','腹水回输','IUF+HD','UF','HD+','血浆胆红素吸附+HDF','血浆胆红素吸附','I-HDF','HD高通','CVVH','CVVHD','CVVHDF','PE','血浆胆红素吸附+HP','HPD','HDP','HFD','HDF100','HDF600','HDF800','HDF1000','HDF80','HF16','HD(无肝素)','HDF17H','HD.','HD(2)']
  347. const filterVal = ['index','date','mode_id_1','mode_id_2','mode_id_3','mode_id_4','mode_id_5','mode_id_6','mode_id_7','mode_id_8','mode_id_9','mode_id_10','mode_id_11','mode_id_12','mode_id_13','mode_id_14','mode_id_19','mode_id_20','mode_id_21','mode_id_22','mode_id_23','mode_id_24','mode_id_25','mode_id_26','mode_id_27','mode_id_28','mode_id_29','mode_id_30','mode_id_31','mode_id_32','mode_id_33','mode_id_34','mode_id_35','mode_id_36','mode_id_37','mode_id_38','mode_id_39','mode_id_40','mode_id_41','mode_id_42','mode_id_43']
  348. const data = this.formatJson(filterVal, this.tableData)
  349. excel.export_json_to_excel({
  350. header: tHeader,
  351. data,
  352. filename: '透析详情'
  353. })
  354. this.downloadLoading = false
  355. })
  356. },
  357. formatJson(filterVal, jsonData) {
  358. return jsonData.map(v =>
  359. filterVal.map(j => {
  360. if (j === "timestamp") {
  361. return parseTime(v[j]);
  362. } else {
  363. return v[j];
  364. }
  365. })
  366. );
  367. },
  368. changeTime(val) {
  369. var time = this.getTimestamp(val) - this.getTimestamp(this.listQuery.end_time);
  370. if (time > 0) {
  371. this.$message.error("结束时间不能小于开始时间");
  372. this.listQuery.start_time = "";
  373. } else {
  374. this.geStatistics()
  375. this.getlist()
  376. }
  377. },
  378. changeEndTime(val) {
  379. var time = this.getTimestamp(val) - this.getTimestamp(this.listQuery.start_time);
  380. if (time < 0) {
  381. this.$message.error("结束时间不能小于开始时间");
  382. this.listQuery.end_time = "";
  383. } else {
  384. this.geStatistics()
  385. this.getlist()
  386. }
  387. },
  388. getTimestamp(time) {
  389. // 把时间日期转成时间戳
  390. return new Date(time).getTime() / 1000;
  391. },
  392. handleSizeChange(limit) {
  393. this.listQuery.limit = limit;
  394. this.geStatistics();
  395. },
  396. handleCurrentChange(page) {
  397. this.tableData = []
  398. this.listQuery.page = page;
  399. this.geStatistics();
  400. },
  401. selectChange(val){
  402. this.tableData=[]
  403. this.listQuery.value =val
  404. this.geStatistics()
  405. this.getlist()
  406. },
  407. getlist(){
  408. this.modesData.series = []
  409. this.modesData.xAxis = []
  410. getTreatlist(this.listQuery).then(response=>{
  411. if(response.data.state == 1){
  412. var ttd = response.data.data.list
  413. var modeMap = {};
  414. var batotal = 0;
  415. for (const index in ttd) {
  416. if (ttd[index].mode_id == "0") {
  417. continue;
  418. }
  419. modeMap[ttd[index].mode_id] = ttd[index];
  420. }
  421. for (const key in this.modeOptions) {
  422. this.modesData.xAxis.push(this.modeOptions[key].name);
  423. if (key in modeMap) {
  424. this.modesData.series.push(parseInt(modeMap[key].number));
  425. batotal += parseInt(modeMap[key].number);
  426. } else {
  427. this.modesData.series.push(0);
  428. }
  429. }
  430. this.chart.series[0].data = this.modesData.series
  431. this.chart.xAxis.data = this.modesData.xAxis
  432. }
  433. })
  434. },
  435. geStatistics(){
  436. console.log("this9999999",this.listQuery)
  437. geStatistics(this.listQuery).then(response=>{
  438. if(response.data.state === 1){
  439. this.tableData = []
  440. var statistics = response.data.data.statistics
  441. var treatinfo = response.data.data.treatinfo
  442. this.total = response.data.data.total
  443. let dataInfo = {}
  444. treatinfo.forEach((item, index) => {
  445. let { date } = item
  446. if (!dataInfo[date]) {
  447. dataInfo[date] = {
  448. date,
  449. child: [],
  450. }
  451. }
  452. })
  453. let list = Object.values(dataInfo)
  454. list.map(item=>{
  455. for(let i=0;i<statistics.length;i++){
  456. if(item.date == statistics[i].date){
  457. item.child.push(statistics[i])
  458. }
  459. }
  460. })
  461. var dtd = []
  462. list.map(item=>{
  463. item.child.map(it=>{
  464. dtd.push(it)
  465. })
  466. })
  467. var dd = {};
  468. for (const index in dtd) {
  469. if (!(dtd[index].date in dd)) {
  470. dd[dtd[index].date] = {};
  471. }
  472. if (!(dtd[index].mode_id in dd[dtd[index].date]) && dtd[index].mode_id != "0") {
  473. dd[dtd[index].date][dtd[index].mode_id] = dtd[index];
  474. }
  475. }
  476. for (const key in dd) {
  477. var total = 0;
  478. for (const mkey in this.modeOptions) {
  479. if (mkey in dd[key]) {
  480. console.log(this.modeOptions[mkey].name)
  481. dd[key][mkey].mode = this.modeOptions[mkey].name;
  482. var number = parseInt(dd[key][mkey].number);
  483. if (isNaN(number) || number == 0) {
  484. dd[key][mkey].number = "";
  485. number = 0;
  486. }
  487. total += number;
  488. } else {
  489. dd[key][mkey] = {
  490. mode: this.modeOptions[mkey].name,
  491. mode_id: mkey,
  492. number: 0
  493. };
  494. }
  495. }
  496. this.tableData.push({ date: key, data: dd[key], total: total });
  497. }
  498. }
  499. })
  500. },
  501. },
  502. created(){
  503. this.modeOptions = this.$store.getters.treatment_mode;
  504. var nowDate = new Date();
  505. var nowYear = nowDate.getFullYear();
  506. var nowMonth = nowDate.getMonth() + 1;
  507. var nowDay = nowDate.getDate();
  508. this.listQuery.end_time =
  509. nowYear +
  510. "-" +
  511. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  512. "-" +
  513. (nowDay < 10 ? "0" + nowDay : nowDay);
  514. nowDate.setMonth(nowDate.getMonth() - 3);
  515. nowYear = nowDate.getFullYear();
  516. nowMonth = nowDate.getMonth() + 1;
  517. nowDay = nowDate.getDate();
  518. this.listQuery.start_time =
  519. nowYear +
  520. "-" +
  521. (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
  522. "-" +
  523. (nowDay < 10 ? "0" + nowDay : nowDay);
  524. //获取柱状图数据
  525. this.getlist()
  526. //获取统计列表数据
  527. this.geStatistics()
  528. },
  529. computed: {
  530. activeModes: function() {
  531. var modes = [];
  532. for (const key in this.modeOptions) {
  533. if (this.listQuery.mode_id == key || this.listQuery.mode_id == "") {
  534. modes.push(this.modeOptions[key]);
  535. }
  536. }
  537. return modes;
  538. }
  539. },
  540. };
  541. </script>
  542. <style lang="scss" scoped>
  543. .tableTitle {
  544. font-size: 16px;
  545. color: #000;
  546. font-weight: bold;
  547. margin-bottom: 10px;
  548. }
  549. .point {
  550. width: 13px;
  551. height: 13px;
  552. background: linear-gradient(
  553. 0deg,
  554. rgba(169, 224, 243, 1),
  555. rgba(159, 189, 252, 1)
  556. );
  557. border-radius: 7px;
  558. margin-right: 8px;
  559. }
  560. .pointTitle {
  561. font-size: 13px;
  562. }
  563. </style>
  564. <style lang="scss">
  565. .page_timeAll {
  566. .cell {
  567. text-align: center;
  568. }
  569. .el-table{
  570. ::-webkit-scrollbar{
  571. height: 15px;
  572. }
  573. }
  574. }
  575. </style>