| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239 |
- <template>
- <div class="content-container">
- <el-row class="tool-bar">
- <div class="content-title">
- <span> {{ title }} </span>
- </div>
- <div class="select-search">
- <span class="search-label">年度:</span>
- <el-select v-model="conditions.year" filterable placeholder="年份" style="width:120px">
- <el-option label="2022年" :value="2022" />
- <el-option label="2023年" :value="2023" />
- <el-option label="2024年" :value="2024" />
- <el-option label="2025年" :value="2025" />
- <el-option label="2026年" :value="2026" />
- <el-option label="2027年" :value="2027" />
- </el-select>
- </div>
- <div class="select-search">
- <span class="search-label">月份:</span>
- <el-select v-model="conditions.month" filterable placeholder="月份" style="width:120px" clearable>
- <el-option label="1月" :value="1" />
- <el-option label="2月" :value="2" />
- <el-option label="3月" :value="3" />
- <el-option label="4月" :value="4" />
- <el-option label="5月" :value="5" />
- <el-option label="6月" :value="6" />
- <el-option label="7月" :value="7" />
- <el-option label="8月" :value="8" />
- <el-option label="9月" :value="9" />
- <el-option label="10月" :value="10" />
- <el-option label="11月" :value="11" />
- <el-option label="12月" :value="12" />
- </el-select>
- </div>
- <div class="right" style="min-width:400px;flex: 1;">
- <el-input v-model="conditions.keywords" class="search-input m-right-15" placeholder="请输入内容">
- <el-button slot="append" icon="el-icon-search" @click="getData()" />
- </el-input>
- <el-button class="filter-item" type="primary" icon="el-icon-document" size="mini" @click="handleExport">导出</el-button>
- <el-button class="filter-item" style="margin-left: 10px;" type="primary" icon="el-icon-printer" size="mini" @click="handlePrint">打印</el-button>
- </div>
- </el-row>
- <el-row class="content-body">
- <vuescroll :ops="ops" style="height: calc(100vh - 250px)">
- <!--年度-->
- <el-table id="print_view" v-loading="listLoading" border :data="dataList">
- <el-table-column type="index" align="center" label="序号" width="80" />
- <el-table-column prop="year" header-align="center" align="center" width="300" label="部门">
- <template v-slot="{row}">
- <span> {{ row.groupName }} </span>
- </template>
- </el-table-column>
- <el-table-column prop="score" header-align="center" align="center" label="评分均值">
- <template v-slot="{row}">
- <span> {{ row.score }} </span>
- </template>
- </el-table-column>
- <el-table-column prop="score" header-align="center" align="center" label="评价目标数目">
- <template v-slot="{row}">
- <span> {{ row.targetQty }} </span>
- </template>
- </el-table-column>
- <el-table-column prop="score" header-align="center" align="center" label="评价次数">
- <template v-slot="{row}">
- <span> {{ row.recordQty }} </span>
- </template>
- </el-table-column>
- </el-table>
- </vuescroll>
- </el-row>
- </div>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import vuescroll from 'vuescroll'
- import { groupByList } from '@/api/hos/satisfyStatisApi'
- export default {
- name: 'GroupSatisIndex',
- components: { vuescroll },
- mixins: [],
- props: {},
- data() {
- return {
- ops: {
- bar: {
- keepShow: false,
- background: 'rgba(144, 147, 153, 0.4)',
- onlyShowBarOnScroll: false
- }
- },
- title: '部门排名',
- listLoading: false,
- dataList: [],
- conditions: {
- keywords: undefined,
- groupId: undefined,
- year: undefined,
- month: undefined
- }
- }
- },
- computed: {
- ...mapGetters([
- 'userData'
- ])
- },
- mounted() {
- this.getData()
- },
- methods: {
- getData() {
- this.listLoading = true
- groupByList(this.conditions).then((resp) => {
- this.listLoading = false
- const { data } = resp
- this.dataList = data
- }).catch((error) => {
- console.log(error)
- })
- },
- // 导出评价记录
- handleExport() {
- if (this.recordList.length <= 0) {
- this.$message.info('数据为空')
- return
- }
- this.downloadLoading = true
- import('@/vendor/Export2Excel').then(excel => {
- const tHeader = ['科室', '年度', '评价次数', '得分']
- const filterVal = ['groupName', 'year', 'recordQty', 'score']
- const data = this.formatJson(filterVal, this.yearScoreList)
- excel.export_json_to_excel({
- header: tHeader,
- data,
- filename: '',
- autoWidth: true,
- bookType: 'xlsx'
- })
- this.downloadLoading = false
- })
- },
- handlePrint() {
- let iframe = document.getElementById('print-iframe')
- if (!iframe) {
- var el = document.querySelector('#print_view')
- iframe = document.createElement('IFRAME')
- var doc = null
- iframe.setAttribute('id', 'print-iframe')
- iframe.setAttribute('style', 'position:absolute;width:0px;height:0px;left:-500px;top:-500px;')
- document.body.appendChild(iframe)
- doc = iframe.contentWindow.document
- const styleHtml = 'table{color:#fff;background-color:#0C3444;-webkit-print-color-adjust: exact;}' +
- 'td,th{padding:10px;}' +
- 'th{background:#306379;-webkit-print-color-adjust: exact;}' +
- 'td{background:#0C3444;-webkit-print-color-adjust: exact; }'
- doc.write(`<html><head><style media="print">@media print {${styleHtml}}</style></head><body style="zoom: 60%;">${el.innerHTML}</body></html>`)
- doc.close()
- iframe.contentWindow.focus()
- }
- iframe.contentWindow.print()
- document.body.removeChild(iframe)
- // if (navigator.userAgent.indexOf('MSIE') > 0) {
- // document.body.removeChild(iframe)
- // }
- },
- formatJson(filterVal, jsonData) {
- return jsonData.map(v => filterVal.map(j => {
- return v[j]
- }))
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .content-container {
- padding: 10px;
- margin: 10px;
- overflow: hidden;
- background: #193142;
- height: calc(100vh - 85px);
- p {
- margin: 0;
- line-height: 2em;
- padding: 0;
- }
- .tool-bar {
- display: flex;
- align-items: center;
- overflow: unset;
- .list-group {
- font-size: 14px;
- color: #C1C6C8;
- // overflow: hidden;
- padding:0 20px;
- .list-item {
- float: left;
- margin-right: 20px;
- cursor: pointer;
- &.active {
- color: #FFFFFF;
- border-bottom: 3px solid #08A6DC;
- }
- }
- }
- .search-label {
- text-align: right;
- font-size: 12px;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 1;
- span {
- font-size: 20px;
- font-weight: 400;
- color: #FFFFFF;
- }
- }
- }
- }
- .select-search{
- margin-left: 20px;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- </style>
|