123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- <template>
- <div class="m-container">
- <h2>
- <div class="squrt"></div>报表中心
- </h2>
- <div class="m-core">
- <div class="m-wrap">
- <div class="title">课酬导出:</div>
- <el-date-picker v-model="mouth"
- type="month"
- placeholder="选择月"
- value-format="yyyy-MM-dd"></el-date-picker>
- <div class="newBand"
- @click="exportSalar"
- v-permission="'export/teacherSalary'">导出</div>
- <el-tooltip placement="top"
- popper-class="mTooltip">
- <div slot="content">
- 将只导出当前选择月份已结算的课程课酬。
- </div>
- <!-- <img :src="imageIcon" class="micon el-tooltip" style="width:8px height:8px" alt /> -->
- <i class="el-icon-question micon el-tooltip"
- style="font-size: 18px; color: #F56C6C"></i>
- </el-tooltip>
- </div>
- <el-divider></el-divider>
- <div class="m-core">
- <div class="m-wrap">
- <div class="title">乐团招生汇总:
- </div>
- <el-select v-model.trim="organIdList"
- class="organSelect"
- style="width:100%"
- filterable
- multiple
- clearable>
- <el-option v-for="(item,index) in organList"
- :key="index"
- :label="item.name"
- :value="item.id"></el-option>
- </el-select>
- <div class="newBand"
- @click="exportMusicGroup"
- v-permission="'export/musicGroupRegister'">导出</div>
- <el-tooltip placement="top"
- popper-class="mTooltip">
- <div slot="content">
- 请选择分部后,导出招生情况汇总表,分部可多选
- </div>
- <i class="el-icon-question micon el-tooltip"
- style="font-size: 18px; color: #F56C6C"></i>
- </el-tooltip>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { exportTeacherSalary } from '@/api/generalSettings'
- import { getEmployeeOrgan } from "@/api/buildTeam";
- import axios from 'axios'
- import {
- getToken
- } from '@/utils/auth'
- import load from '@/utils/loading'
- import qs from 'qs'
- export default {
- name: "reportForm",
- data () {
- return {
- mouth: "",
- organList: [],
- organIdList: []
- // imageIcon: require("@/assets/images/base/warning.png")
- };
- },
- mounted () {
- getEmployeeOrgan().then(res => {
- if (res.code == 200) {
- this.organList = res.data;
- }
- });
- },
- methods: {
- exportSalar () {
- if (!this.mouth) {
- this.$message.error('请选择导出月份')
- return
- }
- let url = '/api-web/export/teacherSalary'
- let data = { date: this.mouth }
- const options = {
- method: 'POST',
- headers: {
- 'Authorization': getToken()
- },
- data: qs.stringify(data),
- url,
- responseType: 'blob'
- }
- this.$confirm('您确定导出课酬', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- load.startLoading()
- axios(options).then(res => {
- let blob = new Blob([res.data], {
- // type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'
- type: 'application/vnd.ms-excel;charset=utf-8'
- //word文档为application/msword,pdf文档为application/pdf,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8
- })
- let text = (new Response(blob)).text()
- text.then(res => {
- // 判断是否报错
- if (res.indexOf('code') != -1) {
- let json = JSON.parse(res)
- this.$message.error(json.msg)
- } else {
- let objectUrl = URL.createObjectURL(blob)
- let link = document.createElement("a")
- let nowTime = new Date()
- let ymd = nowTime.getFullYear() + '' + (nowTime.getMonth() + 1) + '' + nowTime.getDate()
- let fname = ymd + '课酬' //下载文件的名字
- link.href = objectUrl
- link.setAttribute("download", fname)
- document.body.appendChild(link)
- link.click()
- }
- })
- load.endLoading();
- }).catch(error => {
- this.$message.error('导出数据失败,请联系管理员');
- load.endLoading();
- })
- }).catch(() => { })
- },
- exportMusicGroup () {
- if (this.organIdList.length < 1) {
- this.$message.error('请至少选择一个分部')
- return
- }
- let url = '/api-web/export/musicGroupRegister'
- let data = { date: this.organIdList.join(',') }
- const options = {
- method: 'POST',
- headers: {
- 'Authorization': getToken()
- },
- data: qs.stringify(data),
- url,
- responseType: 'blob'
- }
- this.$confirm('您确定导出招生情况汇总表', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- load.startLoading()
- axios(options).then(res => {
- let blob = new Blob([res.data], {
- // type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8'
- type: 'application/vnd.ms-excel;charset=utf-8'
- //word文档为application/msword,pdf文档为application/pdf,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8
- })
- let text = (new Response(blob)).text()
- text.then(res => {
- // 判断是否报错
- if (res.indexOf('code') != -1) {
- let json = JSON.parse(res)
- this.$message.error(json.msg)
- } else {
- let objectUrl = URL.createObjectURL(blob)
- let link = document.createElement("a")
- let nowTime = new Date()
- let ymd = nowTime.getFullYear() + '' + (nowTime.getMonth() + 1) + '' + nowTime.getDate()
- let fname = ymd + '招生情况汇总表' //下载文件的名字
- link.href = objectUrl
- link.setAttribute("download", fname)
- document.body.appendChild(link)
- link.click()
- }
- })
- load.endLoading();
- }).catch(error => {
- this.$message.error('导出数据失败,请联系管理员');
- load.endLoading();
- })
- }).catch(() => { })
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .m-container {
- .m-core {
- margin-top: 20px;
- .m-wrap {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- width: 100%;
- // align-items: center;
- .newBand {
- margin: 0 5px 0 10px;
- }
- .title {
- width: 120px;
- height: 40px;
- line-height: 40px;
- text-align: right;
- color: #606266;
- }
- .organSelect {
- width: 220px !important;
- }
- .el-tooltip.micon {
- width: 20px;
- height: 20px;
- position: relative;
- top: 12px;
- }
- }
- }
- }
- /deep/.el-input__icon.el-icon-date {
- height: 40px !important;
- }
- </style>
|