|
|
|
@ -120,7 +120,7 @@ |
|
|
|
|
<span slot="action" slot-scope="text, record"> |
|
|
|
|
<a @click="handleEdit(record)">编辑</a> |
|
|
|
|
<a-divider type="vertical"/> |
|
|
|
|
<a @click="handleDetail(record)">详情</a> |
|
|
|
|
<a @click="handleDetail(record.id)">详情</a> |
|
|
|
|
<a-divider type="vertical"/> |
|
|
|
|
<a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)"> |
|
|
|
|
<a>删除</a> |
|
|
|
@ -301,8 +301,8 @@ |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
// 详情 |
|
|
|
|
handleDetail(record){ |
|
|
|
|
this.$refs.ZyClothsStyleListDetail.showModal(record) |
|
|
|
|
handleDetail(id){ |
|
|
|
|
this.$refs.ZyClothsStyleListDetail.showModal(id) |
|
|
|
|
}, |
|
|
|
|
getSuperFieldList() { |
|
|
|
|
let fieldList = []; |
|
|
|
|