| | |
| | | <el-table-column label="风险评估-严重度" prop="remark" align="center" > |
| | | <template #default="{row,$index}"> |
| | | <div v-for="(i,index) in row.contentMesses" :key="index"> |
| | | <el-input style="margin-bottom: 15px" type="textarea" disabled v-model="i.severity"></el-input> |
| | | <el-input style="margin-bottom: 15px" type="textarea" :rows="3" disabled v-model="i.severity"></el-input> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="风险评估-发生频率" prop="remark" align="center" > |
| | | <template #default="{row,$index}"> |
| | | <div v-for="(i,index) in row.contentMesses" :key="index"> |
| | | <el-input style="margin-bottom: 15px" type="textarea" disabled v-model="i.frequency"></el-input> |
| | | <el-input style="margin-bottom: 15px" type="textarea" :rows="3" disabled v-model="i.frequency"></el-input> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="风险评估-RPN" prop="remark" align="center" > |
| | | <template #default="{row,$index}"> |
| | | <div v-for="(i,index) in row.contentMesses" :key="index"> |
| | | <el-input style="margin-bottom: 15px" type="textarea" disabled v-model="i.rpn"></el-input> |
| | | <el-input style="margin-bottom: 15px" type="textarea" :rows="3" disabled v-model="i.rpn"></el-input> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="风险评估-风险等级" prop="remark" align="center" > |
| | | <template #default="{row,$index}"> |
| | | <div v-for="(i,index) in row.contentMesses" :key="index"> |
| | | <el-input style="margin-bottom: 15px" type="textarea" disabled v-model="i.riskLevel"></el-input> |
| | | <el-input style="margin-bottom: 15px" type="textarea" :rows="3" disabled v-model="i.riskLevel"></el-input> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | <el-table-column label="风险对应措施-责任人" prop="remark" align="center" width="120"> |
| | | <template #default="{row,$index}"> |
| | | <div v-for="(i,index) in row.contentMesses" :key="index"> |
| | | <el-input style="margin-bottom: 15px" type="textarea" disabled v-model="i.chargeUser"></el-input> |
| | | <el-input style="margin-bottom: 15px" type="textarea" :rows="3" disabled v-model="i.chargeUser"></el-input> |
| | | </div> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | <template #default="{row,$index}"> |
| | | <div v-for="(i,index) in row.contentMesses" :key="index"> |
| | | <el-form-item :prop="'riskContents.' + '[' + $index + '].' +'contentMesses.' + '[' + index + ']' + '.monitorTime'" :rules="state.rules.monitorTime"> |
| | | <el-input style="margin-bottom: 15px" :disabled="title === '查看'" type="textarea" v-model="i.monitorTime" placeholder="请输入"></el-input> |
| | | <el-input style="margin-bottom: 15px" :disabled="title === '查看'" :rows="3" type="textarea" v-model="i.monitorTime" placeholder="请输入"></el-input> |
| | | </el-form-item> |
| | | </div> |
| | | </template> |
| | |
| | | <template #default="{row,$index}"> |
| | | <div v-for="(i,index) in row.contentMesses" :key="index"> |
| | | <el-form-item :prop="'riskContents.' + '[' + $index + '].' +'contentMesses.' + '[' + index + ']' + '.review'" :rules="state.rules.review"> |
| | | <el-input style="margin-bottom: 15px" :disabled="title === '查看'" type="textarea" v-model="i.review" placeholder="请输入"></el-input> |
| | | <el-input style="margin-bottom: 15px" :disabled="title === '查看'" :rows="3" type="textarea" v-model="i.review" placeholder="请输入"></el-input> |
| | | </el-form-item> |
| | | </div> |
| | | </template> |