|
@@ -183,7 +183,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="flex flex-center mt-20 mb-5">
|
|
<div class="flex flex-center mt-20 mb-5">
|
|
|
- <base-button title="重置" type="0" icon="Refresh"/>
|
|
|
|
|
|
|
+ <base-button title="重置" type="0" icon="Refresh" @click="orgRefresh"/>
|
|
|
<base-button class="ml-20" title="确定" icon="Check" @click='orgCheck'/>
|
|
<base-button class="ml-20" title="确定" icon="Check" @click='orgCheck'/>
|
|
|
</div>
|
|
</div>
|
|
|
</el-dialog>
|
|
</el-dialog>
|
|
@@ -399,6 +399,13 @@ export default {
|
|
|
}
|
|
}
|
|
|
this.showOrg = false
|
|
this.showOrg = false
|
|
|
|
|
|
|
|
|
|
+ },
|
|
|
|
|
+ orgRefresh() {
|
|
|
|
|
+ this.deptList = this.deptList.map(sub => {
|
|
|
|
|
+ sub.checked = false
|
|
|
|
|
+ return sub
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
change() {
|
|
change() {
|
|
|
if (this.keyWords.length === 0) {
|
|
if (this.keyWords.length === 0) {
|