Commit df3d3d82 by lixiaomin

修改机器详情 - 组件管理

parent 765429ee
......@@ -170,9 +170,13 @@ export default {
//经验值回显处理
showBut(val){
if(val!=""){
if(val=="[]"){
this.experienceValueShow=true;
return true;
}
this.experienceValueShow=false;
return false;
}else{
}else{
this.experienceValueShow=true;
return true;
}
......
......@@ -9,9 +9,10 @@
<el-table-column label="组件编码" align="center" prop="ros_code" />
<el-table-column label="备注说明" align="center" prop=""/>
<el-table-column label="组件状态" align="center" prop="state_desc"/>
<el-table-column label="原料" align="center">
<el-table-column label="原料" align="center" prop="material"/>
<el-table-column label="操作" align="center">
<template slot-scope="scope">
<a @click="handleMaterialDialog(scope.row)" style="color: blue">添加原料</a>
<a @click="handleMaterialDialog(scope.row)" style="color: blue">选择原料</a>
</template>
</el-table-column>
</el-table>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment