Commit 255d963598d61c9dc783f7bb07008adfd8e2311a

Authored by fengwotao
1 parent 40e65dc0

fix:修复公共接口管理表格select数据无法置空问题

@@ -132,13 +132,11 @@ @@ -132,13 +132,11 @@
132 }; 132 };
133 133
134 const setStatusIsFalse = () => { 134 const setStatusIsFalse = () => {
135 - hasBatchDelete.value = false;  
136 - hasBatchPublish.value = false; 135 + (hasBatchDelete.value = false), (hasBatchPublish.value = false);
137 }; 136 };
138 137
139 const setStatusIsTrue = () => { 138 const setStatusIsTrue = () => {
140 - hasBatchDelete.value = true;  
141 - hasBatchPublish.value = true; 139 + (hasBatchDelete.value = true), (hasBatchPublish.value = true);
142 }; 140 };
143 141
144 const rowSelection = { 142 const rowSelection = {