123
Showing
2 changed files
with
15 additions
and
2 deletions
| ... | @@ -146,7 +146,17 @@ export default { | ... | @@ -146,7 +146,17 @@ export default { |
| 146 | this.qldataList = _.cloneDeep(this.dataList) | 146 | this.qldataList = _.cloneDeep(this.dataList) |
| 147 | this.sqdataList = _.cloneDeep(this.dataList) | 147 | this.sqdataList = _.cloneDeep(this.dataList) |
| 148 | }, | 148 | }, |
| 149 | handleRead (row) { } | 149 | handleRead (row) { }, |
| 150 | |||
| 151 | //抵押 | ||
| 152 | dyClick(){ | ||
| 153 | |||
| 154 | }, | ||
| 155 | |||
| 156 | //查封 | ||
| 157 | cfClick(){ | ||
| 158 | |||
| 159 | } | ||
| 150 | } | 160 | } |
| 151 | } | 161 | } |
| 152 | </script> | 162 | </script> | ... | ... |
| ... | @@ -67,8 +67,11 @@ class data extends filter { | ... | @@ -67,8 +67,11 @@ class data extends filter { |
| 67 | render: (h, scope) => { | 67 | render: (h, scope) => { |
| 68 | return ( | 68 | return ( |
| 69 | <div> | 69 | <div> |
| 70 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { this.editClick(scope) }}>抵押</el-button> | 70 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { this.dyClick(scope) }}>抵押</el-button> |
| 71 | <el-button type="text" icon="el-icon-edit-outline" onClick={() => { this.cfClick(scope) }}>查封</el-button> | ||
| 72 | |||
| 71 | </div> | 73 | </div> |
| 74 | |||
| 72 | ) | 75 | ) |
| 73 | } | 76 | } |
| 74 | } | 77 | } | ... | ... |
-
Please register or sign in to post a comment