Commit d29c8bbc by fukai

补充code支持

parent a757bd1a
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
:width="item.width" :width="item.width"
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{!item.render?scope.row[item.prop]:item.render(item.prop,scope)}}</span> <span>{{!item.render?scope.row[item.prop]:item.render(item,scope)}}</span>
</template> </template>
</el-table-column> </el-table-column>
<slot></slot> <slot></slot>
...@@ -305,8 +305,8 @@ export default { ...@@ -305,8 +305,8 @@ export default {
}, },
//补充自定义列处理函数 //补充自定义列处理函数
date(prop,scope){ date(item,scope){
let value = scope.row[prop] let value = scope.row[item.prop]
if(!value){ if(!value){
return "" return ""
} }
...@@ -315,8 +315,9 @@ export default { ...@@ -315,8 +315,9 @@ export default {
return value.substring(0,idx) return value.substring(0,idx)
return value return value
}, },
code(prop,scope,code){ code(item,scope){
let value = scope.row[prop] let value = scope.row[item.prop]
let code = item.code
if(!value || !code){ if(!value || !code){
return "" return ""
} }
......
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