|
@@ -439,11 +439,11 @@ export default {
|
|
|
{
|
|
|
label: '操作',
|
|
|
width: '100',
|
|
|
- show: !this.disabled,
|
|
|
render: (h, row, index) => {
|
|
|
- const btnList = [
|
|
|
- { msg: '删除', icon: 'el-icon-delete', category: 'delete' }
|
|
|
- ]
|
|
|
+ const btnList = []
|
|
|
+ if (!this.disabled) {
|
|
|
+ btnList.push({ msg: '删除', icon: 'el-icon-delete', category: 'delete' })
|
|
|
+ }
|
|
|
if (row.contractNo && row.quotaDisburseBatch) {
|
|
|
btnList.unshift({ msg: '查看放款计划', icon: 'iconfont icon-Magnifier', category: 'see' })
|
|
|
}
|