| | |
| | | <el-table-column type="index" label="序号" width="200"/> |
| | | <el-table-column property="id" label="作业证编号" width="200"/> |
| | | <el-table-column property="workType" label="作业类型" width="200"/> |
| | | <el-table-column property="combustible" label="可燃气%"/> |
| | | <!-- <el-table-column property="combustible" label="可燃气%"/>--> |
| | | <el-table-column property="combustible" label="可燃气%"> |
| | | <template #default="scope"> |
| | | <span :class="scope.row.combustible > 0 ? 'red': ''">{{ scope.row.combustible }}</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column property="oxygen" label="氧气%"/> |
| | | <el-table-column property="co" label="一氧化碳ppm"/> |
| | | <el-table-column property="hs" label="硫化氢ppm"/> |
| | |
| | | <el-form-item label="可燃气%" prop="combustible"> |
| | | <el-input v-model="addRecord.combustible"/> |
| | | </el-form-item> |
| | | <el-form-item label="氧气" prop="oxygen"> |
| | | <el-form-item label="氧气%" prop="oxygen"> |
| | | <el-input v-model="addRecord.oxygen"/> |
| | | </el-form-item> |
| | | <el-form-item label="一氧化碳ppm" prop="combustible"> |
| | |
| | | |
| | | <style scoped lang="scss"> |
| | | $homeNavLengh: 8; |
| | | .red{ |
| | | color: red; |
| | | } |
| | | .home-container { |
| | | height: calc(100vh - 144px); |
| | | box-sizing: border-box; |