Commit f8b56a8c by puhui999

crm-客户:公海数据区分

parent 12b59200
...@@ -208,11 +208,12 @@ const list = ref([]) // 列表的数据 ...@@ -208,11 +208,12 @@ const list = ref([]) // 列表的数据
const queryParams = reactive({ const queryParams = reactive({
pageNo: 1, pageNo: 1,
pageSize: 10, pageSize: 10,
name: null, pool: false,
mobile: null, name: '',
industryId: null, mobile: '',
level: null, industryId: undefined,
source: null level: undefined,
source: undefined
}) })
const queryFormRef = ref() // 搜索的表单 const queryFormRef = ref() // 搜索的表单
const exportLoading = ref(false) // 导出的加载中 const exportLoading = ref(false) // 导出的加载中
...@@ -238,6 +239,7 @@ const handleQuery = () => { ...@@ -238,6 +239,7 @@ const handleQuery = () => {
/** 重置按钮操作 */ /** 重置按钮操作 */
const resetQuery = () => { const resetQuery = () => {
queryFormRef.value.resetFields() queryFormRef.value.resetFields()
queryParams.pool = false
handleQuery() handleQuery()
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment