zs 9 months ago
parent
commit
cde60b4935
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/six/index.vue

+ 2 - 2
src/views/six/index.vue

@@ -189,11 +189,11 @@ const getUrl = (item) => {
 // 筛选条件
 const toSearchFind = async () => {
   if (industry.value && industry.value.length > 0) {
-    searchForm.value.industryList = industry.value.map((i) => {
+    searchForm.value.industry = industry.value.map((i) => {
       return i.title
     })
   } else if (city.value && city.value.length > 0) {
-    searchForm.value.cityList = city.value.map((i) => {
+    searchForm.value.area = city.value.map((i) => {
       return i.name
     })
   } else searchForm.value = {}