浏览代码

导入导出BUG修复

songwb 9 月之前
父节点
当前提交
a91655d9c8

+ 8 - 0
src/api/api.js

@@ -989,6 +989,14 @@ export function apiGetgetEvaluationInfoDataList(params) {
         params: params
     })
 }
+//单位月季年详情-----弹框计算得分按钮
+export function apiDialogCalcScore(params) {
+    return httpRequest({
+        url: 'calculator/cron',
+        method: 'get',
+        params: params
+    })
+}
 //单位月季年详情-----修改
 export function apiPostorganizationUpdateEvaluationInfo(params) {
     return httpRequest.post('organization-evaluation-info/updateEvaluationInfo', params)

+ 61 - 8
src/components/assessment/monthQuarterYearFrom.vue

@@ -73,13 +73,11 @@
                                         <span>保存</span>
                                     </div> -->
                                     <!-- activeName !== 'ZDZX' && activeName !== 'GLSX' &&  -->
-                                    <div class="tableBtn save" @click="saveDetail"
-                                        v-if="receiptMsg.stage !== '流程已结束'">
+                                    <div class="tableBtn save" @click="saveDetail" v-if="receiptMsg.stage !== '流程已结束'">
                                         <img :src="saveIcon" alt="">
                                         <span>保存</span>
                                     </div>
-                                    <div class="tableBtn import" @click="handleImport"
-                                        v-if="receiptMsg.stage !== '流程已结束'">
+                                    <div class="tableBtn import" @click="handleImport" v-if="receiptMsg.stage !== '流程已结束'">
                                         <img :src="importIcon" alt="">
                                         <span>导入</span>
                                     </div>
@@ -87,6 +85,10 @@
                                         <img :src="exportIcon" alt="">
                                         <span>导出</span>
                                     </div>
+                                    <div class="tableBtn calc" @click="calcScore" v-if="showCalcBtn">
+                                        <img :src="calcIcon" alt="">
+                                        <span>计算得分</span>
+                                    </div>
                                 </div>
                             </div>
                             <el-table :data="monthQuarterYearData" style="width: 100%" ref="monthQuarterYearTT"
@@ -196,7 +198,7 @@ import importDailog from '../importPage/importDailog.vue'
 import {
     apiGetEvaluationIndicatorList, apiGetgetEvaluationInfoDataList, apiGetbinsectionList, apiGetbinstageList, apiGetExportMsg,
     apiPostorganizationUpdateEvaluationInfo, apiPostorganizationUpdateAddEvaluationInfo, apiGetOrganizationListAll,
-    apiGetorganizationevaluationcommoninfo, apiPostsaveEvaluationCommonInfo, apiPostremoveEvaluationCommonInfo
+    apiGetorganizationevaluationcommoninfo, apiPostsaveEvaluationCommonInfo, apiPostremoveEvaluationCommonInfo, apiDialogCalcScore
 } from '../../api/api'
 import * as XLSX from 'xlsx'
 import { saveAs } from 'file-saver'
@@ -210,6 +212,7 @@ import addIcon from '../../assets/btnIcon/add.png'
 import saveIcon from '../../assets/btnIcon/save.png'
 import exportIcon from '../../assets/btnIcon/export.png'
 import importIcon from '../../assets/btnIcon/import.png'
+import calcIcon from '../../assets/btnIcon/edit.png'
 
 export default {
     components: {
@@ -248,10 +251,16 @@ export default {
             saveIcon: saveIcon,
             exportIcon: exportIcon,
             importIcon: importIcon,
+            calcIcon,
             addstageId: '',
             cycleType: '',
             userMes: {},
-            detailMsg: {}
+            detailMsg: {},
+            showCalcBtn: false,
+            showCalcBtnTabs: ["SCJY", "QQXM", "JJXM"],
+            calcParms: {
+                binStage: ""
+            }
         }
     },
     created() {
@@ -352,6 +361,7 @@ export default {
                 if (datas && datas.data) {
                     that.stageData = datas.data
                     that.activeName = datas.data[0].stageCode
+                    this.setShowCalcBtn(datas.data[0].stageCode)
                     that.getTableHeaderData(datas.data[0].id)
                 }
             })
@@ -378,6 +388,7 @@ export default {
             })
         },
         handleClick(val) {
+            this.setShowCalcBtn(val.props.name)
             this.titleMsgArr.forEach(it => {
                 it.showClick = false
                 if (val.props.name === 'QQXM') {
@@ -416,6 +427,20 @@ export default {
             })
             this.getTableHeaderData(stageId)
         },
+
+        setShowCalcBtn(code) {
+            this.showCalcBtn = this.showCalcBtnTabs.some(ele => {
+                return ele === code
+            });
+            if (this.showCalcBtn) {
+                this.calcParms.binStage = this.stageData.find(ele => {
+                    return ele.stageCode === code;
+                })?.id || "";
+            } else {
+                this.calcParms.binStage = ""
+            }
+        },
+
         //获取表格数据
         getTableData(id) {
             let that = this
@@ -597,6 +622,25 @@ export default {
                 console.error(r)
             })
         },
+        calcScore() {
+            this.calcParms.indicatorId = this.isClickTagId;
+            this.calcParms.binSection = this.binSectionStr;
+            const loading = this.$loading({
+                background: "rgba(0,0,0,0.7)",
+                text: "得分计算中...请稍候..."
+            });
+            apiDialogCalcScore(this.calcParms).then(res => {
+                if (res.success) {
+                    this.$message({
+                        message: '得分计算成功',
+                        type: 'success'
+                    });
+                }
+                this.getTableData(this.isClickTagId)
+            }).finally(() => {
+                loading.close();
+            });
+        },
         changeDetail(row) {
             this.detailVisible = true
             this.detailMsg = row
@@ -861,7 +905,6 @@ export default {
 
                                         span {
                                             display: inline-block;
-                                            width: 35px;
                                             font-size: 14px;
                                             font-family: Microsoft YaHei;
                                             font-weight: 400;
@@ -899,6 +942,15 @@ export default {
                                             color: #2baa8a;
                                         }
                                     }
+
+
+                                    .calc {
+                                        cursor: pointer;
+
+                                        span {
+                                            color: rgb(244, 165, 36);
+                                        }
+                                    }
                                 }
                             }
 
@@ -1096,4 +1148,5 @@ export default {
         }
     }
 
-}</style>
+}
+</style>

+ 25 - 61
src/components/elbuttonS.vue

@@ -1,84 +1,47 @@
 <template>
     <el-row :gutter="10" class="btnsA">
         <el-col :span="1.5" v-if="showAdd">
-            <el-button
-            color="#3B7AD1"
-            size="mini"
-            :disabled="disAdd"
-            @click="handleAdd"
-            >
-            <img :src="addW" style="margin-right: 10px">
-            <span>{{addName}}</span>
+            <el-button color="#3B7AD1" size="mini" :disabled="disAdd" @click="handleAdd">
+                <img :src="addW" style="margin-right: 10px">
+                <span>{{ addName }}</span>
             </el-button>
         </el-col>
         <el-col :span="1.5" v-if="showSave">
-            <el-button
-            type="warning"
-            size="mini"
-            @click="handleEdit"
-            :disabled="disSave"
-            >
-            <img :src="editW" style="margin-right: 10px">
-            <span>{{saveName}}</span>
+            <el-button type="warning" size="mini" @click="handleEdit" :disabled="disSave">
+                <img :src="editW" style="margin-right: 10px">
+                <span>{{ saveName }}</span>
             </el-button>
         </el-col>
         <el-col :span="1.5" v-if="showDelete">
-            <el-button
-            type="danger"
-            size="mini"
-            :disabled="disDelete"
-            @click="handleDelete"
-            >
-            <img :src="deleteW" style="margin-right: 10px">
-            <span>{{deleteName}}</span>
+            <el-button type="danger" size="mini" :disabled="disDelete" @click="handleDelete">
+                <img :src="deleteW" style="margin-right: 10px">
+                <span>{{ deleteName }}</span>
             </el-button>
         </el-col>
         <el-col :span="1.5" v-if="showImport">
