|
@@ -71,7 +71,7 @@ export default {
|
|
|
{ label: '操作', width: 120, type: 'handle2', operations:
|
|
|
[
|
|
|
{ label: '编辑', func: this.openPopup, btnType: 'primary' },
|
|
|
- // { label: '删除', func: this.delHandle, btnType: 'danger' },
|
|
|
+ { label: '删除', func: this.delHandle, btnType: 'danger' },
|
|
|
]
|
|
|
}
|
|
|
]
|
|
@@ -81,7 +81,7 @@ export default {
|
|
|
delHandle(row) {
|
|
|
this.$msg(`您确定要删除该楼盘吗?`, 'confirm', () => {
|
|
|
this.$api.house.admestatenewsdel({
|
|
|
- id: row.id,
|
|
|
+ estate_news_id: row.id,
|
|
|
}).then(data => {
|
|
|
this.$msgs(`已删除!`)
|
|
|
this.fetchData()
|