diff --git a/front/src/views/home/components/searchResultList.vue b/front/src/views/home/components/searchResultList.vue
index 724084a0..f80a88a9 100644
--- a/front/src/views/home/components/searchResultList.vue
+++ b/front/src/views/home/components/searchResultList.vue
@@ -137,7 +137,7 @@
浏览量:{{ item.visits || 0 }}次
- 申购量:{{ item.applyCount || 0 }}次
+ 申请量:{{ item.applyCount || 0 }}次
数据量:{{ item.sjlCount || 0 }}
@@ -430,8 +430,7 @@
item.guid
)
} else {
- window.open(
- 'http://10.134.135.24:30090/#/home')
+ window.open('http://10.134.135.24:30090/#/home')
}
} else {
if (type === 'apply') {
diff --git a/front/src/views/newHome/components/PopularAbility.vue b/front/src/views/newHome/components/PopularAbility.vue
index 5f86d6c7..ee733fcf 100644
--- a/front/src/views/newHome/components/PopularAbility.vue
+++ b/front/src/views/newHome/components/PopularAbility.vue
@@ -16,7 +16,7 @@
>
{{ sel }}
@@ -35,7 +35,7 @@
{{ select }}:{{ item.visits }}
-
+
{{ select }}:{{ item.applyCount }}
@@ -64,7 +64,7 @@
const store = useStore()
const router = useRouter()
const select = ref('浏览量')
- const selList = ref(['浏览量', '申购量', '收藏量'])
+ const selList = ref(['浏览量', '申请量', '收藏量'])
const list = ref([])
const paramsGetResources = {
@@ -83,7 +83,7 @@
case '浏览量':
paramsGetResources.orderField = 'visits'
break
- case '申购量':
+ case '申请量':
paramsGetResources.orderField = 'applyCount'
break
case '收藏量':
@@ -153,195 +153,195 @@
}