2e226a0b by renchao@pashanhoo.com

style;待办箱删除移动详情

1 parent 7d2ab579
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1682411381886" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2656" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><path d="M106.666667 213.333333h810.666666v42.666667H106.666667z" fill="#ffffff" p-id="2657"></path><path d="M640 128v42.666667h42.666667V128c0-23.573333-19.093333-42.666667-42.538667-42.666667H383.872A42.496 42.496 0 0 0 341.333333 128v42.666667h42.666667V128h256z" fill="#ffffff" p-id="2658"></path><path d="M213.333333 896V256H170.666667v639.957333C170.666667 919.552 189.653333 938.666667 213.376 938.666667h597.248C834.218667 938.666667 853.333333 919.68 853.333333 895.957333V256h-42.666666v640H213.333333z" fill="#ffffff" p-id="2659"></path><path d="M320 341.333333h42.666667v384h-42.666667zM490.666667 341.333333h42.666666v384h-42.666666zM661.333333 341.333333h42.666667v384h-42.666667z" fill="#ffffff" p-id="2660"></path></svg>
\ No newline at end of file
......@@ -232,6 +232,7 @@ export default {
break;
case "rm":
this.del()
break;
}
},
del () {
......@@ -250,6 +251,7 @@ export default {
message: "删除成功!",
});
window.close();
window.opener.getBpageList();
} else {
this.$message.error(res.message);
}
......
......@@ -135,9 +135,8 @@ export default {
sendThis(this);
window["getBpageList"] = () => {
this.queryClick();
};
}
},
watch: {
queryForm: {
handler (newName, oldName) { },
......
......@@ -69,17 +69,17 @@ class data extends filter {
{
prop: "bdcdyh",
label: "不动产单元号",
width: '170',
width: '170',
},
{
prop: "qlrmc",
label: "权利人",
width: '120',
width: '120',
},
{
prop: "ywrmc",
label: "义务人",
width: '120',
width: '120',
},
{
prop: "zl",
......@@ -104,13 +104,13 @@ class data extends filter {
prop: 'fromstepdate',
width: '140'
},
{
label: '操作',
width: '80',
render: (h, scope) => {
return <el-button type="text" icon="el-icon-delete" onClick={() => { vm.del(scope.row) }}>删除</el-button>
}
}
// {
// label: '操作',
// width: '80',
// render: (h, scope) => {
// return <el-button type="text" icon="el-icon-delete" onClick={() => { vm.del(scope.row) }}>删除</el-button>
// }
// }
]
}
}
......