-            <el-button
-            type="success"
-            icon="Upload"
-            size="mini"
-            :disabled="disImport"
-            @click="handleImport"
-            >{{importName}}</el-button>
+            <el-button type="success" icon="Upload" size="mini" :disabled="disImport"
+                @click="handleImport">{{ importName }}</el-button>
         </el-col>
         <el-col :span="1.5" v-if="showExport">
-            <el-button
-            type="warning"
-            icon="Download"
-            size="mini"
-            :disabled="disExport"
-            @click="handleExport"
-            >{{exportName}}</el-button>
+            <el-button type="warning" icon="Download" size="mini" :disabled="disExport"
+                @click="handleExport">{{ exportName }}</el-button>
         </el-col>
         <el-col :span="1.5" v-if="showreportForms">
-            <el-button
-            type="info"
-            size="mini"
-            @click="handleReport"
-            >
-            <img :src="report" style="margin-right: 10px">
-            <span>{{reportFormsName}}</span>
+            <el-button type="info" size="mini" @click="handleReport">
+                <img :src="report" style="margin-right: 10px">
+                <span>{{ reportFormsName }}</span>
             </el-button>
         </el-col>
         <el-col :span="1.5" v-if="showRelease">
-            <el-button
-            type="success"
-            size="mini"
-            @click="handleRelease"
-            >
-            <img :src="fabu" style="margin-right: 10px">
-            <span>{{releaseName}}</span>
+            <el-button type="success" size="mini" @click="handleRelease">
+                <img :src="fabu" style="margin-right: 10px">
+                <span>{{ releaseName }}</span>
             </el-button>
         </el-col>
         <el-col :span="1.5" v-if="showCancelRelease">
-            <el-button
-            type="info"
-            size="mini"
-            @click="handleCancelRelease"
-            >
-            <img :src="cancel" style="margin-right: 10px">
-            <span>{{cancelRelease}}</span>
+            <el-button type="info" size="mini" @click="handleCancelRelease">
+                <img :src="cancel" style="margin-right: 10px">
+                <span>{{ cancelRelease }}</span>
             </el-button>
         </el-col>
     </el-row>
