|
|
@ -58,6 +58,16 @@ |
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span> |
|
|
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span> |
|
|
</template> |
|
|
</template> |
|
|
</el-table-column> |
|
|
</el-table-column> |
|
|
|
|
|
<el-table-column |
|
|
|
|
|
fixed="right" |
|
|
|
|
|
header-align="center" |
|
|
|
|
|
align="center" |
|
|
|
|
|
width="90" |
|
|
|
|
|
label="操作"> |
|
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
|
<a type="text" size="small" @click="jumpPeifang(scope.row)">跳转配方</a> |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
</el-table> |
|
|
</el-table> |
|
|
</el-form> |
|
|
</el-form> |
|
|
|
|
|
|
|
|
@ -534,6 +544,16 @@ |
|
|
localStorage.setItem('bomData', JSON.stringify(inData)) |
|
|
localStorage.setItem('bomData', JSON.stringify(inData)) |
|
|
window.open('#/part-bomManagement'); |
|
|
window.open('#/part-bomManagement'); |
|
|
}, |
|
|
}, |
|
|
|
|
|
jumpPeifang(row){ |
|
|
|
|
|
let inData={ |
|
|
|
|
|
site:row.site, |
|
|
|
|
|
partNo:row.componentPart, |
|
|
|
|
|
bomType:'Manufacturing', |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
localStorage.setItem('recipeData', JSON.stringify(inData)) |
|
|
|
|
|
window.open('#/part-recipeManagement'); |
|
|
|
|
|
}, |
|
|
// 获取流程的配置权限 |
|
|
// 获取流程的配置权限 |
|
|
getNodeAuthority (row) { |
|
|
getNodeAuthority (row) { |
|
|
getBMStatusDesc(this.searchData).then(({data})=>{ |
|
|
getBMStatusDesc(this.searchData).then(({data})=>{ |
|
|
|