2e226a0b by renchao@pashanhoo.com

style;待办箱删除移动详情

1 parent 7d2ab579
1 <?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 ...\ No newline at end of file
...@@ -232,6 +232,7 @@ export default { ...@@ -232,6 +232,7 @@ export default {
232 break; 232 break;
233 case "rm": 233 case "rm":
234 this.del() 234 this.del()
235 break;
235 } 236 }
236 }, 237 },
237 del () { 238 del () {
...@@ -250,6 +251,7 @@ export default { ...@@ -250,6 +251,7 @@ export default {
250 message: "删除成功!", 251 message: "删除成功!",
251 }); 252 });
252 window.close(); 253 window.close();
254 window.opener.getBpageList();
253 } else { 255 } else {
254 this.$message.error(res.message); 256 this.$message.error(res.message);
255 } 257 }
......
...@@ -135,9 +135,8 @@ export default { ...@@ -135,9 +135,8 @@ export default {
135 sendThis(this); 135 sendThis(this);
136 window["getBpageList"] = () => { 136 window["getBpageList"] = () => {
137 this.queryClick(); 137 this.queryClick();
138 }; 138 }
139 }, 139 },
140
141 watch: { 140 watch: {
142 queryForm: { 141 queryForm: {
143 handler (newName, oldName) { }, 142 handler (newName, oldName) { },
......
...@@ -104,13 +104,13 @@ class data extends filter { ...@@ -104,13 +104,13 @@ class data extends filter {
104 prop: 'fromstepdate', 104 prop: 'fromstepdate',
105 width: '140' 105 width: '140'
106 }, 106 },
107 { 107 // {
108 label: '操作', 108 // label: '操作',
109 width: '80', 109 // width: '80',
110 render: (h, scope) => { 110 // render: (h, scope) => {
111 return <el-button type="text" icon="el-icon-delete" onClick={() => { vm.del(scope.row) }}>删除</el-button> 111 // return <el-button type="text" icon="el-icon-delete" onClick={() => { vm.del(scope.row) }}>删除</el-button>
112 } 112 // }
113 } 113 // }
114 ] 114 ]
115 } 115 }
116 } 116 }
......