SunZehao hace 10 meses
padre
commit
fc4e496679
Se han modificado 1 ficheros con 417 adiciones y 389 borrados
  1. 417 389
      src/components/assessment/evaluationUnitRatingPage.vue

+ 417 - 389
src/components/assessment/evaluationUnitRatingPage.vue

@@ -17,24 +17,19 @@
                 <seachs @handleSeach="getSeachData" @handleRest="resetSeach"></seachs>
             </div>
             <div class="PeriodBtn" :style="$utils.PeriodBtnSty()">
-                <btns
-                :showImport="false"
-                :showExport="false"
-                :showSave="$utils.havePurview('evaluationUnitRate:oneLevel:save')"
-                :showAdd="$utils.havePurview('evaluationUnitRate:oneLevel:add')"
-                :showDelete="$utils.havePurview('evaluationUnitRate:oneLevel:delete')"
-                :disSave="changeDateSelect.length === 0 || changeDateSelect.length>1"
-                :disDelete="changeDateSelect.length === 0"
-                :disImport="false" :disExport="false"
-                @handleAdd="handleAdd"
-                @handleEdit="handleEdit"
-                @handleDelete="handleDelete"
-                ></btns>
+                <!-- $utils.havePurview('evaluationUnitRate:oneLevel:add') -->
+                <btns :showImport="false" :showExport="false"
+                    :showSave="$utils.havePurview('evaluationUnitRate:oneLevel:save')"
+                    :showAdd="$utils.havePurview('evaluationUnitRate:oneLevel:add')"
+                    :showDelete="$utils.havePurview('evaluationUnitRate:oneLevel:delete')"
+                    :disSave="changeDateSelect.length === 0 || changeDateSelect.length>1"
+                    :disDelete="changeDateSelect.length === 0" :disImport="false" :disExport="false"
+                    @handleAdd="handleAdd" @handleEdit="handleEdit" @handleDelete="handleDelete"></btns>
             </div>
             <div class="evaluationUnitRatingTableData">
-                 <!-- @row-click="rowClickToggle" -->
+                <!-- @row-click="rowClickToggle" -->
                 <el-table :data="evaluationUnitRatingData" style="width: 100%" :class="unitRatingTableSty()"
-                 @select="rowClick" @select-all="rowClick" @row-dblclick="rowClickToggle">
+                    @select="rowClick" @select-all="rowClick" @row-dblclick="rowClickToggle">
                     <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="yearRatingCode" />
@@ -50,33 +45,28 @@
                     <el-table-column label="操作" width="160">
                         <template #default="scope">
                             <div style="display:flex">
-                                <p class="indicitem" v-if="scope.row.stage === '流程未启动'" @click="agetdeptresponsibility(scope.row)">启动</p>
-                                <p style="font-size: 12px;margin-right: 20px;" v-else-if="scope.row.stage === '流程已结束'" >已结束</p>
-                                <p style="font-size: 12px;margin-right: 20px;" v-else >已启动</p>
+                                <p class="indicitem" v-if="scope.row.stage === '流程未启动'"
+                                    @click="agetdeptresponsibility(scope.row)">启动</p>
+                                <p style="font-size: 12px;margin-right: 20px;" v-else-if="scope.row.stage === '流程已结束'">
+                                    已结束</p>
+                                <p style="font-size: 12px;margin-right: 20px;" v-else>已启动</p>
                             </div>
                         </template>
                     </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">
+                <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">
                 </el-pagination>
             </div>
-            <el-dialog :title="title" custom-class="startToDia" v-model="dialogVisible" width="600px" :close-on-click-modal="false">
+            <el-dialog :title="title" custom-class="startToDia" 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="year">
-                            <el-date-picker
-                                v-model="ruleForm.year"
-                                :disabled="isSave"
-                                type="year"
-                                value-format="YYYY"
-                                placeholder="请选择年份"
-                                />
+                            <el-date-picker v-model="ruleForm.year" :disabled="isSave" type="year" value-format="YYYY"
+                                placeholder="请选择年份" />
                         </el-form-item>
                         <el-form-item label="描述" prop="des">
                             <el-input v-model="ruleForm.des" :rows="5" type="textarea" placeholder="请输入描述"></el-input>
