123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617 |
- <template>
- <div class="page_timeAll">
- <div class="cell clearfix">
- <!-- <el-select
- v-model="listQuery.value"
- placeholder="请选择"
- style="width:120px;margin-right:20px"
- @change="selectChange"
- >
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- ></el-option>
- </el-select> -->
- <label class="title">
- <span class="name">日期查询</span> :
- </label>
- <el-date-picker
- v-model="listQuery.start_time"
- prefix-icon="el-icon-date"
- @change="changeTime"
- :editable="false"
- style="width: 196px;"
- type="date"
- placeholder="选择日期时间"
- align="right"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- ></el-date-picker>
- <span class>-</span>
- <el-date-picker
- v-model="listQuery.end_time"
- prefix-icon="el-icon-date"
- @change="changeEndTime"
- :editable="false"
- style="width: 196px;"
- type="date"
- placeholder="选择日期时间"
- align="right"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- ></el-date-picker>
- </div>
- <div class="tableTitle">统计图</div>
- <div class="cell clearfix" style="margin:0;">
- <p class="point"></p>
- <p class="pointTitle">次</p>
- </div>
- <div>
- <line-chart :options="chart"></line-chart>
- </div>
- <div class="tableTitle">统计表</div>
- <div>
- <div style="margin-bottom: 10px;">
- <el-button @click="exportList" type="primary">导出</el-button>
- </div>
- <el-table :data="tableData" border style="width: 100%" :row-style="{ color: '#303133' }" :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}">
- <el-table-column
- fixed
- label="日期"
- width="100"
- property="date"
- align="center"
- ></el-table-column>
-
- <el-table-column
- :label="modeItem.name"
- property="number"
- align="center"
- min-width="100"
- v-for="(modeItem, index) in activeModes"
- :key="index"
- >
- <template slot-scope="scope">
- {{ scope.row.data[modeItem.id].number ? scope.row.data[modeItem.id].number : "" }}
- </template>
- </el-table-column>
-
- <el-table-column
- fixed="right"
- label="总次数"
- width="80"
- property="total"
- align="center"
- ></el-table-column>
- </el-table>
-
- <!-- <el-pagination-->
- <!-- align="right"-->
- <!-- @size-change="handleSizeChange"-->
- <!-- @current-change="handleCurrentChange"-->
- <!-- :current-page="listQuery.page"-->
- <!-- :page-sizes="[20, 40, 60, 80,100]"-->
- <!-- :page-size="10"-->
- <!-- background-->
- <!-- style="margin-top:20px;"-->
- <!-- layout="total, sizes, prev, pager, next, jumper"-->
- <!-- :total="total"-->
- <!-- ></el-pagination>-->
- </div>
- </div>
- </template>
-
- <script>
- import echarts from "echarts";
- import LineChart from "../../components/LineChart";
- import {geStatistics,getTreatlist} from "@/api/common/common"
- export default {
- components: {
- LineChart
- },
- data() {
- return {
- options: [
- {
- value: 0,
- label: "全部"
- },
- {
- value: 1,
- label: "留治"
- },
- {
- value: 2,
- label: "转出"
- },
- ],
- chart: {
- tooltip: {},
- // legend: {
- // data: ["次"],
- // left: 0
- // },
- xAxis: {
- data: []
- },
- yAxis: {
- axisLabel: {
- formatter: "{value} %"
- },
- show: false
- },
- series: [
- {
- name: "次",
- type: "bar",
- data: [],
- barWidth: 30,
- label: {
- normal: {
- show: true,
- position: "top",
- formatter: "{c}次"
- }
- },
- //配置样式
- itemStyle: {
- //通常情况下:
-
- //每个柱子的颜色即为colorList数组里的每一项,如果柱子数目多于colorList的长度,则柱子颜色循环使用该数组
- normal: {
- color: function(params) {
- //我这边就两个柱子,大体就两个柱子颜色渐变,所以数组只有两个值,多个颜色就多个值
- var colorList = [
- ["#A9E0F3", "#9FBDFC"],
- ["#A9E0F3", "#9FBDFC"],
- ["#A9E0F3", "#9FBDFC"],
- ["#FFD7C0", "#FF9994"],
- ["#FFD7C0", "#FF9994"],
- ["#FFD7C0", "#FF9994"],
- ["#D7C3FD", "#B3A8F7"],
- ["#D7C3FD", "#B3A8F7"],
- ["#D7C3FD", "#B3A8F7"]
- ];
-
- var index = params.dataIndex;
- if (params.dataIndex >= colorList.length) {
- index = params.dataIndex % colorList.length;
- }
-
- return new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: colorList[index][0] },
- // { offset: 0.5, color: colorList[index][1] },
- { offset: 1, color: colorList[index][1] }
- ]);
- },
- barBorderRadius: [5, 5, 0, 0] //柱状角成椭圆形
- },
-
- //鼠标悬停时:
- emphasis: {
- shadowBlur: 10,
- shadowOffsetX: 0,
- shadowColor: "rgba(0, 0, 0, 0.2)"
- }
- }
- }
- ]
- },
- modeOptions:[],
- total:0,
- listQuery: {
- start_time: "",
- end_time: "",
- page: 1,
- limit: 20,
- value: 0,
- mode_id:"",
- },
- tableData:[],
- modesData: {
- xAxis: [],
- series: []
- },
- pickerOptions: {
- disabledDate(time) {
- let threeMonths = new Date(new Date().setFullYear(new Date().getFullYear()-1)).getTime() - 24 * 3600 * 1000;
- return time.getTime() > Date.now() || time.getTime() < threeMonths;;
- }
- },
- };
- },
- methods: {
- exportList(){
- // console.log("DialysisData",this.tableData)
- // console.log("activeModes",this.activeModes)
-
- if(this.tableData!=null && this.tableData.length>0){
- for(let i=0;i<this.tableData.length;i++){
- this.tableData[i].index = i +1
- for(let j=0;j<this.activeModes.length;j++){
-
- if(this.activeModes[j].id == 1){
-
- this.tableData[i].mode_id_1 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 2){
- this.tableData[i].mode_id_2 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 3){
- this.tableData[i].mode_id_3 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 4){
- this.tableData[i].mode_id_4 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 5){
- this.tableData[i].mode_id_5 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 6){
- this.tableData[i].mode_id_6 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 7){
- this.tableData[i].mode_id_7 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 8){
- this.tableData[i].mode_id_8 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 9){
- this.tableData[i].mode_id_9 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 10){
- this.tableData[i].mode_id_10 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 11){
- this.tableData[i].mode_id_11 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 12){
- this.tableData[i].mode_id_12 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 13){
- this.tableData[i].mode_id_13 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 14){
- this.tableData[i].mode_id_14 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
-
-
- if(this.activeModes[j].id == 19){
- this.tableData[i].mode_id_19 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 20){
- this.tableData[i].mode_id_20 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 21){
- this.tableData[i].mode_id_21 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 22){
- this.tableData[i].mode_id_22 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 23){
- this.tableData[i].mode_id_23 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 24){
- this.tableData[i].mode_id_24 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 25){
- this.tableData[i].mode_id_25 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 26){
- this.tableData[i].mode_id_26 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 27){
- this.tableData[i].mode_id_27 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 28){
- this.tableData[i].mode_id_28 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 29){
- this.tableData[i].mode_id_29 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 30){
- this.tableData[i].mode_id_30 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 31){
- this.tableData[i].mode_id_31 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 32){
- this.tableData[i].mode_id_32 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 33){
- this.tableData[i].mode_id_33 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 34){
- this.tableData[i].mode_id_34 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 35){
- this.tableData[i].mode_id_35 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 36){
- this.tableData[i].mode_id_36 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 37){
- this.tableData[i].mode_id_37 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 38){
- this.tableData[i].mode_id_38 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 39){
- this.tableData[i].mode_id_39 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 40){
- this.tableData[i].mode_id_40 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 41){
- this.tableData[i].mode_id_41 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- if(this.activeModes[j].id == 42){
- this.tableData[i].mode_id_42 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
- if(this.activeModes[j].id == 43){
- this.tableData[i].mode_id_43 = this.tableData[i].data[this.activeModes[j].id].number?this.tableData[i].data[this.activeModes[j].id].number:""
- }
-
- }
- }
- }
-
-
- import('@/vendor/Export2Excel').then(excel => {
- 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)']
- 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']
-
- const data = this.formatJson(filterVal, this.tableData)
-
- excel.export_json_to_excel({
- header: tHeader,
- data,
- filename: '透析详情'
- })
- this.downloadLoading = false
- })
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map(v =>
- filterVal.map(j => {
- if (j === "timestamp") {
- return parseTime(v[j]);
- } else {
- return v[j];
- }
- })
- );
- },
- changeTime(val) {
- var time = this.getTimestamp(val) - this.getTimestamp(this.listQuery.end_time);
- if (time > 0) {
- this.$message.error("结束时间不能小于开始时间");
- this.listQuery.start_time = "";
- } else {
- this.geStatistics()
- this.getlist()
- }
-
- },
- changeEndTime(val) {
- var time = this.getTimestamp(val) - this.getTimestamp(this.listQuery.start_time);
- if (time < 0) {
- this.$message.error("结束时间不能小于开始时间");
- this.listQuery.end_time = "";
- } else {
- this.geStatistics()
- this.getlist()
- }
- },
- getTimestamp(time) {
- // 把时间日期转成时间戳
- return new Date(time).getTime() / 1000;
- },
- handleSizeChange(limit) {
- this.listQuery.limit = limit;
- this.geStatistics();
- },
- handleCurrentChange(page) {
- this.tableData = []
- this.listQuery.page = page;
- this.geStatistics();
- },
- selectChange(val){
- this.tableData=[]
- this.listQuery.value =val
- this.geStatistics()
- this.getlist()
- },
- getlist(){
- this.modesData.series = []
- this.modesData.xAxis = []
- getTreatlist(this.listQuery).then(response=>{
- if(response.data.state == 1){
- var ttd = response.data.data.list
- var modeMap = {};
- var batotal = 0;
- for (const index in ttd) {
- if (ttd[index].mode_id == "0") {
- continue;
- }
- modeMap[ttd[index].mode_id] = ttd[index];
- }
- for (const key in this.modeOptions) {
- this.modesData.xAxis.push(this.modeOptions[key].name);
- if (key in modeMap) {
- this.modesData.series.push(parseInt(modeMap[key].number));
- batotal += parseInt(modeMap[key].number);
- } else {
- this.modesData.series.push(0);
- }
- }
-
- this.chart.series[0].data = this.modesData.series
- this.chart.xAxis.data = this.modesData.xAxis
- }
- })
- },
- geStatistics(){
- console.log("this9999999",this.listQuery)
- geStatistics(this.listQuery).then(response=>{
-
- if(response.data.state === 1){
- this.tableData = []
- var statistics = response.data.data.statistics
- var treatinfo = response.data.data.treatinfo
- this.total = response.data.data.total
- let dataInfo = {}
- treatinfo.forEach((item, index) => {
- let { date } = item
- if (!dataInfo[date]) {
- dataInfo[date] = {
- date,
- child: [],
- }
- }
- })
- let list = Object.values(dataInfo)
-
- list.map(item=>{
- for(let i=0;i<statistics.length;i++){
- if(item.date == statistics[i].date){
- item.child.push(statistics[i])
- }
- }
- })
- var dtd = []
- list.map(item=>{
- item.child.map(it=>{
- dtd.push(it)
- })
- })
- var dd = {};
- for (const index in dtd) {
- if (!(dtd[index].date in dd)) {
- dd[dtd[index].date] = {};
- }
- if (!(dtd[index].mode_id in dd[dtd[index].date]) && dtd[index].mode_id != "0") {
- dd[dtd[index].date][dtd[index].mode_id] = dtd[index];
- }
- }
-
- for (const key in dd) {
- var total = 0;
- for (const mkey in this.modeOptions) {
- if (mkey in dd[key]) {
-
- console.log(this.modeOptions[mkey].name)
- dd[key][mkey].mode = this.modeOptions[mkey].name;
- var number = parseInt(dd[key][mkey].number);
- if (isNaN(number) || number == 0) {
- dd[key][mkey].number = "";
- number = 0;
- }
- total += number;
- } else {
- dd[key][mkey] = {
- mode: this.modeOptions[mkey].name,
- mode_id: mkey,
- number: 0
- };
- }
- }
- this.tableData.push({ date: key, data: dd[key], total: total });
- }
- }
- })
- },
-
- },
- created(){
- this.modeOptions = this.$store.getters.treatment_mode;
- var nowDate = new Date();
- var nowYear = nowDate.getFullYear();
- var nowMonth = nowDate.getMonth() + 1;
- var nowDay = nowDate.getDate();
- this.listQuery.end_time =
- nowYear +
- "-" +
- (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
- "-" +
- (nowDay < 10 ? "0" + nowDay : nowDay);
- nowDate.setMonth(nowDate.getMonth() - 3);
- nowYear = nowDate.getFullYear();
- nowMonth = nowDate.getMonth() + 1;
- nowDay = nowDate.getDate();
- this.listQuery.start_time =
- nowYear +
- "-" +
- (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
- "-" +
- (nowDay < 10 ? "0" + nowDay : nowDay);
- //获取柱状图数据
- this.getlist()
- //获取统计列表数据
- this.geStatistics()
- },
- computed: {
- activeModes: function() {
- var modes = [];
- for (const key in this.modeOptions) {
- if (this.listQuery.mode_id == key || this.listQuery.mode_id == "") {
- modes.push(this.modeOptions[key]);
- }
- }
-
- return modes;
-
- }
- },
- };
- </script>
-
- <style lang="scss" scoped>
- .tableTitle {
- font-size: 16px;
- color: #000;
- font-weight: bold;
- margin-bottom: 10px;
- }
- .point {
- width: 13px;
- height: 13px;
- background: linear-gradient(
- 0deg,
- rgba(169, 224, 243, 1),
- rgba(159, 189, 252, 1)
- );
- border-radius: 7px;
- margin-right: 8px;
- }
- .pointTitle {
- font-size: 13px;
- }
- </style>
-
- <style lang="scss">
- .page_timeAll {
- .cell {
- text-align: center;
- }
- .el-table{
- ::-webkit-scrollbar{
- height: 15px;
- }
- }
- }
- </style>
|