| | |
| | | <div style="text-align: center;">{{ n.unit }}</div> |
| | | </el-col> |
| | | <el-col :span="2"> |
| | | <div style="text-align: center;">{{ n.tell }}</div> |
| | | <div style="text-align: center;" v-html="n.tell"></div> |
| | | </el-col> |
| | | <el-col :span="16"> |
| | | <div class="content" style="text-align: center;width: 100%;overflow-x: auto;"> |
| | |
| | | <div style="text-align: center;">{{ n.unit }}</div> |
| | | </el-col> |
| | | <el-col :span="2"> |
| | | <div style="text-align: center;">{{ n.tell }}</div> |
| | | <div style="text-align: center;" v-html="n.tell"></div> |
| | | </el-col> |
| | | <el-col :span="16"> |
| | | <div class="content" style="text-align: center;width: 100%;overflow-x: auto;"> |
| | |
| | | }) |
| | | this.angleList = angleList |
| | | } |
| | | let tell = '' |
| | | if(item.tell.includes(',')){ |
| | | item.tell.split(',').forEach((m,i)=>{ |
| | | tell = tell + m+ (i==item.tell.split(',').length-1?'':'<br/>') |
| | | }) |
| | | }else{ |
| | | tell = item.tell |
| | | } |
| | | let obj = { |
| | | inspectionItemSubclass: item.inspectionItemSubclass, |
| | | unit:item.unit, |
| | | tell:item.tell, |
| | | tell:tell, |
| | | result:n.result, |
| | | id:item.id, |
| | | often:n.often, |
| | |
| | | if(!n.often){ |
| | | return |
| | | } |
| | | if(!n.often.includes('MHz')){ |
| | | if(!n.often.includes('MHz')||!n.often.includes('MHZ')){ |
| | | n.often = n.often + 'MHz' |
| | | } |
| | | }, |