@@ -92,8 +82,8 @@
             </el-dialog>
             <el-dialog title="流程详情" v-model="statesVisible" :fullscreen="true" :close-on-click-modal="false">
                 <div class="flowSty">
-                    <iframe id="iframeContain" width="100%" height="500px"
-                     frameborder="0" class="iframe" name="iframeContain" seamless scrolling="no" :src="iframeURL">            
+                    <iframe id="iframeContain" width="100%" height="500px" frameborder="0" class="iframe"
+                        name="iframeContain" seamless scrolling="no" :src="iframeURL">
                     </iframe>
                     <el-table :data="stageArr" style="width: 100%">
                         <el-table-column type="index" label="序号" align="center" />
@@ -119,413 +109,451 @@
                 </div>
             </el-dialog>
         </div>
-        <rating-dialog ref="ratingDialog" ></rating-dialog>
+        <rating-dialog ref="ratingDialog"></rating-dialog>
     </div>
 </template>
 
 <script>
-import ratingDialog from './evaluationUnitRatingDialog.vue'
-import btns from '../elbuttonS.vue'
-import seachs from '../seachGroup.vue'
-import {apiGetorganizationyearratinglist, apiGetorganizationyearratingsave,apiGetworkflowgetOpinion,apiGetdoAction,
-apiPostorganizationyearratingDelete} from '../../api/api'
-export default {
-    components: {
-        ratingDialog,
-        btns,
-        seachs
-    },
-    data() {
-        return {
-            dialogVisible: false,
-            statesVisible: false,
-            isSave: false,
-            title: '',
-            iframeURL: '',
-            evalradio: {},
-            changeDateSelect: [],
-            evaluationUnitRatingData:[],
-            stageArr: [],
-            ruleForm: {
-                year: '',
-                des: ''
-            },
-            rules: {
-                year: [
-                    { required: true, message: '请选择年份', trigger: 'change' }
-                ],
-                des: [
-                    { required: true, message: '请输入描述', trigger: 'blur' }
-                ]
-            },
-            page:{
-                pagesize: 12,
-                currentPage: 1,
-                total: 0
-            },
-            ratingCode: '',
-            ratingDes: '',
-            businessStr: '',
-            resAnnual: '',
-            monthArr: [],
-            ratingArr: [],
-            winPix: window.devicePixelRatio,
-            innerWidth: window.innerWidth
-        }
-    },
-    created() {
-        this.ratingArr = [
-            {
-                label: 'A级',
-                value: 'A'
-            },
-            {
-                label: 'B级',
-                value: 'B'
-            },
-            {
-                label: 'C级',
-                value: 'C'
-            }
-        ]
-        this.resAnnual = new Date().getFullYear().toString()
-        this.getevaluRatingList()
-    },
-    methods:{
-        // 查询列表页面
-        getevaluRatingList() {
-            let that = this
-            let params = {
-                pageNum: that.page.currentPage,
-                pageSize: that.page.pagesize,
-                des: that.ratingDes,
-                yearRatingCode: that.ratingCode,
-                year: that.resAnnual
-            }
-            apiGetorganizationyearratinglist(params).then(datas =>{
-                if (datas && datas.data.records) {
-                    that.evaluationUnitRatingData = datas.data.records
-                    that.page.total = datas.data.total
-                }
-            })
+    import ratingDialog from './evaluationUnitRatingDialog.vue'
+    import btns from '../elbuttonS.vue'
+    import seachs from '../seachGroup.vue'
+    import {
+        apiGetorganizationyearratinglist,
+        apiGetorganizationyearratingsave,
+        apiGetworkflowgetOpinion,
+        apiGetdoAction,
+        apiPostorganizationyearratingDelete
+    } from '../../api/api'
+    export default {
+        components: {
+            ratingDialog,
+            btns,
+            seachs
         },
-        handleSizeChange(val){
-            this.page.pagesize = val
-            this.getevaluRatingList()
+        data() {
+            return {
+                dialogVisible: false,
+                statesVisible: false,
+                isSave: false,
+                title: '',
+                iframeURL: '',
+                evalradio: {},
+                changeDateSelect: [],
+                evaluationUnitRatingData: [],
+                stageArr: [],
+                ruleForm: {
+                    year: '',
+                    des: ''
+                },
+                rules: {
+                    year: [{
+                        required: true,
+                        message: '请选择年份',
+                        trigger: 'change'
+                    }],
+                    des: [{
+                        required: true,
+                        message: '请输入描述',
+                        trigger: 'blur'
+                    }]
+                },
+                page: {
+                    pagesize: 12,
+                    currentPage: 1,
+                    total: 0
+                },
+                ratingCode: '',
+                ratingDes: '',
+                businessStr: '',
+                resAnnual: '',
+                monthArr: [],
+                ratingArr: [],
+                winPix: window.devicePixelRatio,
+                innerWidth: window.innerWidth
+            }
         },
-        handleCurrentChange(val){
-            this.page.currentPage =val
+        created() {
+            this.ratingArr = [{
+                    label: 'A级',
+                    value: 'A'
+                },
+                {
+                    label: 'B级',
+                    value: 'B'
+                },
+                {
+                    label: 'C级',
+                    value: 'C'
+                }
+            ]
+            this.resAnnual = new Date().getFullYear().toString()
             this.getevaluRatingList()
         },
-        saveevaluaStart(formName) {
-            let that = this
-            that.$refs[formName].validate((valid) => {
-                if (valid) {
-                    that.saveAndEditIndicatorData()
+        methods: {
+            // 查询列表页面
+            getevaluRatingList() {
+                let that = this
+                let params = {
+                    pageNum: that.page.currentPage,
+                    pageSize: that.page.pagesize,
+                    des: that.ratingDes,
+                    yearRatingCode: that.ratingCode,
+                    year: that.resAnnual
                 }
-            });
-        },
-        //新增/修改考评启动数据
-        saveAndEditIndicatorData() {
-            let that = this
-            // let userMes = JSON.parse(window.sessionStorage.getItem('user'))
-            let params = {
-                // createName: userMes.name,
-                createName: '组织人事部',
-                year: that.ruleForm.year,
-                des: that.ruleForm.des
-            }
-            if (that.isSave) {
-                params.id = that.evalradio.id
-            }
-            apiGetorganizationyearratingsave(params).then(datas =>{
-                if (!datas.success) {
-                    that.$message({
-                        message: datas.message,
-                        type: 'error'
-                    });
-                } else {
-                    if (!that.isSave) {
-                        that.$message({
-                            message: '单位绩效考核评级新增成功',
-                            type: 'success'
-                        });
-                    } else {
-                        that.$message({
-                            message: '单位绩效考核评级修改成功',
-                            type: 'success'
-                        });
+                apiGetorganizationyearratinglist(params).then(datas => {
+                    if (datas && datas.data.records) {
+                        that.evaluationUnitRatingData = datas.data.records
+                        that.page.total = datas.data.total
+                    }
+                })
+            },
+            handleSizeChange(val) {
+                this.page.pagesize = val
+                this.getevaluRatingList()
+            },
+            handleCurrentChange(val) {
+                this.page.currentPage = val
+                this.getevaluRatingList()
+            },
+            saveevaluaStart(formName) {
+                let that = this
+                that.$refs[formName].validate((valid) => {
+                    if (valid) {
+                        that.saveAndEditIndicatorData()
                     }
-                    that.dialogVisible = false
-                    that.changeDateSelect = []
-                    that.getevaluRatingList()
-                }
-            })
-        },
-        getSeachData() {
-            this.getevaluRatingList()
-        },
-        resetSeach() {
-            this.ratingDes = ''
-            this.ratingCode = ''
-            this.resAnnual = ''
-            this.getevaluRatingList()
-        },
-        rowClick(selection, row) {
-            this.changeDateSelect = selection
-        },
-        rowClickToggle(row) {
-            this.$refs.ratingDialog.init(row)
-        },
-        seeStates(row) {
-            if (!row.instId) {
-                this.$message({
-                    type: 'error',
-                    message: '无法查看流程'
                 });
-            } else {
-                this.statesVisible = true
-                let url = ''
-                if (window.location.hostname === '10.65.78.81') {
-                    url = 'http://10.65.79.85:8080'
-                } else {
-                    url = 'http://10.65.78.23:8080'
+            },
+            //新增/修改考评启动数据
+            saveAndEditIndicatorData() {
+                let that = this
+                // let userMes = JSON.parse(window.sessionStorage.getItem('user'))
+                let params = {
+                    // createName: userMes.name,
+                    createName: '组织人事部',
+                    year: that.ruleForm.year,
+                    des: that.ruleForm.des
                 }
-                this.iframeURL = url+'/agilebpm-ui/bpm/instance/instanceImageDialog.html?instanceId='+row.instId+'&iamCode='+window.localStorage.getItem('code')
-                this.getstageData(row.instId)
-            }
-        },
-        // 根据流程id获取业务id
-        getstageData(id) {
-            let that = this
-            let params = {
-                instId: id,
-                iamCode: window.localStorage.getItem('code')
-            }
-            apiGetworkflowgetOpinion(params).then(datas =>{
-                if (datas && datas.data) {
-                    that.stageArr = datas.data.data                    
+                if (that.isSave) {
+                    params.id = that.evalradio.id
                 }
-            })
-        },
-        changeAssignInfo(row) {
-            let showStr = ''
-            if (row.assignInfo) {
-                showStr = row.assignInfo.substring(row.assignInfo.indexOf('-')+1, row.assignInfo.length).substring(0, row.assignInfo.substring(row.assignInfo.indexOf('-')+1, row.assignInfo.length).indexOf('-'))
-            }
-            return showStr
-        },
-        agetdeptresponsibility(row) {
-            let that = this
-            let par = {
-                defKey: "nddwpj",
-                businessKey: row.id,
-                action: "start",
-                opinion: "年度单位评级",
-                iamCode: window.localStorage.getItem('code')
-            }
-            if (row.instId === null || row.instId === '') {
-                apiGetdoAction(par).then(datas =>{
-                    if (datas && datas.data) {
-                        if (datas.data.isOk) {
+                apiGetorganizationyearratingsave(params).then(datas => {
+                    if (!datas.success) {
+                        that.$message({
+                            message: datas.message,
+                            type: 'error'
+                        });
+                    } else {
+                        if (!that.isSave) {
                             that.$message({
-                                message: '流程已启动',
+                                message: '单位绩效考核评级新增成功',
                                 type: 'success'
                             });
                         } else {
                             that.$message({
-                                message: datas.data.msg,
-                                type: 'error'
+                                message: '单位绩效考核评级修改成功',
+                                type: 'success'
                             });
                         }
+                        that.dialogVisible = false
+                        that.changeDateSelect = []
+                        that.getevaluRatingList()
                     }
                 })
-            }
-        },
-        handleAdd() {
-            this.dialogVisible = true
-            this.isSave = false
-            this.evalradio = {}
-            this.title = '新建单位绩效考核评级'
-            this.$nextTick(() =>{
-                this.ruleForm = {
-                    year: '',
-                    des: ''
+            },
+            getSeachData() {
+                this.getevaluRatingList()
+            },
+            resetSeach() {
+                this.ratingDes = ''
+                this.ratingCode = ''
+                this.resAnnual = ''
+                this.getevaluRatingList()
+            },
+            rowClick(selection, row) {
+                this.changeDateSelect = selection
+            },
+            rowClickToggle(row) {
+                this.$refs.ratingDialog.init(row)
+            },
+            seeStates(row) {
+                if (!row.instId) {
+                    this.$message({
+                        type: 'error',
+                        message: '无法查看流程'
+                    });
+                } else {
+                    this.statesVisible = true
+                    let url = ''
+                    if (window.location.hostname === '10.65.78.81') {
+                        url = 'http://10.65.79.85:8080'
+                    } else {
+                        url = 'http://10.65.78.23:8080'
+                    }
+                    this.iframeURL = url + '/agilebpm-ui/bpm/instance/instanceImageDialog.html?instanceId=' + row
+                        .instId + '&iamCode=' + window.localStorage.getItem('code')
+                    this.getstageData(row.instId)
                 }
-            })
-        },
-        handleEdit() {
-            this.dialogVisible = true
-            this.isSave = true
-            this.title = '修改单位绩效考核评级'
-            this.evalradio = this.changeDateSelect[0]
-            this.ruleForm = {
-                year: this.evalradio.year,
-                des: this.evalradio.des
-            }
-        },
-        //删除
-        handleDelete() {
-            this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
-                confirmButtonText: '确定',
-                cancelButtonText: '取消',
-                type: 'warning'
-            }).then(() => {
+            },
+            // 根据流程id获取业务id
+            getstageData(id) {
+                let that = this
+                let params = {
+                    instId: id,
+                    iamCode: window.localStorage.getItem('code')
+                }
+                apiGetworkflowgetOpinion(params).then(datas => {
+                    if (datas && datas.data) {
+                        that.stageArr = datas.data.data
+                    }
+                })
+            },
+            changeAssignInfo(row) {
+                let showStr = ''
+                if (row.assignInfo) {
+                    showStr = row.assignInfo.substring(row.assignInfo.indexOf('-') + 1, row.assignInfo.length)
+                        .substring(0, row.assignInfo.substring(row.assignInfo.indexOf('-') + 1, row.assignInfo.length)
+                            .indexOf('-'))
+                }
+                return showStr
+            },
+            agetdeptresponsibility(row) {
                 let that = this
-                let paramsArr = []
-                that.changeDateSelect.forEach(it =>{
-                    paramsArr.push(it.id)
+                let par = {
+                    defKey: "nddwpj",
+                    businessKey: row.id,
+                    action: "start",
+                    opinion: "年度单位评级",
+                    iamCode: window.localStorage.getItem('code')
+                }
+                if (row.instId === null || row.instId === '') {
+                    apiGetdoAction(par).then(datas => {
+                        if (datas && datas.data) {
+                            if (datas.data.isOk) {
+                                that.$message({
+                                    message: '流程已启动',
+                                    type: 'success'
+                                });
+                            } else {
+                                that.$message({
+                                    message: datas.data.msg,
+                                    type: 'error'
+                                });
+                            }
+                        }
+                    })
+                }
+            },
+            handleAdd() {
+                this.dialogVisible = true
+                this.isSave = false
+                this.evalradio = {}
+                this.title = '新建单位绩效考核评级'
+                this.$nextTick(() => {
+                    this.ruleForm = {
+                        year: '',
+                        des: ''
+                    }
                 })
-                apiPostorganizationyearratingDelete(paramsArr.join(',')).then(datas =>{
-                    that.$message({
-                        type: 'success',
-                        message: '删除成功!'
-                    });
-                    that.getevaluRatingList()
-                    that.changeDateSelect = []
+            },
+            handleEdit() {
+                this.dialogVisible = true
+                this.isSave = true
+                this.title = '修改单位绩效考核评级'
+                this.evalradio = this.changeDateSelect[0]
+                this.ruleForm = {
+                    year: this.evalradio.year,
+                    des: this.evalradio.des
+                }
+            },
+            //删除
+            handleDelete() {
+                this.$confirm('此操作将永久删除该数据, 是否继续?', '提示', {
+                    confirmButtonText: '确定',
+                    cancelButtonText: '取消',
+                    type: 'warning'
+                }).then(() => {
+                    let that = this
+                    let paramsArr = []
+                    that.changeDateSelect.forEach(it => {
+                        paramsArr.push(it.id)
+                    })
+                    apiPostorganizationyearratingDelete(paramsArr.join(',')).then(datas => {
+                        that.$message({
+                            type: 'success',
+                            message: '删除成功!'
+                        });
+                        that.getevaluRatingList()
+                        that.changeDateSelect = []
+                    })
                 })
-            })
-        },
-        unitRatingTableSty() {
-            if (this.winPix === 1.25 || this.innerWidth < 1800) {
-                return 'unitRating125Table'
-            } else {
-                return 'unitRating100Table'
+            },
+            unitRatingTableSty() {
+                if (this.winPix === 1.25 || this.innerWidth < 1800) {
+                    return 'unitRating125Table'
+                } else {
+                    return 'unitRating100Table'
+                }
             }
         }
     }
-}
 </script>
 
 <style lang="less">
-.evaluationUnitRating{
-    .evaluationUnitRatingBtn{
-        .collectSeach{
-            display: flex;
-            padding: 24px 20px;
-            border-bottom: 1px solid#D6DBEA;
-            .exceed{
+    .evaluationUnitRating {
+        .evaluationUnitRatingBtn {
+            .collectSeach {
                 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{
-                    margin-right:10px;
-                    height: 40px;
-                    .el-input__inner{
-                        height:40px;
+                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__suffix{
-                        .el-select__caret{
-                            line-height:30px;
+
+                    .el-input {
+                        margin-right: 10px;
+                        height: 40px;
+
+                        .el-input__inner {
+                            height: 40px;
+                        }
+
+                        .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;
-        }
-        .PeriodBtn{
-            display: flex;
-            justify-content: flex-end;
-            padding: 20px 0;
-        }
-        .el-button{
-            height: 30px;
-            // width:100px;
-            padding: 0 20px ;
-            // padding-top: 8px;
-            span{
-                margin:0;
+
+            span {
+                font-size: 14px;
             }
-        }
-        .evaluationUnitRatingTableData{
-            .unitRating125Table{
-                .el-table__body-wrapper{
-                    height: 53vh !important;
-                }
+
+            .PeriodBtn {
+                display: flex;
+                justify-content: flex-end;
+                padding: 20px 0;
             }
-            .unitRating100Table{
-                .el-table__body-wrapper{
-                    height: 60vh !important;
+
+            .el-button {
+                height: 30px;
+                // width:100px;
+                padding: 0 20px;
+
+                // padding-top: 8px;
+                span {
+                    margin: 0;
                 }
             }
-            .el-table{
-                .el-input__inner{
-                    height: 30px !important;
-                }
-                .el-radio__label{
-                    display: none;
-                }
-                .tooltipCC{
-                    width: 300px !important;
-                    display: inline-block;
-                    overflow: hidden;
-                    text-overflow: ellipsis;
-                    white-space: nowrap;
+
+            .evaluationUnitRatingTableData {
+                .unitRating125Table {
+                    .el-table__body-wrapper {
+                        height: 53vh !important;
+                    }
                 }
-                .tooltipCCDes{
-                    width: 50px;
-                    display: inline-block;
-                    overflow: hidden;
-                    text-overflow: ellipsis;
-                    white-space: nowrap;
+
+                .unitRating100Table {
+                    .el-table__body-wrapper {
+                        height: 60vh !important;
+                    }
                 }
-                .indicitem{
-                    color: #409EFF;
-                    font-size: 12px;
-                    margin-right: 20px;
-                    cursor:pointer;
-                    &:hover{
-                        text-decoration: underline;
+
+                .el-table {
+                    .el-input__inner {
+                        height: 30px !important;
+                    }
+
+                    .el-radio__label {
+                        display: none;
+                    }
+
+                    .tooltipCC {
+                        width: 300px !important;
+                        display: inline-block;
+                        overflow: hidden;
+                        text-overflow: ellipsis;
+                        white-space: nowrap;
+                    }
+
+                    .tooltipCCDes {
+                        width: 50px;
+                        display: inline-block;
+                        overflow: hidden;
+                        text-overflow: ellipsis;
+                        white-space: nowrap;
+                    }
+
+                    .indicitem {
+                        color: #409EFF;
+                        font-size: 12px;
+                        margin-right: 20px;
+                        cursor: pointer;
+
+                        &:hover {
+                            text-decoration: underline;
+                        }
                     }
                 }
+
+                .el-pagination {
+                    margin-top: 20px;
+                    text-align: end;
+                    position: relative;
+                }
             }
-            .el-pagination{
-                margin-top: 20px;
-                text-align: end;
-                position: relative;
-            }
-        }
-        .el-overlay{
-            .startToDia{
-                .el-dialog__body{
-                    padding: 30px 60px 30px 20px !important;
-                    .periodFrom{
-                        .el-select, .el-input{
-                            width: 100%;
+
+            .el-overlay {
+                .startToDia {
+                    .el-dialog__body {
+                        padding: 30px 60px 30px 20px !important;
+
+                        .periodFrom {
+
+                            .el-select,
+                            .el-input {
+                                width: 100%;
+                            }
+
+                            .el-input {
+                                height: 30px;
+                            }
                         }
-                        .el-input{
-                            height: 30px;
+
+                        .flowSty {
+                            width: 100%;
+                            height: 70vh;
                         }
                     }
-                    .flowSty{
-                        width: 100%;
-                        height: 70vh;
-                    }
                 }
             }
         }
+
     }
-    
-}
 </style>