@@ -260,9 +223,10 @@ export default {
 </script>
 
 <style lang="less">
-.btnsA{
+.btnsA {
     padding-left: 10px;
-    .is-disabled{
+
+    .is-disabled {
         opacity: 0.5;
     }
 }

文件差异内容过多而无法显示
+ 496 - 496
src/components/evaluationSystem/evaluationCompanyPage.vue


+ 379 - 379
src/components/evaluationSystem/evaluationRulesPage.vue

@@ -27,7 +27,7 @@
                 <btns :showImport="true" :showExport="true" :showAdd="$utils.havePurview('evalRules:oneLevel:add')"
                     :showSave="$utils.havePurview('evalRules:oneLevel:save')"
                     :showDelete="$utils.havePurview('evalRules:oneLevel:delete')"
-                    :disSave="changeDateSelect.length === 0 || changeDateSelect.length>1"
+                    :disSave="changeDateSelect.length === 0 || changeDateSelect.length > 1"
                     :disDelete="changeDateSelect.length === 0" @handleAdd="handleAdd" @handleEdit="handleEdit"
                     @handleDelete="handleDelete" @handleImport="handleImport" @handleExport="handleExport"></btns>
             </div>
@@ -47,7 +47,7 @@
                     <el-table-column label="年份" prop="year" />
                     <el-table-column label="描述" width="500">
                         <template #default="scope">
-                            <span>{{scope.row.des}}</span>
+                            <span>{{ scope.row.des }}</span>
                         </template>
                     </el-table-column>
                     <el-table-column label="创建人" prop="createName" width="120" />
@@ -59,15 +59,15 @@
                     </el-table-column> -->
                 </el-table>
                 <el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange"
-                    :current-page="page.currentPage" :page-size="page.pagesize"
-                    layout="total, prev, pager, next, jumper" :total="page.total">
+                    :current-page="page.currentPage" :page-size="page.pagesize" layout="total, prev, pager, next, jumper"
+                    :total="page.total">
                 </el-pagination>
             </div>
             <div class="indexRuledialog">
                 <el-dialog :title="title" v-model="dialogVisible" width="600px" :close-on-click-modal="false">
                     <div class="periodFrom">
-                        <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px"
-                            class="demo-ruleForm" :validate-on-rule-change="false">
+                        <el-form :model="ruleForm" :rules="rules" ref="ruleForm" label-width="100px" class="demo-ruleForm"
+                            :validate-on-rule-change="false">
                             <el-form-item label="规则名称" prop="ruleName">
                                 <el-input v-model="ruleForm.ruleName" placeholder="请输入规则名称"></el-input>
                             </el-form-item>
@@ -117,444 +117,444 @@
 </template>
 
 <script>
-    import importDailog from '../importPage/importDailog.vue'
-    import ruleDetailPage from './ruleDetailPage.vue'
-    import btns from '../elbuttonS.vue'
-    import seachs from '../seachGroup.vue'
-    import {
-        saveAs
-    } from 'file-saver'
-    import {
-        apiGetExportMsg,
-        apiGetevaluateRuleList,
-        apiGetevaluateRuleSaveList,
-        apiGetevaluateRuledeleteList,
-        apiGetbinsectionList,
-        apiGetbinstageList
-    } from '../../api/api'
-    export default {
-        components: {
-            importDailog,
-            ruleDetailPage,
-            btns,
-            seachs
+import importDailog from '../importPage/importDailog.vue'
+import ruleDetailPage from './ruleDetailPage.vue'
+import btns from '../elbuttonS.vue'
+import seachs from '../seachGroup.vue'
+import {
+    saveAs
+} from 'file-saver'
+import {
+    apiGetExportMsg,
+    apiGetevaluateRuleList,
+    apiGetevaluateRuleSaveList,
+    apiGetevaluateRuledeleteList,
+    apiGetbinsectionList,
+    apiGetbinstageList
+} from '../../api/api'
+export default {
+    components: {
+        importDailog,
+        ruleDetailPage,
+        btns,
+        seachs
+    },
+    data() {
+        return {
+            dialogVisible: false,
+            title: '',
+            isSave: false,
+            changeDateSelect: [],
+            moduleData: [],
+            stageData: [],
+            moduleStr: '',
+            periodIdStr: '',
+            resAnnual: '',
+            evaluationRuleData: [],
+            periodData: [],
+            ruleForm: {
+                ruleName: '',
+                binSection: '',
+                binStage: '',
+                evaluationCycle: '',
+                year: '',
+                desc: ''
+            },
+            rules: {
+                ruleName: [{
+                    required: true,
+                    message: '请输入规则名称',
+                    trigger: 'blur'
+                }],
+                binSection: [{
+                    required: true,
+                    message: '请选择业务属性',
+                    trigger: 'change'
+                }],
+                binStage: [{
+                    required: true,
+                    message: '请选择业务阶段',
+                    trigger: 'change'
+                }],
+                evaluationCycle: [{
+                    required: true,
+                    message: '请选择考评周期',
+                    trigger: 'change'
+                }],
+                year: [{
+                    required: true,
+                    message: '请选择年份',
+                    trigger: 'change'
+                }],
+                desc: [{
+                    required: true,
+                    message: '请输入描述',
+                    trigger: 'blur'
+                }]
+            },
+            page: {
+                pagesize: 12,
+                currentPage: 1,
+                total: 0
+            },
+            evalradio: {},
+            loadingImport: false,
+            winPix: window.devicePixelRatio,
+            innerWidth: window.innerWidth
+        }
+    },
+    created() {
+        this.periodData = [{
+            keyValue: 'NDKP',
+            keyName: '年度考评'
+        },
+        {
+            keyValue: 'JDKP',
+            keyName: '月/季度考评'
+        }
+        ]
+        this.resAnnual = new Date().getFullYear().toString()
+        this.getEvalRuleData()
+        this.getDataDictionary() //模块//阶段
+    },
+    methods: {
+        // 查询指标数据
+        getEvalRuleData() {
+            let that = this
+            let params = {
+                pageNum: that.page.currentPage,
+                pageSize: that.page.pagesize,
+                binSection: that.moduleStr,
+                checkCycle: that.periodIdStr,
+                year: that.resAnnual
+            }
+            apiGetevaluateRuleList(params).then(datas => {
+                if (datas && datas.data) {
+                    that.evaluationRuleData = datas.data.records
+                    that.page.total = datas.data.total
+                }
+            })
         },
-        data() {
-            return {
-                dialogVisible: false,
-                title: '',
-                isSave: false,
-                changeDateSelect: [],
-                moduleData: [],
-                stageData: [],
-                moduleStr: '',
-                periodIdStr: '',
-                resAnnual: '',
-                evaluationRuleData: [],
-                periodData: [],
-                ruleForm: {
+        // 查询规则模块和阶段数据
+        getDataDictionary() {
+            let that = this
+            apiGetbinsectionList().then(datas => {
+                if (datas && datas.data) {
+                    that.moduleData = datas.data
+                }
+            })
+            apiGetbinstageList().then(datas => {
+                if (datas && datas.data) {
+                    that.stageData = datas.data
+                }
+            })
+        },
+        handleAdd() {
+            this.dialogVisible = true
+            this.isSave = false
+            this.title = '新增考评规则'
+            this.$nextTick(() => {
+                // this.$refs['ruleForm'].resetFields()
+                this.ruleForm = {
                     ruleName: '',
                     binSection: '',
                     binStage: '',
                     evaluationCycle: '',
                     year: '',
                     desc: ''
-                },
-                rules: {
-                    ruleName: [{
-                        required: true,
-                        message: '请输入规则名称',
-                        trigger: 'blur'
-                    }],
-                    binSection: [{
-                        required: true,
-                        message: '请选择业务属性',
-                        trigger: 'change'
-                    }],
-                    binStage: [{
-                        required: true,
-                        message: '请选择业务阶段',
-                        trigger: 'change'
-                    }],
-                    evaluationCycle: [{
-                        required: true,
-                        message: '请选择考评周期',
-                        trigger: 'change'
-                    }],
-                    year: [{
-                        required: true,
-                        message: '请选择年份',
-                        trigger: 'change'
-                    }],
-                    desc: [{
-                        required: true,
-                        message: '请输入描述',
-                        trigger: 'blur'
-                    }]
-                },
-                page: {
-                    pagesize: 12,
-                    currentPage: 1,
-                    total: 0
-                },
-                evalradio: {},
-                loadingImport: false,
-                winPix: window.devicePixelRatio,
-                innerWidth: window.innerWidth
+                }
+            })
+        },
+        handleEdit() {
+            this.dialogVisible = true
+            this.isSave = true
+            this.title = '修改考评规则'
+            this.evalradio = this.changeDateSelect[0]
+            this.ruleForm = {
+                ruleName: this.evalradio.ruleName,
+                binSection: this.evalradio.binSection,
+                binStage: this.evalradio.binStage,
+                evaluationCycle: this.evalradio.checkCycle,
+                year: this.evalradio.year,
+                desc: this.evalradio.des
             }
         },
-        created() {
-            this.periodData = [{
-                    keyValue: 'NDKP',
-                    keyName: '年度考评'
-                },
-                {
-                    keyValue: 'JDKP',
-                    keyName: '月/季度考评'
+        saveevaluationRuleMsg(formName) {
+            let that = this
+            that.$refs[formName].validate((valid) => {
+                if (valid) {
+                    that.saveAndEditRuleData()
                 }
-            ]
-            this.resAnnual = new Date().getFullYear().toString()
-            this.getEvalRuleData()
-            this.getDataDictionary() //模块//阶段
+            });
         },
-        methods: {
-            // 查询指标数据
-            getEvalRuleData() {
-                let that = this
-                let params = {
-                    pageNum: that.page.currentPage,
-                    pageSize: that.page.pagesize,
-                    binSection: that.moduleStr,
-                    checkCycle: that.periodIdStr,
-                    year: that.resAnnual
-                }
-                apiGetevaluateRuleList(params).then(datas => {
-                    if (datas && datas.data) {
-                        that.evaluationRuleData = datas.data.records
-                        that.page.total = datas.data.total
-                    }
-                })
-            },
-            // 查询规则模块和阶段数据
-            getDataDictionary() {
-                let that = this
-                apiGetbinsectionList().then(datas => {
-                    if (datas && datas.data) {
-                        that.moduleData = datas.data
-                    }
-                })
-                apiGetbinstageList().then(datas => {
-                    if (datas && datas.data) {
-                        that.stageData = datas.data
-                    }
-                })
-            },
-            handleAdd() {
-                this.dialogVisible = true
-                this.isSave = false
-                this.title = '新增考评规则'
-                this.$nextTick(() => {
-                    // this.$refs['ruleForm'].resetFields()
-                    this.ruleForm = {
-                        ruleName: '',
-                        binSection: '',
-                        binStage: '',
-                        evaluationCycle: '',
-                        year: '',
-                        desc: ''
-                    }
-                })
-            },
-            handleEdit() {
-                this.dialogVisible = true
-                this.isSave = true
-                this.title = '修改考评规则'
-                this.evalradio = this.changeDateSelect[0]
-                this.ruleForm = {
-                    ruleName: this.evalradio.ruleName,
-                    binSection: this.evalradio.binSection,
-                    binStage: this.evalradio.binStage,
-                    evaluationCycle: this.evalradio.checkCycle,
-                    year: this.evalradio.year,
-                    desc: this.evalradio.des
-                }
-            },
-            saveevaluationRuleMsg(formName) {
-                let that = this
-                that.$refs[formName].validate((valid) => {
-                    if (valid) {
-                        that.saveAndEditRuleData()
-                    }
-                });
-            },
-            //新增/修改指标数据
-            saveAndEditRuleData() {
-                let that = this
-                let userMes = JSON.parse(window.sessionStorage.getItem('user'))
-                let params = {
-                    ruleName: that.ruleForm.ruleName,
-                    binSection: that.ruleForm.binSection,
-                    binStage: that.ruleForm.binStage,
-                    checkCycle: that.ruleForm.evaluationCycle,
-                    year: that.ruleForm.year,
-                    des: that.ruleForm.desc,
-                    createBy: userMes.id,
-                    createName: userMes.name
-                }
-                if (that.isSave) {
-                    params.id = that.evalradio.id
-                }
-                apiGetevaluateRuleSaveList(params).then(datas => {
-                    if (!datas.success) {
+        //新增/修改指标数据
+        saveAndEditRuleData() {
+            let that = this
+            let userMes = JSON.parse(window.sessionStorage.getItem('user'))
+            let params = {
+                ruleName: that.ruleForm.ruleName,
+                binSection: that.ruleForm.binSection,
+                binStage: that.ruleForm.binStage,
+                checkCycle: that.ruleForm.evaluationCycle,
+                year: that.ruleForm.year,
+                des: that.ruleForm.desc,
+                createBy: userMes.id,
+                createName: userMes.name
+            }
+            if (that.isSave) {
+                params.id = that.evalradio.id
+            }
+            apiGetevaluateRuleSaveList(params).then(datas => {
+                if (!datas.success) {
+                    that.$message({
+                        message: datas.message,
+                        type: 'error'
+                    });
+                } else {
+                    if (!that.isSave) {
                         that.$message({
-                            message: datas.message,
-                            type: 'error'
+                            message: '考评规则新增成功',
+                            type: 'success'
                         });
                     } else {
-                        if (!that.isSave) {
-                            that.$message({
-                                message: '考评规则新增成功',
-                                type: 'success'
-                            });
-                        } else {
-                            that.$message({
-                                message: '考评规则修改成功',
-                                type: 'success'
-                            });
-                        }
-                        that.dialogVisible = false
-                        that.changeDateSelect = []
-                        that.getEvalRuleData()
-                    }
-                })
-            },
-            //删除指标数据
-            handleDelete() {
-                this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
-                    confirmButtonText: '确定',
-                    cancelButtonText: '取消',
-                    type: 'warning'
-                }).then(() => {
-                    let that = this
-                    let paramsArr = []
-                    that.changeDateSelect.forEach(it => {
-                        paramsArr.push(it.id)
-                    })
-                    apiGetevaluateRuledeleteList(paramsArr.join(',')).then(datas => {
                         that.$message({
-                            type: 'success',
-                            message: '删除成功!'
+                            message: '考评规则修改成功',
+                            type: 'success'
                         });
-                        that.changeDateSelect = []
-                        that.getEvalRuleData()
-                    })
-                })
-            },
-            rowClick(selection, row) {
-                this.changeDateSelect = selection
-            },
-            getSeachData() {
-                this.page.currentPage = 1
-                this.getEvalRuleData()
-            },
-            resetSeach() {
-                this.page.currentPage = 1
-                this.moduleStr = ''
-                this.periodIdStr = ''
-                this.resAnnual = ''
-                this.getEvalRuleData()
-            },
-            successImport(val) {
-                this.loadingImport = false
-                this.getEvalRuleData()
-            },
-            importLoading(val) {
-                this.loadingImport = true
-            },
-            handleSizeChange(val) {
-                this.page.pagesize = val
-                this.getEvalRuleData()
-            },
-            handleCurrentChange(val) {
-                this.page.currentPage = val
-                this.getEvalRuleData()
-            },
-            handleImport() {
-                this.$refs.importPage.upload.title = "考评规则数据导入"
-                this.$refs.importPage.upload.open = true
-                this.$refs.importPage.upload.url = `/evaluate-rule/importExcel`
-                this.$refs.importPage.upload.showModel = true
-                this.$refs.importPage.showModelObj.url = '/evaluate-rule/importTemplate'
-                this.$refs.importPage.showModelObj.name = '考评规则配置模板'
-            },
-            handleExport() {
-                let that = this
-                let url = 'evaluate-rule/exportExcel'
-                let params = {
-                    binSection: that.moduleStr,
-                    checkCycle: that.periodIdStr,
-                    year: that.resAnnual
+                    }
+                    that.dialogVisible = false
+                    that.changeDateSelect = []
+                    that.getEvalRuleData()
                 }
-                apiGetExportMsg(url, params).then(datas => {
-                    let blob = new Blob([datas])
-                    saveAs(blob, '考评规则数据导出.xlsx')
-                }).catch((r) => {
-                    console.error(r)
+            })
+        },
+        //删除指标数据
+        handleDelete() {
+            this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
+                confirmButtonText: '确定',
+                cancelButtonText: '取消',
+                type: 'warning'
+            }).then(() => {
+                let that = this
+                let paramsArr = []
+                that.changeDateSelect.forEach(it => {
+                    paramsArr.push(it.id)
                 })
-            },
+                apiGetevaluateRuledeleteList(paramsArr.join(',')).then(datas => {
+                    that.$message({
+                        type: 'success',
+                        message: '删除成功!'
+                    });
+                    that.changeDateSelect = []
+                    that.getEvalRuleData()
+                })
+            })
+        },
+        rowClick(selection, row) {
+            this.changeDateSelect = selection
+        },
+        getSeachData() {
+            this.page.currentPage = 1
+            this.getEvalRuleData()
+        },
+        resetSeach() {
+            this.page.currentPage = 1
+            this.moduleStr = ''
+            this.periodIdStr = ''
+            this.resAnnual = ''
+            this.getEvalRuleData()
+        },
+        successImport(val) {
+            this.loadingImport = false
+            this.getEvalRuleData()
+        },
+        importLoading(val) {
+            this.loadingImport = true
+        },
+        handleSizeChange(val) {
+            this.page.pagesize = val
+            this.getEvalRuleData()
+        },
+        handleCurrentChange(val) {
+            this.page.currentPage = val
+            this.getEvalRuleData()
+        },
+        handleImport() {
+            this.$refs.importPage.upload.title = "考评规则数据导入"
+            this.$refs.importPage.upload.open = true
+            this.$refs.importPage.upload.url = `/evaluate-rule/importExcel`
+            this.$refs.importPage.upload.showModel = true
+            this.$refs.importPage.showModelObj.url = '/evaluate-rule/importTemplate'
+            this.$refs.importPage.showModelObj.name = '考评规则配置模板'
+        },
+        handleExport() {
+            let that = this
+            let url = 'evaluate-rule/exportExcel'
+            let params = {
+                binSection: that.moduleStr,
+                checkCycle: that.periodIdStr,
+                year: that.resAnnual
+            }
+            apiGetExportMsg(url, params).then(datas => {
+                let blob = new Blob([datas])
+                saveAs(blob, '考评规则数据导出.xlsx')
+            }).catch((r) => {
+                console.error(r)
+            })
+        },
 
-            //指标项配置
-            editRuleDetail(row) {
-                this.$refs.ruleDetail.init(row)
-            },
-            evaluationRuleTableSty() {
-                if (this.winPix === 1.25 || this.innerWidth < 1800) {
-                    return 'evalRule125Table'
-                } else {
-                    return 'evalRule100Table'
-                }
+        //指标项配置
+        editRuleDetail(row) {
+            this.$refs.ruleDetail.init(row)
+        },
+        evaluationRuleTableSty() {
+            if (this.winPix === 1.25 || this.innerWidth < 1800) {
+                return 'evalRule125Table'
+            } else {
+                return 'evalRule100Table'
             }
         }
     }
+}
 </script>
 
 <style lang="less">
-    .evaluationRule {
-        .evaluationRuleBtn {
-            .collectSeach {
-                display: flex;
-                padding: 24px 20px;
-                border-bottom: 1px solid#D6DBEA;
-
-                .exceed {
-                    display: flex;
-
-                    .exceedSpan {
-                        width: 100px;
-                        height: 12px;
-                        font-size: 14px;
-                        font-family: Microsoft YaHei;
-                        font-weight: 400;
-                        color: #8991B0;
-                        line-height: 12px;
-                        margin-top: 14px;
-                    }
-
-                    .el-input,
-                    .el-date-editor {
-                        line-height: 40px !important;
+.evaluationRule {
+    .evaluationRuleBtn {
+        .collectSeach {
+            display: flex;
+            padding: 24px 20px;
+            border-bottom: 1px solid#D6DBEA;
 
-                        .el-input__wrapper {
-                            height: 40px !important;
-                        }
+            .exceed {
+                display: flex;
 
-                        .el-input__suffix {
-                            .el-select__caret {
-                                line-height: 40px;
-                            }
-                        }
-                    }
+                .exceedSpan {
+                    width: 100px;
+                    height: 12px;
+                    font-size: 14px;
+                    font-family: Microsoft YaHei;
+                    font-weight: 400;
+                    color: #8991B0;
+                    line-height: 12px;
+                    margin-top: 14px;
                 }
 
-                .el-select {
-                    margin-right: 10px;
+                .el-input,
+                .el-date-editor {
+                    line-height: 40px !important;
 
-                    .el-input__inner {
-                        height: 30px;
+                    .el-input__wrapper {
+                        height: 40px !important;
                     }
 
                     .el-input__suffix {
                         .el-select__caret {
-                            line-height: 30px;
+                            line-height: 40px;
                         }
                     }
                 }
             }
 
-            span {
-                font-size: 14px;
-            }
+            .el-select {
+                margin-right: 10px;
 
-            .PeriodBtn {
-                display: flex;
-                justify-content: flex-end;
-                padding: 20px 0;
+                .el-input__inner {
+                    height: 30px;
+                }
+
+                .el-input__suffix {
+                    .el-select__caret {
+                        line-height: 30px;
+                    }
+                }
             }
+        }
 
-            .el-button {
-                height: 30px;
-                // width:100px;
-                padding: 0 30px;
+        span {
+            font-size: 14px;
+        }
 
-                // padding-top: 8px;
-                span {
-                    margin: 0;
-                }
+        .PeriodBtn {
+            display: flex;
+            justify-content: flex-end;
+            padding: 20px 0;
+        }
+
+        .el-button {
+            height: 30px;
+            // width:100px;
+            padding: 0 30px;
+
+            // padding-top: 8px;
+            span {
+                margin: 0;
             }
+        }
 
-            .indexRuledialog {
-                .el-overlay {
-                    .el-dialog {
-                        .el-dialog__body {
-                            padding: 30px 60px 30px 20px !important;
+        .indexRuledialog {
+            .el-overlay {
+                .el-dialog {
+                    .el-dialog__body {
+                        padding: 30px 60px 30px 20px !important;
 
-                            .periodFrom {
+                        .periodFrom {
 
-                                .el-select,
-                                .el-input {
-                                    width: 100%;
-                                }
+                            .el-select,
+                            .el-input {
+                                width: 100%;
+                            }
 
-                                .el-input {
-                                    height: 30px;
-                                }
+                            .el-input {
+                                height: 30px;
                             }
                         }
                     }
                 }
             }
         }
+    }
 
-        .evaluationRuleTableData {
-            .evalRule125Table {
-                .el-table__body-wrapper {
-                    height: 53vh !important;
-                }
+    .evaluationRuleTableData {
+        .evalRule125Table {
+            .el-table__body-wrapper {
+                height: 53vh !important;
             }
+        }
 
-            .evalRule100Table {
-                .el-table__body-wrapper {
-                    height: 60vh !important;
-                }
+        .evalRule100Table {
+            .el-table__body-wrapper {
+                height: 60vh !important;
             }
+        }
 
-            .el-table {
-                .el-input__inner {
-                    height: 30px !important;
-                }
+        .el-table {
+            .el-input__inner {
+                height: 30px !important;
+            }
 
-                .el-radio__label {
-                    display: none;
-                }
+            .el-radio__label {
+                display: none;
+            }
 
-                .indicitem {
-                    color: #409EFF;
-                    font-size: 12px;
-                    margin-right: 20px;
-                    cursor: pointer;
+            .indicitem {
+                color: #409EFF;
+                font-size: 12px;
+                margin-right: 20px;
+                cursor: pointer;
 
-                    &:hover {
-                        text-decoration: underline;
-                    }
+                &:hover {
+                    text-decoration: underline;
                 }
             }
-
-            .el-pagination {
-                margin-top: 20px;
-                text-align: end;
-                position: relative;
-            }
         }
 
+        .el-pagination {
+            margin-top: 20px;
+            text-align: end;
+            position: relative;
+        }
     }
+
+}
 </style>

+ 143 - 117
src/components/evaluationSystem/ruleDetailPage.vue

@@ -13,52 +13,35 @@
                     <div class="PeriodBtn">
                         <el-row :gutter="10" style="padding-left: 10px;">
                             <el-col :span="1.5" v-if="$utils.havePurview('evalStart:twoLevel:add')">
-                                <el-button
-                                type="primary"
-                                size="mini"
-                                @click="handleAdd"
-                                >
-                                <img :src="addW" style="margin-right: 10px">
-                                <span>新增</span>
+                                <el-button type="primary" size="mini" @click="handleAdd">
+                                    <img :src="addW" style="margin-right: 10px">
+                                    <span>新增</span>
                                 </el-button>
                             </el-col>
                             <el-col :span="1.5" v-if="$utils.havePurview('evalStart:twoLevel:save')">
-                                <el-button
-                                type="success"
-                                size="mini"
-                                @click="handleEdit()"
-                                :disabled="changeDateSelect.length === 0 || changeDateSelect.length>1"
-                                >
-                                <img :src="editW" style="margin-right: 10px">
-                                <span>修改</span>
+                                <el-button type="success" size="mini" @click="handleEdit()"
+                                    :disabled="changeDateSelect.length === 0 || changeDateSelect.length > 1">
+                                    <img :src="editW" style="margin-right: 10px">
+                                    <span>修改</span>
                                 </el-button>
                             </el-col>
                             <el-col :span="1.5" v-if="$utils.havePurview('evalStart:twoLevel:delete')">
-                                <el-button
-                                type="danger"
-                                size="mini"
-                                :disabled="changeDateSelect.length === 0"
-                                @click="handleDelete"
-                                >
-                                <img :src="deleteW" style="margin-right: 10px">
-                                <span>删除</span>
+                                <el-button type="danger" size="mini" :disabled="changeDateSelect.length === 0"
+                                    @click="handleDelete">
+                                    <img :src="deleteW" style="margin-right: 10px">
+                                    <span>删除</span>
                                 </el-button>
                             </el-col>
                             <el-col :span="1.5">
-                                <el-button
-                                type="warning"
-                                icon="Download"
-                                size="mini"
-                                @click="handleExport"
-                                >导出</el-button>
+                                <el-button type="warning" icon="Download" size="mini" @click="handleExport">导出</el-button>
                             </el-col>
 
-                            
+
                         </el-row>
                     </div>
                     <div class="ruleItemTableData">
-                        <el-table :data="ruleDetailData" style="width: 100%" ref="ruleItemTableData"
-                         @select="rowClick" @select-all="rowClick" @row-dblclick="handleEdit">
+                        <el-table :data="ruleDetailData" style="width: 100%" ref="ruleItemTableData" @select="rowClick"
+                            @select-all="rowClick" @row-dblclick="handleEdit">
                             <el-table-column type="selection" label="操作" align="center"></el-table-column>
                             <el-table-column type="index" label="序号" align="center"></el-table-column>
                             <el-table-column label="指标名称" prop="indicatorName" />
@@ -69,7 +52,7 @@
                             <el-table-column label="基准分" prop="standardScore" />
                             <el-table-column label="描述">
                                 <template #default="scope">
-                                    <span>{{scope.row.des}}</span>
+                                    <span>{{ scope.row.des }}</span>
                                 </template>
                             </el-table-column>
                         </el-table>
@@ -85,14 +68,12 @@
                     <div class="onlyDialog">
                         <el-dialog :title="title" v-model="dialogVisible" width="600px" :close-on-click-modal="false">
                             <div class="periodFrom">
-                                <el-form :model="itemForm" :rules="rules" ref="itemForm" label-width="100px" :validate-on-rule-change="false">
+                                <el-form :model="itemForm" :rules="rules" ref="itemForm" label-width="100px"
+                                    :validate-on-rule-change="false">
                                     <el-form-item label="指标名称" prop="indicator">
                                         <el-select v-model="itemForm.indicator" placeholder="请选择指标名称" filterable>
-                                            <el-option
-                                            v-for="item in indicItemoptions"
-                                            :key="item.id"
-                                            :label="item.indicatorName"
-                                            :value="item.id">
+                                            <el-option v-for="item in indicItemoptions" :key="item.id"
+                                                :label="item.indicatorName" :value="item.id">
                                             </el-option>
                                         </el-select>
                                     </el-form-item>
@@ -103,13 +84,15 @@
                                         <el-input-number v-model="itemForm.maxScore" :precision="2" :step="0.1" :min="0" />
                                     </el-form-item>
                                     <el-form-item label="基准分" prop="standardScore">
-                                        <el-input-number v-model="itemForm.standardScore" :precision="2" :step="0.1" :min="0" />
+                                        <el-input-number v-model="itemForm.standardScore" :precision="2" :step="0.1"
+                                            :min="0" />
                                     </el-form-item>
                                     <el-form-item label="指标顺序" prop="orderNum">
                                         <el-input-number v-model="itemForm.orderNum" :min="1" />
                                     </el-form-item>
                                     <el-form-item label="描述">
-                                        <el-input v-model="itemForm.desc" :rows="5" type="textarea" placeholder="请输入描述"></el-input>
+                                        <el-input v-model="itemForm.desc" :rows="5" type="textarea"
+                                            placeholder="请输入描述"></el-input>
                                     </el-form-item>
                                 </el-form>
                             </div>
@@ -130,12 +113,12 @@
 <script>
 import * as XLSX from 'xlsx'
 import { saveAs } from 'file-saver'
-import  * as XLSXD from 'xlsx-js-style'
+import * as XLSXD from 'xlsx-js-style'
 import addW from '../../assets/btnIcon/addW.png'
 import editW from '../../assets/btnIcon/editW.png'
 import deleteW from '../../assets/btnIcon/deleteW.png'
 import seachs from '../seachGroup.vue'
-import {apiGetevaluateRuleinfoList, apiGetevaluateRuleInfoSaveList, apiGetevaluateRuleinfodeleteList, apiGetindicatorListAll} from '../../api/api'
+import { apiGetevaluateRuleinfoList, apiGetevaluateRuleInfoSaveList, apiGetevaluateRuleinfodeleteList, apiGetindicatorListAll } from '../../api/api'
 export default {
     components: {
         seachs
@@ -151,7 +134,7 @@ export default {
             ruleDetailData: [],
             indicItemoptions: [],
             indicItem: '',
-            evaluationIndexData:[],
+            evaluationIndexData: [],
             itemForm: {
                 indicator: '',
                 minScore: 0,
@@ -165,7 +148,7 @@ export default {
                     { required: true, message: '请选择指标名称', trigger: 'change' }
                 ]
             },
-            page:{
+            page: {
                 pagesize: 12,
                 currentPage: 1,
                 total: 0
@@ -191,7 +174,7 @@ export default {
                 evaluateRuleId: row.id,
                 indicatorName: that.indicItem
             }
-            apiGetevaluateRuleinfoList(params).then(datas =>{
+            apiGetevaluateRuleinfoList(params).then(datas => {
                 if (datas && datas.data) {
                     that.ruleDetailData = datas.data
                     that.changeDateSelect = []
@@ -206,7 +189,7 @@ export default {
                 binStage: row.binStage,
                 evaluationCycle: that.rowevalradio.checkCycle
             }
-            apiGetindicatorListAll(params).then(datas =>{
+            apiGetindicatorListAll(params).then(datas => {
                 if (datas && datas.data) {
                     that.indicItemoptions = datas.data
                 }
@@ -216,7 +199,7 @@ export default {
             this.dialogVisible = true
             this.isSave = false
             this.title = '新增规则详情'
-            this.$nextTick(() =>{
+            this.$nextTick(() => {
                 this.itemForm = {
                     indicator: '',
                     minScore: 0,
@@ -269,7 +252,7 @@ export default {
             } else {
                 params.evaluateRuleId = that.rowevalradio.id
             }
-            apiGetevaluateRuleInfoSaveList(params).then(datas =>{
+            apiGetevaluateRuleInfoSaveList(params).then(datas => {
                 if (datas) {
                     if (datas.success) {
                         if (!that.isSave) {
@@ -293,7 +276,7 @@ export default {
                         })
                     }
                 }
-                
+
             })
         },
         //删除指标数据
@@ -305,10 +288,10 @@ export default {
             }).then(() => {
                 let that = this
                 let paramsArr = []
-                that.changeDateSelect.forEach(it =>{
+                that.changeDateSelect.forEach(it => {
                     paramsArr.push(it.id)
                 })
-                apiGetevaluateRuleinfodeleteList(paramsArr.join(',')).then(datas =>{
+                apiGetevaluateRuleinfodeleteList(paramsArr.join(',')).then(datas => {
                     that.$message({
                         type: 'success',
                         message: '删除成功!'
@@ -322,14 +305,30 @@ export default {
             let $e = this.$refs.ruleItemTableData.$el
             try {
                 let $table = $e.querySelector('.el-table__fixed')
-                if(!$table) {
+                if (!$table) {
                     $table = $e
                 }
-                const wb = XLSX.utils.table_to_book($table, {raw:true})
+                const wb = XLSX.utils.table_to_book($table, { raw: true })
 
-                const wbout = XLSXD.write(wb, {bookType: 'xlsx', bookSST:true, type: 'array'})
+                const wbout = XLSXD.write(wb, { bookType: 'xlsx', bookSST: true, type: 'array' })
+                if ($table) {
+                    const thRemoveList = $table.querySelectorAll(".el-table__header-wrapper th .el-checkbox") || [];
+                    const tbRemoveList = $table.querySelectorAll(".el-table__body-wrapper tr.el-table__row .el-checkbox") || [];
+                    for (let i = 0; i < thRemoveList.length; i++) {
+                        const rootTag = thRemoveList[i]?.parent?.parent;
+                        if (document.getElementsByTagName(rootTag) === "TH") {
+                            rootTag?.remove();
+                        }
+                    }
+                    for (let i = 0; i < tbRemoveList.length; i++) {
+                        const rootTag = thRemoveList[i]?.parent?.parent;
+                        if (document.getElementsByTagName(rootTag) === "TD") {
+                            rootTag?.remove();
+                        }
+                    }
+                }
                 saveAs(
-                    new Blob([wbout],{type: 'application/octet-stream'}),
+                    new Blob([wbout], { type: 'application/octet-stream' }),
                     `考评规则详情数据导出.xlsx`,
                 )
             } catch (e) {
@@ -348,111 +347,136 @@ export default {
             this.indicItem = ''
             this.getruleDetailData(this.rowevalradio)
         },
-        handleSizeChange(val){
+        handleSizeChange(val) {
             this.page.pagesize = val
         },
-        handleCurrentChange(val){
-            this.page.currentPage =val
+        handleCurrentChange(val) {
+            this.page.currentPage = val
         },
     }
 }
 </script>
 
 <style lang="less">
-.ruleItem{
-    .el-overlay{
-        .el-dialog{
+.ruleItem {
+    .el-overlay {
+        .el-dialog {
             margin-top: 5vh !important;
-            .el-dialog__body{
+
+            .el-dialog__body {
                 padding: 0 20px 30px 20px !important;
-                .ruleItemAll{
-                    .el-select, .el-input{
+
+                .ruleItemAll {
+
+                    .el-select,
+                    .el-input {
                         width: 100%;
                     }
-                    .ruleItemBtn{
+
+                    .ruleItemBtn {
                         padding: 10px 20px 0 20px;
-                        .collectSeach{
+
+                        .collectSeach {
                             display: flex;
                             padding: 24px 20px;
                             border-bottom: 1px solid#D6DBEA;
-                                .exceed{
-                                    display: flex;
-                                    .indicatorSpan{
-                                        width: 100px;
-                                        height: 12px;
-                                        font-size: 14px;
-                                        font-family: Microsoft YaHei;
-                                        font-weight: 400;
-                                        color: #8991B0;
-                                        line-height: 12px;
-                                        margin-top: 10px;
+
+                            .exceed {
+                                display: flex;
+
+                                .indicatorSpan {
+                                    width: 100px;
+                                    height: 12px;
+                                    font-size: 14px;
+                                    font-family: Microsoft YaHei;
+                                    font-weight: 400;
+                                    color: #8991B0;
+                                    line-height: 12px;
+                                    margin-top: 10px;
+                                }
+
+                                .el-input {
+                                    margin-right: 10px;
+
+                                    .el-input__inner {
+                                        height: 30px;
                                     }
-                                    .el-input{
-                                        margin-right:10px;
-                                        .el-input__inner{
-                                            height:30px;
-                                        }
-                                        .el-input__suffix{
-                                            .el-select__caret{
-                                                line-height:30px;
-                                            }
+
+                                    .el-input__suffix {
+                                        .el-select__caret {
+                                            line-height: 30px;
                                         }
                                     }
                                 }
-                                .el-select{
-                                    margin-right:10px;
-                                    .el-input__inner{
-                                        height:30px;
-                                    }
-                                    .el-input__suffix{
-                                        .el-select__caret{
-                                            line-height:30px;
-                                        }
+                            }
+
+                            .el-select {
+                                margin-right: 10px;
+
+                                .el-input__inner {
+                                    height: 30px;
+                                }
+
+                                .el-input__suffix {
+                                    .el-select__caret {
+                                        line-height: 30px;
                                     }
                                 }
+                            }
                         }
-                        span{
-                            font-size:14px;
+
+                        span {
+                            font-size: 14px;
                         }
-                        .PeriodBtn{
+
+                        .PeriodBtn {
                             display: flex;
                             justify-content: flex-end;
                             padding: 20px 0;
-                            .el-button{
+
+                            .el-button {
                                 height: 30px;
-                                padding: 0 30px ;
-                                span{
-                                    margin:0;
+                                padding: 0 30px;
+
+                                span {
+                                    margin: 0;
                                 }
                             }
-                            .is-disabled{
+
+                            .is-disabled {
                                 opacity: 0.5;
                             }
                         }
                     }
-                    .ruleItemTableData{
-                        .el-table{
-                            .el-table__body-wrapper{
+
+                    .ruleItemTableData {
+                        .el-table {
+                            .el-table__body-wrapper {
                                 height: 55vh !important;
                             }
-                            .el-input__inner{
+
+                            .el-input__inner {
                                 height: 30px !important;
                             }
-                            .el-radio__label{
+
+                            .el-radio__label {
                                 display: none;
                             }
                         }
-                        .el-pagination{
+
+                        .el-pagination {
                             margin-top: 20px;
                             text-align: end;
                             position: relative;
                         }
                     }
-                    .onlyDialog{
-                        .el-overlay{
-                            .el-dialog{
+
+                    .onlyDialog {
+                        .el-overlay {
+                            .el-dialog {
                                 margin-top: 10vh !important;
-                                .el-dialog__body{
+
+                                .el-dialog__body {
                                     padding: 30px 60px 30px 20px !important;
                                 }
                             }
@@ -460,11 +484,13 @@ export default {
                     }
                 }
             }
-            .el-dialog__footer{
-                .dialog-footer{
+
+            .el-dialog__footer {
+                .dialog-footer {
                     display: flex;
                     justify-content: center;
-                    .el-button{
+
+                    .el-button {
                         width: 180px !important;
                         height: 40px !important;
                     }

+ 7 - 6
src/components/importPage/importDailog.vue

@@ -4,7 +4,7 @@
         <!-- :limit="1" -->
         <el-upload ref="upload" accept=".xlsx, .xls" :headers="upload.headers" :action="upload.processurl + upload.url"
             :disabled="upload.isUploading" :on-progress="handleFileUploadProgress" :on-success="handleFileSuccess"
-            :on-error="handleFileError" :auto-upload="false" :data="upload.data" :on-change="test" drag>
+            :on-error="handleFileError" :auto-upload="false" :data="upload.data" :on-change="changeFileSelect" drag>
             <i class="el-icon-upload"></i>
             <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
             <template #tip>
@@ -122,14 +122,15 @@ export default {
         },
         // 提交上传文件
         submitFileForm() {
-            // this.$refs.upload.submit();
             this.upload.isUploading = true;
             this.$emit('importLoading', true)
-
+            const userInfo = window.sessionStorage.getItem('user') ? JSON.parse(window.sessionStorage.getItem('user')) : {};
             const formData = new FormData();
             formData.append("file", this.selectFile);
             formData.append("binSection", this.binSection);
             formData.append("year", this.year);
+            formData.append("userId", userInfo.importExcelId);
+            formData.append("userName", userInfo.importExcelName);
             axios.post(`${this.upload.processurl}${this.upload.url}`, formData, {
                 headers: {
                     "Content-Type": "application/octet-stream"
@@ -143,9 +144,9 @@ export default {
             });
         },
 
-        test(file) {
-            this.selectFile = file.raw;
-        },
+        changeFileSelect(file) {
+            this.selectFile = file?.raw || null;
+        }
     }
 }
 </script>

+ 135 - 79
src/views/Login.vue

@@ -21,7 +21,9 @@
                 </div>
                 <div class="loginBtn" v-else>
                     <div class="loading">
-                        <el-icon color="#fff"><Loading /></el-icon>
+                        <el-icon color="#fff">
+                            <Loading />
+                        </el-icon>
                         <span class="loadingSpan">登录</span>
                     </div>
                 </div>
@@ -47,7 +49,9 @@
                 </div>
                 <div class="loginMobeilBtn" v-else>
                     <div class="loading">
-                        <el-icon color="#fff"><Loading /></el-icon>
+                        <el-icon color="#fff">
+                            <Loading />
+                        </el-icon>
                         <span class="loadingSpan">登录</span>
                     </div>
                 </div>
@@ -60,16 +64,16 @@
 <script>
 import { ElMessage } from "element-plus";
 import JSEncrypt from 'jsencrypt'
-import { loginApi, apiGetCodeByToken, apiGetUserMsg,apiGetPrivilegesOfCurrentUserAll, apigetPublicKey } from '../api/api'
+import { loginApi, apiGetCodeByToken, apiGetUserMsg, apiGetPrivilegesOfCurrentUserAll, apigetPublicKey } from '../api/api'
 export default {
     data() {
         return {
-            inputUser:'',
+            inputUser: '',
             // inputUser:'testrsadmin',Gddl!#%135
-            inputMima:'',
-            codeUrl:'',
-            ememberMe:false,
-            loading:false,
+            inputMima: '',
+            codeUrl: '',
+            ememberMe: false,
+            loading: false,
             loginText: '',
             loginLoading: false,
             isMobile: window.localStorage.getItem('isMobile'),
@@ -80,7 +84,7 @@ export default {
     },
     created() {
         if (this.$route?.query?.iamCode && this.$route?.query?.iamAccessToken) {
-            console.log('有iamCode===>>>', this.$route )
+            console.log('有iamCode===>>>', this.$route)
             window.localStorage.setItem('token', this.$route.query.iamAccessToken)
             window.localStorage.setItem('code', this.$route.query.iamCode)
             window.localStorage.setItem('singlePoint', 'singlePoint')
@@ -98,9 +102,9 @@ export default {
                 this.ememberMe = false
             }
         }
-        
+
     },
-    methods:{
+    methods: {
         forgetPassFn() {
             let url = ''
             if (window.location.href.includes('10.65.78.23')) {
@@ -138,19 +142,19 @@ export default {
         getLogin(userName, password) {
             // setToken('userMsg', params)
             let that = this
-            apigetPublicKey().then(request =>{
+            apigetPublicKey().then(request => {
                 if (request && request.data) {
                     let publicKeyStr = request.data
                     const jsRsa = new JSEncrypt()
                     jsRsa.setPublicKey(publicKeyStr)
                     let passwordRsa = jsRsa.encrypt(password)
-                    loginApi(userName, passwordRsa).then(datas=>{
+                    loginApi(userName, passwordRsa).then(datas => {
                         if (datas) {
                             if (datas.success) {
                                 if (datas.data.error_description) {
                                     that.loginLoading = false
                                     ElMessage.error(datas.data.error_description);
-                                }else {
+                                } else {
                                     window.localStorage.setItem('token', datas.data.access_token)
                                     that.getTokenCode(datas.data.access_token)
                                 }
@@ -159,7 +163,7 @@ export default {
                                 that.loginLoading = false
                             }
                         }
-                    }).catch(e =>{
+                    }).catch(e => {
                         that.loading = false
                         that.loginLoading = false
                     })
@@ -169,7 +173,7 @@ export default {
         // 根据token获取code
         getTokenCode(val) {
             let that = this
-            apiGetCodeByToken(val).then(datas =>{
+            apiGetCodeByToken(val).then(datas => {
                 if (datas && datas.data) {
                     // setToken('code', datas.data)
                     window.localStorage.setItem('code', datas.data)
@@ -179,7 +183,7 @@ export default {
         },
         getUserMsg(val) {
             let that = this
-            apiGetUserMsg(val).then(datas =>{
+            apiGetUserMsg(val).then(datas => {
                 if (datas && datas.data) {
                     // setToken('user', JSON.stringify(datas.data))
                     let obj = {
@@ -188,7 +192,9 @@ export default {
                         deptId: datas.data.deptId,
                         deptName: datas.data.deptName,
                         name: datas.data.name,
-                        id: datas.data.id
+                        id: datas.data.id,
+                        importExcelId: datas.data.no,
+                        importExcelName: datas.data.name
                     }
                     window.sessionStorage.setItem('user', JSON.stringify(obj))
                     that.getApprverData()
@@ -197,19 +203,19 @@ export default {
         },
         getApprverData() {
             let that = this
-            apiGetPrivilegesOfCurrentUserAll().then(datas =>{
+            apiGetPrivilegesOfCurrentUserAll().then(datas => {
                 if (datas && datas.data) {
                     // setToken('purview', JSON.stringify(datas.data.data))
                     window.localStorage.setItem('purview', JSON.stringify(datas.data.data))
                     if (that.isMobile === 'PC') {
                         if (!that.$route?.query?.taskInfo) {
-                            that.$router.push({ path: "/home"})
-                            
+                            that.$router.push({ path: "/home" })
+
                         } else {
-                            that.$router.push({ path: "/taskCenter", query: that.$route.query})
+                            that.$router.push({ path: "/taskCenter", query: that.$route.query })
                         }
                     } else {
-                        that.$router.push({ path: "/mobeil"})
+                        that.$router.push({ path: "/mobeil" })
                     }
                 }
             })
@@ -221,68 +227,81 @@ export default {
 
 <style lang="less">
 @media screen and (max-width: 1200px) {
-    .loginPic{
+    .loginPic {
         .login_left {
             display: none;
         }
     }
 }
-.PCandMobeilLogin{
-    .loginPic{
+
+.PCandMobeilLogin {
+    .loginPic {
         position: relative;
         width: 100%;
-        height:100vh;
+        height: 100vh;
         background-image: url('../assets/loginImage/logindefBak.png');
         background-position: 0 0;
         background-repeat: no-repeat;
         display: flex;
-        .login_left{
+
+        .login_left {
             position: fixed;
             left: 15%;
             top: 35%;
-            p{
+
+            p {
                 margin-bottom: 0px;
                 font-size: 32px;
                 color: #fff;
                 margin-top: 10px;
             }
-            .title{
+
+            .title {
                 letter-spacing: 5px;
             }
         }
-        .login_right{
+
+        .login_right {
             width: 470px;
-            height:680px;
-            background: rgba(0,0,0,0.4);
+            height: 680px;
+            background: rgba(0, 0, 0, 0.4);
             position: fixed;
             right: 15%;
             top: 15%;
-            .titleIcon{
+
+            .titleIcon {
                 margin: 100px 0px 43px 95px;
             }
-            .loginCom{
+
+            .loginCom {
                 margin: 0 30px 0px 43px;
                 width: 384px;
                 height: 56px;
                 background: #1B1A1F;
                 border-radius: 5px;
-                display: flex;     
+                display: flex;
+
                 .userIcon {
                     width: 24px;
                     height: 24px;
                     margin: 16px;
-                }   
+                }
+
                 .passwordIcon {
                     width: 24px;
                     height: 24px;
                     margin: 16px;
                 }
-                .el-input{
+
+                .el-input {
                     border: 0 solid transparent;
-                    .el-input__wrapper{
+
+                    .el-input__wrapper {
                         background: transparent;
                         box-shadow: none;
-                        .el-input__inner, .el-input__inner:focus{
+
+                        .el-input__inner,
+                        .el-input__inner:focus {
                             background-color: transparent;
                             border: none !important;
                             color: #fff;
@@ -293,30 +312,35 @@ export default {
                     }
                 }
             }
-            .remeber{
+
+            .remeber {
                 margin: 0 50px;
                 display: flex;
                 justify-content: space-between;
-                .el-checkbox{
-                    .el-checkbox__label{
+
+                .el-checkbox {
+                    .el-checkbox__label {
                         color: #fff;
                         font-size: 12px;
-                        padding-left:6px;
+                        padding-left: 6px;
                     }
                 }
-                .forgetPass{
+
+                .forgetPass {
                     cursor: pointer;
                     font-size: 12px;
                     color: #fff;
                 }
             }
-            .loginBtn{
+
+            .loginBtn {
                 margin: 48px 0 0 43px;
                 width: 384px;
                 height: 56px;
                 background-image: url('../assets/loginImage/loginBtn.png');
                 cursor: pointer;
-                .loginSpan{
+
+                .loginSpan {
                     position: relative;
                     top: 27%;
                     left: 45%;
@@ -325,11 +349,13 @@ export default {
                     font-weight: 400;
                     color: #FFFFFF;
                 }
-                .loading{
+
+                .loading {
                     display: flex;
                     justify-content: center;
                     padding-top: 13px;
-                    .loadingSpan{
+
+                    .loadingSpan {
                         position: relative;
                         top: 2px;
                         left: -9px;
@@ -338,24 +364,32 @@ export default {
                         font-weight: 400;
                         color: #FFFFFF;
                     }
-                    .el-icon{
+
+                    .el-icon {
                         position: relative;
                         top: 7px;
                         left: -12px;
                     }
                 }
             }
-            input::-webkit-input-placeholder{ /*WebKit browsers*/
+
+            input::-webkit-input-placeholder {
+                /*WebKit browsers*/
                 color: #fff;
             }
-            input::-moz-input-placeholder{ /*Mozilla Firefox*/
+
+            input::-moz-input-placeholder {
+                /*Mozilla Firefox*/
                 color: #fff;
             }
-            input::-ms-input-placeholder{ /*Internet Explorer*/
+
+            input::-ms-input-placeholder {
+                /*Internet Explorer*/
                 color: #fff;
             }
         }
-        .loginFooter{
+
+        .loginFooter {
             height: 40px;
             line-height: 40px;
             position: fixed;
@@ -368,47 +402,57 @@ export default {
             letter-spacing: 1px;
         }
     }
-    .loginMobeil{
+
+    .loginMobeil {
         position: relative;
         width: 100%;
-        height:100%;
+        height: 100%;
         background-image: url('../assets/loginImage/logindefBak.png');
         background-position: 0 0;
         background-repeat: no-repeat;
         overflow: hidden;
-        .login_mobeilMain{
+
+        .login_mobeilMain {
             width: 470px;
-            height:680px;
+            height: 680px;
             // background: rgba(0,0,0,0.4);
             position: relative;
             right: 5%;
+
             // top: 15%;
-            .titleIcon{
+            .titleIcon {
                 margin: 100px 0px 43px 75px;
             }
-            .loginCom{
+
+            .loginCom {
                 margin: 0 30px 0px 43px;
                 width: 350px;
                 height: 56px;
                 background: #1B1A1F;
                 border-radius: 5px;
-                display: flex;     
+                display: flex;
+
                 .userIcon {
                     width: 24px;
                     height: 24px;
                     margin: 16px;
-                }   
+                }
+
                 .passwordIcon {
                     width: 24px;
                     height: 24px;
                     margin: 16px;
                 }
-                .el-input{
+
+                .el-input {
                     border: 0 solid transparent;
-                    .el-input__wrapper{
+
+                    .el-input__wrapper {
                         background: transparent;
                         box-shadow: none;
-                        .el-input__inner, .el-input__inner:focus{
+
+                        .el-input__inner,
+                        .el-input__inner:focus {
                             background-color: transparent;
                             border: none !important;
                             color: #fff;
@@ -419,17 +463,20 @@ export default {
                     }
                 }
             }
-            .remeber{
+
+            .remeber {
                 margin: 0 0 0 50px;
-                .el-checkbox{
-                    .el-checkbox__label{
+
+                .el-checkbox {
+                    .el-checkbox__label {
                         color: #fff;
                         font-size: 12px;
-                        padding-left:6px;
+                        padding-left: 6px;
                     }
                 }
             }
-            .loginMobeilBtn{
+
+            .loginMobeilBtn {
                 margin: 48px 0 0 43px;
                 width: 350px;
                 height: 56px;
@@ -437,7 +484,8 @@ export default {
                 background: linear-gradient(#1e5adf, #1746d3);
                 border-radius: 5px;
                 cursor: pointer;
-                .loginSpan{
+
+                .loginSpan {
                     position: relative;
                     top: 27%;
                     left: 45%;
@@ -446,11 +494,13 @@ export default {
                     font-weight: 400;
                     color: #FFFFFF;
                 }
-                .loading{
+
+                .loading {
                     display: flex;
                     justify-content: center;
                     padding-top: 13px;
-                    .loadingSpan{
+
+                    .loadingSpan {
                         position: relative;
                         top: 2px;
                         left: -9px;
@@ -459,23 +509,29 @@ export default {
                         font-weight: 400;
                         color: #FFFFFF;
                     }
-                    .el-icon{
+
+                    .el-icon {
                         position: relative;
                         top: 7px;
                         left: -12px;
                     }
                 }
             }
-            input::-webkit-input-placeholder{ /*WebKit browsers*/
+
+            input::-webkit-input-placeholder {
+                /*WebKit browsers*/
                 color: #fff;
             }
-            input::-moz-input-placeholder{ /*Mozilla Firefox*/
+
+            input::-moz-input-placeholder {
+                /*Mozilla Firefox*/
                 color: #fff;
             }
-            input::-ms-input-placeholder{ /*Internet Explorer*/
+
+            input::-ms-input-placeholder {
+                /*Internet Explorer*/
                 color: #fff;
             }
         }
     }
-}
-</style>
+}</style>

文件差异内容过多而无法显示
+ 581 - 581
src/views/homePage.vue