We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12b5920 commit f8b56a8Copy full SHA for f8b56a8
src/views/crm/customer/index.vue
@@ -208,11 +208,12 @@ const list = ref([]) // 列表的数据
208
const queryParams = reactive({
209
pageNo: 1,
210
pageSize: 10,
211
- name: null,
212
- mobile: null,
213
- industryId: null,
214
- level: null,
215
- source: null
+ pool: false,
+ name: '',
+ mobile: '',
+ industryId: undefined,
+ level: undefined,
216
+ source: undefined
217
})
218
const queryFormRef = ref() // 搜索的表单
219
const exportLoading = ref(false) // 导出的加载中
@@ -238,6 +239,7 @@ const handleQuery = () => {
238
239
/** 重置按钮操作 */
240
const resetQuery = () => {
241
queryFormRef.value.resetFields()
242
+ queryParams.pool = false
243
handleQuery()
244
}
245
0 commit comments