提交代码

dev_xds
姜玉琦 2023-11-02 23:04:08 +08:00
parent 60f8ab935f
commit 2a70bae606
1 changed files with 26 additions and 1 deletions

View File

@ -101,7 +101,7 @@
fixed="left"
show-overflow-tooltip
/>
<el-table-column label="参建单位" align="left" prop="unitName" width="163" show-overflow-tooltip/>
<el-table-column label="参建单位" align="left" fixed="left" prop="unitName" width="163" show-overflow-tooltip/>
<el-table-column label="安责险" align="center" prop="azx" width="80" show-overflow-tooltip>
<template slot-scope="scope">
<el-tag v-if="scope.row.azx==1" type="success" effect="dark"></el-tag>
@ -135,6 +135,31 @@
<el-table-column label="实测实量" align="center" prop="cscl" width="90" show-overflow-tooltip/>
<el-table-column label="举牌验收" align="center" prop="jpys" width="90" show-overflow-tooltip/>
</el-table-column>
<el-table-column label="劳务实名制" align="center" prop="lwsm" width="90">
<template slot-scope="scope">
<el-tag v-if="scope.row.lwsm!=0" type="success" effect="dark"></el-tag>
<el-tag v-if="scope.row.lwsm==0" type="danger" effect="dark"></el-tag>
</template>
</el-table-column>
<el-table-column label="标准化" align="center" prop="bzh" width="90" show-overflow-tooltip/>
<el-table-column label="视频监控" align="center">
<el-table-column label="实时监控" align="center" prop="ssjk" width="90">
<template slot-scope="scope">
<el-tag v-if="scope.row.ssjk!=0" type="success" effect="dark"></el-tag>
<el-tag v-if="scope.row.ssjk==0" type="danger" effect="dark"></el-tag>
</template>
</el-table-column>
<el-table-column label="AI监控" align="center" prop="aijk" width="90">
<template slot-scope="scope">
<el-tag v-if="scope.row.aijk!=0" type="success" effect="dark"></el-tag>
<el-tag v-if="scope.row.aijk==0" type="danger" effect="dark"></el-tag>
</template>
</el-table-column>
</el-table-column>
<el-table-column label="工程审批" align="center">
<el-table-column label="进行中" align="center" prop="gcsq" width="90" show-overflow-tooltip/>
<el-table-column label="已完成" align="center" prop="gcsp" width="90" show-overflow-tooltip/>
</el-table-column>
</el-table>
</div>
</template>