|
@@ -67,7 +67,7 @@
|
|
|
<template #footer>
|
|
|
<div style="flex: auto">
|
|
|
<el-button @click="retrievalModal = false">取消</el-button>
|
|
|
- <el-button type="primary" @click="getList">确认</el-button>
|
|
|
+ <el-button type="primary" @click="clickSearch">确认</el-button>
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-drawer>
|
|
@@ -689,6 +689,10 @@ const getDict = () => {
|
|
|
});
|
|
|
};
|
|
|
getDict();
|
|
|
+const clickSearch = () => {
|
|
|
+ sourceList.value.pagination.keyword = '';
|
|
|
+ getList()
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|