096314e5 by jiaozeping@pashanhoo.com

123

1 parent ea97c1fd
......@@ -146,7 +146,17 @@ export default {
this.qldataList = _.cloneDeep(this.dataList)
this.sqdataList = _.cloneDeep(this.dataList)
},
handleRead (row) { }
handleRead (row) { },
//抵押
dyClick(){
},
//查封
cfClick(){
}
}
}
</script>
......
......@@ -67,8 +67,11 @@ class data extends filter {
render: (h, scope) => {
return (
<div>
<el-button type="text" icon="el-icon-edit-outline" onClick={() => { this.editClick(scope) }}>抵押</el-button>
<el-button type="text" icon="el-icon-edit-outline" onClick={() => { this.dyClick(scope) }}>抵押</el-button>
<el-button type="text" icon="el-icon-edit-outline" onClick={() => { this.cfClick(scope) }}>查封</el-button>
</div>
)
}
}
......