BUG修改
This commit is contained in:
parent
b48c2972ce
commit
0ad5646167
|
@ -137,7 +137,7 @@
|
|||
<div v-if="selectCardsname !== '数据资源'">
|
||||
浏览量:{{ item.visits || 0 }}次
|
||||
</div>
|
||||
<div>申购量:{{ item.applyCount || 0 }}次</div>
|
||||
<div>申请量:{{ item.applyCount || 0 }}次</div>
|
||||
<div v-if="selectCardsname === '数据资源'">
|
||||
数据量:{{ item.sjlCount || 0 }}
|
||||
</div>
|
||||
|
@ -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') {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
>
|
||||
<span
|
||||
class="img"
|
||||
:class="sel == '浏览量' ? 'fwl' : sel == '申购量' ? 'sgl' : 'scl'"
|
||||
:class="sel == '浏览量' ? 'fwl' : sel == '申请量' ? 'sgl' : 'scl'"
|
||||
></span>
|
||||
<span class="text">{{ sel }}</span>
|
||||
</div>
|
||||
|
@ -35,7 +35,7 @@
|
|||
<div class="fw" v-if="select == '浏览量'">
|
||||
{{ select }}:{{ item.visits }}
|
||||
</div>
|
||||
<div class="fw" v-if="select == '申购量'">
|
||||
<div class="fw" v-if="select == '申请量'">
|
||||
{{ select }}:{{ item.applyCount }}
|
||||
</div>
|
||||
<div class="fw" v-if="select == '收藏量'">
|
||||
|
@ -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,7 +153,7 @@
|
|||
}
|
||||
</script>
|
||||
<style lang="less" scoped>
|
||||
.popular-ability {
|
||||
.popular-ability {
|
||||
height: 6.8rem;
|
||||
background: url('~@/assets/newHome/popular-bg.png') no-repeat;
|
||||
background-size: 100%;
|
||||
|
@ -343,5 +343,5 @@
|
|||
background: rgba(0, 88, 225, 0.1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue