fix
zhoucong
2022-04-29 79ff2197ea16c150e3537970442ee76317d02b3e
src/views/accidentHidden/majorHidden.vue
@@ -147,13 +147,13 @@
      <el-radio-button  label="整改完成">整改完成</el-radio-button>
    </el-radio-group>
      </el-col>
      <el-col :offset="4" :span="10" style="text-align:right;">
      <!--<el-col :offset="4" :span="10" style="text-align:right;">
        <el-button class="btns" type="primary" icon="el-icon-search" size="small">查看进度</el-button>
        <el-button class="btns" type="primary" icon="el-icon-edit" size="small" @click="fillProgress()">填写进度</el-button>
      </el-col>
      </el-col>-->
    </el-row>
    <el-table :data="tableData" style="width: 100%">
      <el-table-column type="selection" width="55" align="center"></el-table-column>
     <!-- <el-table-column type="selection" width="55" align="center"></el-table-column>-->
      <el-table-column prop="number" label="编号" align="center" width="120"></el-table-column>
      <el-table-column prop="check_branch" label="检查部门" align="center" width="120"></el-table-column>
      <el-table-column prop="check_man" label="检查人" align="center" width="120"></el-table-column>
@@ -174,6 +174,12 @@
        </el-table-column>
      </el-table-column>
      <el-table-column prop="DTRisk_level" label="风险等级" align="center"> </el-table-column>
        <el-table-column prop="DTRisk_level" label="操作" align="center" width="250">
            <template slot-scope="scope">
                <el-button class="btns" type="primary" icon="el-icon-search" size="mini" @click="viewProgress(scope.row)">查看进度</el-button>
                <el-button class="btns" type="primary" icon="el-icon-edit" size="mini" @click="fillProgress(scope.row)">填写进度</el-button>
            </template>
        </el-table-column>
    </el-table>
    <div style="text-align: right">
      <el-pagination
@@ -198,7 +204,9 @@
        return {
            reList:[{label:"未关联",value:0}],
            options: [],
            form:{},
            form:{
            },
            llrList:[],
            JCDWList:[{label:"众泰煤焦化",value:0},{label:"上级单位",value:1}],
            JCBMList:[],
@@ -212,7 +220,8 @@
                page:1,
                limit:10,
                form:{
                    ht_community:"众泰煤焦化"
                    ht_community:"众泰煤焦化",
                    alter_status:'正在整改'
                },
            },
            currentPage: 1,
@@ -302,7 +311,7 @@
            })
        },
        reset(){
            this.listQuery.form={ht_community:"众泰煤焦化"}
            this.listQuery.form={ht_community:"众泰煤焦化", alter_status:'正在整改'}
            this.getPageList()
        },
        handleSizeChange(val){
@@ -360,9 +369,14 @@
                }
            })
        },
        fillProgress(){
        viewProgress(row){
            this.$router.push({
                path:"/fillProgress"
                path:"/fillProgress?type=1&id="+row.id
            })
        },
        fillProgress(row){
            this.$router.push({
                path:"/fillProgress?id="+row.id
            })
        },
    }