Merge branch 'hi-ucs-dev' of http://15.2.21.221:3000/wuhongjian/hi-ucs into hi-ucs-dev
This commit is contained in:
commit
6f7d059eca
|
@ -28,108 +28,108 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import contentTitle from "./content-title";
|
import contentTitle from './content-title'
|
||||||
import * as Apis from '../api';
|
import * as Apis from '../api'
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
contentTitle
|
contentTitle
|
||||||
},
|
},
|
||||||
data() {
|
data () {
|
||||||
return {
|
return {
|
||||||
title: { dynamic: "部门发布动态", recommend: "部门推荐能力" },
|
title: { dynamic: '部门发布动态', recommend: '部门推荐能力' },
|
||||||
list: [],
|
list: [],
|
||||||
columns: [
|
columns: [
|
||||||
{
|
{
|
||||||
title: "名称",
|
title: '名称',
|
||||||
key: "name",
|
key: 'name',
|
||||||
dataIndex: "name",
|
dataIndex: 'name',
|
||||||
width: 250
|
width: 250
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "类型",
|
title: '类型',
|
||||||
key: "type",
|
key: 'type',
|
||||||
dataIndex: "type",
|
dataIndex: 'type',
|
||||||
width: 76
|
width: 76
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "单位",
|
title: '单位',
|
||||||
key: "deptContacts",
|
key: 'deptContacts',
|
||||||
dataIndex: "deptContacts",
|
dataIndex: 'deptContacts',
|
||||||
width: 144
|
width: 144
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "时间",
|
title: '时间',
|
||||||
key: "createDate",
|
key: 'createDate',
|
||||||
dataIndex: "createDate",
|
dataIndex: 'createDate',
|
||||||
width: 153
|
width: 153
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "当前申请数",
|
title: '当前申请数',
|
||||||
key: "applyCount",
|
key: 'applyCount',
|
||||||
dataIndex: "applyCount",
|
dataIndex: 'applyCount',
|
||||||
width: 145
|
width: 145
|
||||||
},
|
}
|
||||||
],
|
],
|
||||||
tableData: [],
|
tableData: [],
|
||||||
maxSize: { y: 195 },
|
maxSize: { y: 195 },
|
||||||
loadingDynamic: false,
|
loadingDynamic: false,
|
||||||
loadingTable: false,
|
loadingTable: false
|
||||||
};
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted () {
|
||||||
this.getResourceByDept();
|
this.getResourceByDept()
|
||||||
this.getApplyByDept()
|
this.getApplyByDept()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 发布动态
|
// 发布动态
|
||||||
getResourceByDept() {
|
getResourceByDept () {
|
||||||
let data = {
|
const data = {
|
||||||
limit: 5,
|
limit: 5,
|
||||||
page: 1
|
page: 1
|
||||||
};
|
}
|
||||||
this.loadingDynamic = true;
|
this.loadingDynamic = true
|
||||||
Apis.getResourceByDept(
|
Apis.getResourceByDept(
|
||||||
data,
|
data,
|
||||||
res => {
|
res => {
|
||||||
this.loadingDynamic = false;
|
this.loadingDynamic = false
|
||||||
if (res.data.code !== 0) {
|
if (res.data.code !== 0) {
|
||||||
return this.$message.error(res.data.msg)
|
return this.$message.error(res.data.msg)
|
||||||
}
|
}
|
||||||
console.log('res.data----发布动态-------->', res.data);
|
console.log('res.data----发布动态-------->', res.data)
|
||||||
this.list = res.data.data.list || []
|
this.list = res.data.data.list || []
|
||||||
this.list.push(this.list[0])
|
// this.list.push({})
|
||||||
this.list.push(this.list[0])
|
// this.list.push({})
|
||||||
},
|
},
|
||||||
err => {
|
err => {
|
||||||
this.loadingDynamic = false;
|
this.loadingDynamic = false
|
||||||
this.$message.error(err)
|
this.$message.error(err)
|
||||||
console.log('err-----发布动态------->', err);
|
console.log('err-----发布动态------->', err)
|
||||||
}
|
}
|
||||||
);
|
)
|
||||||
},
|
},
|
||||||
// 部门推荐能力
|
// 部门推荐能力
|
||||||
getApplyByDept() {
|
getApplyByDept () {
|
||||||
let data = {
|
const data = {
|
||||||
limit: 5,
|
limit: 5,
|
||||||
page: 1
|
page: 1
|
||||||
};
|
}
|
||||||
this.loadingTable = true;
|
this.loadingTable = true
|
||||||
Apis.getApplyByDept(
|
Apis.getApplyByDept(
|
||||||
data,
|
data,
|
||||||
res => {
|
res => {
|
||||||
this.loadingTable = false;
|
this.loadingTable = false
|
||||||
if (res.data.code !== 0) {
|
if (res.data.code !== 0) {
|
||||||
return this.$message.error(res.data.msg)
|
return this.$message.error(res.data.msg)
|
||||||
}
|
}
|
||||||
console.log('res.data------部门推荐能力------>', res.data);
|
console.log('res.data------部门推荐能力------>', res.data)
|
||||||
this.tableData = res.data.data.list || [];
|
this.tableData = res.data.data.list || []
|
||||||
},
|
},
|
||||||
err => {
|
err => {
|
||||||
this.loadingTable = false;
|
this.loadingTable = false
|
||||||
this.$message.error(err)
|
this.$message.error(err)
|
||||||
console.log("err", err);
|
console.log('err', err)
|
||||||
}
|
}
|
||||||
);
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -142,7 +142,6 @@ export default {
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.bottom-view {
|
.bottom-view {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 335px;
|
height: 335px;
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-row-between row-name" v-for="(data, i) in listInfo" :key="i">
|
<div class="flex-row-between row-name" v-for="(data, i) in listInfo" :key="i">
|
||||||
<div class="left">
|
<div class="left">
|
||||||
<div class="row-index">{{ i + 3 }}</div>
|
<div class="row-index">{{ i + 4 }}</div>
|
||||||
<el-tooltip effect="dark" :content="data.name" placement="top">
|
<el-tooltip effect="dark" :content="data.name" placement="top">
|
||||||
<div class="name-text ellipsis">{{ data.name || '--' }}</div>
|
<div class="name-text ellipsis">{{ data.name || '--' }}</div>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
|
@ -41,67 +41,66 @@
|
||||||
import * as Apis from '../api.js'
|
import * as Apis from '../api.js'
|
||||||
import contentTitle from './content-title.vue'
|
import contentTitle from './content-title.vue'
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data () {
|
||||||
return {
|
return {
|
||||||
listInfo: [],
|
listInfo: [],
|
||||||
colorObj: {
|
colorObj: {
|
||||||
1: '#4658710',
|
1: '#4658710',
|
||||||
2: '#734204',
|
2: '#734204',
|
||||||
3: '#805932',
|
3: '#805932'
|
||||||
},
|
},
|
||||||
no1Obj: {
|
no1Obj: {
|
||||||
name: '',
|
name: '',
|
||||||
count: '',
|
count: ''
|
||||||
},
|
},
|
||||||
no2Obj: {
|
no2Obj: {
|
||||||
name: '',
|
name: '',
|
||||||
count: '',
|
count: ''
|
||||||
},
|
},
|
||||||
no3Obj: {
|
no3Obj: {
|
||||||
name: '',
|
name: '',
|
||||||
count: '',
|
count: ''
|
||||||
},
|
},
|
||||||
noData: false,
|
noData: false,
|
||||||
loading: true,
|
loading: true
|
||||||
};
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted () {
|
||||||
this.getData();
|
this.getData()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 频率
|
// 频率
|
||||||
getData() {
|
getData () {
|
||||||
let data = {
|
const data = {
|
||||||
limit: 5,
|
limit: 5,
|
||||||
page: 1,
|
page: 1
|
||||||
};
|
}
|
||||||
this.loading = true
|
this.loading = true
|
||||||
Apis.getFrequence(data, res => {
|
Apis.getFrequence(data, res => {
|
||||||
this.loading = false;
|
this.loading = false
|
||||||
if (res.data.code !== 0) {
|
if (res.data.code !== 0) {
|
||||||
return this.$message.error(res.data.msg);
|
return this.$message.error(res.data.msg)
|
||||||
}
|
}
|
||||||
console.log("res----频率-------->", res.data);
|
console.log('res----频率-------->', res.data)
|
||||||
let _arr = res.data.data.records || [];
|
const _arr = res.data.data.records || []
|
||||||
if (_arr.length == 0) {
|
if (_arr.length == 0) {
|
||||||
this.noData = true
|
this.noData = true
|
||||||
return;
|
return
|
||||||
}
|
}
|
||||||
for (let i = 0; i < 3; i++) {
|
for (let i = 0; i < 3; i++) {
|
||||||
let k = i + 1;
|
const k = i + 1
|
||||||
this[`no${k}Obj`].name = _arr[i].name
|
this[`no${k}Obj`].name = _arr[i].name
|
||||||
this[`no${k}Obj`].count = _arr[i].count
|
this[`no${k}Obj`].count = _arr[i].count
|
||||||
}
|
}
|
||||||
this.listInfo = []
|
this.listInfo = []
|
||||||
this.listInfo.push(_arr[3] || {})
|
this.listInfo.push(_arr[3] || {})
|
||||||
this.listInfo.push(_arr[4] || {})
|
this.listInfo.push(_arr[4] || {})
|
||||||
|
|
||||||
}, err => {
|
}, err => {
|
||||||
this.loading = false;
|
this.loading = false
|
||||||
this.$message.error(err);
|
this.$message.error(err)
|
||||||
});
|
})
|
||||||
},
|
},
|
||||||
formatCount(count) {
|
formatCount (count) {
|
||||||
return count || count === 0 ? count : '--'
|
return count || count === 0 ? count : '--'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -168,7 +167,6 @@ export default {
|
||||||
background-image: url("~@/assets/img/workBench/NO2.png");
|
background-image: url("~@/assets/img/workBench/NO2.png");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.no3 {
|
.no3 {
|
||||||
width: 170px;
|
width: 170px;
|
||||||
height: 120px;
|
height: 120px;
|
||||||
|
@ -206,11 +204,9 @@ export default {
|
||||||
width: 430px;
|
width: 430px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.num-text {
|
.num-text {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #2b2b2b;
|
color: #2b2b2b;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.no-data {
|
.no-data {
|
||||||
|
|
|
@ -1,13 +1,22 @@
|
||||||
/*
|
/*
|
||||||
* @Author: hisense.wuhongjian
|
* @Author: hisense.wuhongjian
|
||||||
* @Date: 2020-07-07 16:03:23
|
* @Date: 2020-07-07 16:03:23
|
||||||
|
<<<<<<< HEAD
|
||||||
* @LastEditors: hisense.wuhongjian
|
* @LastEditors: hisense.wuhongjian
|
||||||
* @LastEditTime: 2022-07-07 17:30:10
|
* @LastEditTime: 2022-07-07 17:30:10
|
||||||
|
=======
|
||||||
|
* @LastEditors: hisense.liangjunhua
|
||||||
|
* @LastEditTime: 2022-07-07 17:41:25
|
||||||
|
>>>>>>> 420a31531fdd60d9a8007e3328d071690c7688f1
|
||||||
* @Description: 数据资源参数配置
|
* @Description: 数据资源参数配置
|
||||||
*/
|
*/
|
||||||
const newLocation = 'qingdao'
|
const newLocation = 'qingdao'
|
||||||
// const newLocation = 'baotou'
|
// const newLocation = 'baotou'
|
||||||
|
<<<<<<< HEAD
|
||||||
// const newLocation = 'xihaian'
|
// const newLocation = 'xihaian'
|
||||||
|
=======
|
||||||
|
// const newLocation = 'xihaian'
|
||||||
|
>>>>>>> 420a31531fdd60d9a8007e3328d071690c7688f1
|
||||||
|
|
||||||
// 数据资源数据
|
// 数据资源数据
|
||||||
const whoShow = {}
|
const whoShow = {}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.wuhongjian
|
* @Author: hisense.wuhongjian
|
||||||
* @Date: 2022-03-29 17:48:03
|
* @Date: 2022-03-29 17:48:03
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-07-05 15:04:47
|
* @LastEditTime: 2022-07-07 09:22:56
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
*/
|
*/
|
||||||
import { createApp } from 'vue'
|
import { createApp } from 'vue'
|
||||||
|
@ -51,9 +51,3 @@ router.beforeEach((to, from, next) => {
|
||||||
document.body.scrollTop = 0
|
document.body.scrollTop = 0
|
||||||
next()
|
next()
|
||||||
})
|
})
|
||||||
// 解决bug:页面/路由跳转后,滚动条消失,页面无法滚动
|
|
||||||
router.afterEach((to, from, next) => {
|
|
||||||
document
|
|
||||||
.querySelector('body')
|
|
||||||
.setAttribute('style', 'overflow: auto !important;')
|
|
||||||
})
|
|
||||||
|
|
|
@ -31,7 +31,9 @@
|
||||||
v-for="(item, index) in bubbleList"
|
v-for="(item, index) in bubbleList"
|
||||||
:key="item.id"
|
:key="item.id"
|
||||||
class="bubble-item"
|
class="bubble-item"
|
||||||
@click.stop.prevent="index == 0 ? showDepartmentList() : ''"
|
@click.stop.prevent="
|
||||||
|
index == 0 ? showDepartmentList() : goToDetails(item)
|
||||||
|
"
|
||||||
>
|
>
|
||||||
<a-tooltip>
|
<a-tooltip>
|
||||||
<template #title>{{ item.name }}</template>
|
<template #title>{{ item.name }}</template>
|
||||||
|
@ -58,7 +60,7 @@
|
||||||
</span>
|
</span>
|
||||||
</nav>
|
</nav>
|
||||||
</article>
|
</article>
|
||||||
<p>查看更多></p>
|
<!-- <p>查看更多></p> -->
|
||||||
</div>
|
</div>
|
||||||
<div class="itemList" v-else-if="navSelect.indexOf('应用领域') > 0">
|
<div class="itemList" v-else-if="navSelect.indexOf('应用领域') > 0">
|
||||||
<div class="item" v-for="item in dataList" :key="item.deptId">
|
<div class="item" v-for="item in dataList" :key="item.deptId">
|
||||||
|
@ -136,6 +138,8 @@
|
||||||
provideDeptTopN,
|
provideDeptTopN,
|
||||||
applyDeptTopN,
|
applyDeptTopN,
|
||||||
} from '@/api/abilityStatistics'
|
} from '@/api/abilityStatistics'
|
||||||
|
// import { useRouter } from 'vue-router'
|
||||||
|
// const router = useRouter()
|
||||||
// 左侧导航
|
// 左侧导航
|
||||||
const navList = ref([
|
const navList = ref([
|
||||||
'能力共享方-应用领域',
|
'能力共享方-应用领域',
|
||||||
|
@ -149,6 +153,15 @@
|
||||||
])
|
])
|
||||||
const navSelect = ref('能力共享方-应用领域')
|
const navSelect = ref('能力共享方-应用领域')
|
||||||
const departmentListFlag = ref(false)
|
const departmentListFlag = ref(false)
|
||||||
|
const goToDetails = (item) => {
|
||||||
|
// console.log('点击气泡===============>', item)
|
||||||
|
// router.push({
|
||||||
|
// path: '/details',
|
||||||
|
// query: {
|
||||||
|
// id: item.id,
|
||||||
|
// },
|
||||||
|
// })
|
||||||
|
}
|
||||||
// 点击导航
|
// 点击导航
|
||||||
const selectNav = (name) => {
|
const selectNav = (name) => {
|
||||||
navSelect.value = name
|
navSelect.value = name
|
||||||
|
|
|
@ -147,6 +147,10 @@
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
let arr = ['组件服务', '应用资源', '基础设施', '数据资源', '知识库']
|
||||||
|
dataList.value.dataList.sort((a, b) => {
|
||||||
|
return arr.indexOf(a.type) - arr.indexOf(b.type)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
let datas = ref([])
|
let datas = ref([])
|
||||||
let laiyuanDataList = ref([])
|
let laiyuanDataList = ref([])
|
||||||
|
|
|
@ -271,8 +271,8 @@
|
||||||
},
|
},
|
||||||
grid: {
|
grid: {
|
||||||
top: '10%',
|
top: '10%',
|
||||||
left: '0%',
|
left: '3%',
|
||||||
right: '5%',
|
right: '10%',
|
||||||
bottom: '0%',
|
bottom: '0%',
|
||||||
containLabel: true,
|
containLabel: true,
|
||||||
},
|
},
|
||||||
|
|
|
@ -65,6 +65,7 @@
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
||||||
|
import { message } from 'ant-design-vue'
|
||||||
import { pinyin } from 'pinyin-pro'
|
import { pinyin } from 'pinyin-pro'
|
||||||
import { ref, defineProps, watch } from 'vue'
|
import { ref, defineProps, watch } from 'vue'
|
||||||
let dataFrom = ref({
|
let dataFrom = ref({
|
||||||
|
@ -184,12 +185,19 @@
|
||||||
let obj = props.dataList.infoList.filter(
|
let obj = props.dataList.infoList.filter(
|
||||||
(item) => item.attrType === '技术文档'
|
(item) => item.attrType === '技术文档'
|
||||||
)[0]
|
)[0]
|
||||||
console.log('dataFrom.value.link', obj.attrValue)
|
// console.log('dataFrom.value.link', obj.attrValue)
|
||||||
|
if (obj) {
|
||||||
window.open(
|
window.open(
|
||||||
window.SITE_CONFIG.previewUrl +
|
window.SITE_CONFIG.previewUrl +
|
||||||
'hisense_office/onlinePreview?url=' +
|
'hisense_office/onlinePreview?url=' +
|
||||||
btoa(encodeURI(obj.attrValue))
|
btoa(encodeURI(obj.attrValue))
|
||||||
)
|
)
|
||||||
|
} else {
|
||||||
|
message.config({
|
||||||
|
top: '100px', // 距离顶部的位置
|
||||||
|
})
|
||||||
|
message.error('暂无上传技术文档')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,10 @@
|
||||||
<!-- 使用方式 -->
|
<!-- 使用方式 -->
|
||||||
<div class="usage-mode" v-if="flag">
|
<div class="usage-mode" v-if="flag">
|
||||||
<div class="tltle">
|
<div class="tltle">
|
||||||
<DetalsTitle :title="dataFrom.title" :type="dataFrom.englishTitle"></DetalsTitle>
|
<DetalsTitle
|
||||||
|
:title="dataFrom.title"
|
||||||
|
:type="dataFrom.englishTitle"
|
||||||
|
></DetalsTitle>
|
||||||
</div>
|
</div>
|
||||||
<div class="content" v-for="item in dataFrom.content" :key="item.title">
|
<div class="content" v-for="item in dataFrom.content" :key="item.title">
|
||||||
<div class="content-left">
|
<div class="content-left">
|
||||||
|
@ -84,10 +87,11 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
||||||
import { pinyin } from 'pinyin-pro'
|
import { pinyin } from 'pinyin-pro'
|
||||||
import { ref, defineProps, watch } from 'vue'
|
import { ref, defineProps, watch } from 'vue'
|
||||||
let dataFrom = ref({
|
import { message } from 'ant-design-vue'
|
||||||
|
let dataFrom = ref({
|
||||||
title: '使用方式',
|
title: '使用方式',
|
||||||
englishTitle: 'USAGE',
|
englishTitle: 'USAGE',
|
||||||
content: [
|
content: [
|
||||||
|
@ -113,13 +117,13 @@ let dataFrom = ref({
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
})
|
})
|
||||||
//数据初始化
|
//数据初始化
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
dataList: { type: Object, default: null },
|
dataList: { type: Object, default: null },
|
||||||
})
|
})
|
||||||
const flag = ref(true)
|
const flag = ref(true)
|
||||||
if (props.dataList.infoList) {
|
if (props.dataList.infoList) {
|
||||||
let obj = props.dataList.infoList.filter(
|
let obj = props.dataList.infoList.filter(
|
||||||
(item) =>
|
(item) =>
|
||||||
item.attrType === '技术文档' ||
|
item.attrType === '技术文档' ||
|
||||||
|
@ -151,8 +155,8 @@ if (props.dataList.infoList) {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
watch(
|
watch(
|
||||||
() => props.dataList,
|
() => props.dataList,
|
||||||
(val) => {
|
(val) => {
|
||||||
if (val) {
|
if (val) {
|
||||||
|
@ -189,8 +193,8 @@ watch(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
function technical() {
|
function technical() {
|
||||||
// 拼接路径
|
// 拼接路径
|
||||||
// const type = pinyin(props.dataList.type, {
|
// const type = pinyin(props.dataList.type, {
|
||||||
// pattern: 'initial',
|
// pattern: 'initial',
|
||||||
|
@ -202,14 +206,20 @@ function technical() {
|
||||||
let obj = props.dataList.infoList.filter(
|
let obj = props.dataList.infoList.filter(
|
||||||
(item) => item.attrType === '技术文档'
|
(item) => item.attrType === '技术文档'
|
||||||
)[0]
|
)[0]
|
||||||
console.log('dataFrom.value.link', obj.attrValue)
|
if (obj) {
|
||||||
window.open(
|
window.open(
|
||||||
window.SITE_CONFIG.previewUrl +
|
window.SITE_CONFIG.previewUrl +
|
||||||
'hisense_office/onlinePreview?url=' +
|
'hisense_office/onlinePreview?url=' +
|
||||||
btoa(encodeURI(obj.attrValue))
|
btoa(encodeURI(obj.attrValue))
|
||||||
)
|
)
|
||||||
}
|
} else {
|
||||||
function technicalNew() {
|
message.config({
|
||||||
|
top: '100px', // 距离顶部的位置
|
||||||
|
})
|
||||||
|
message.error('暂无上传技术文档')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function technicalNew() {
|
||||||
// 拼接路径
|
// 拼接路径
|
||||||
// const type = pinyin(props.dataList.type, {
|
// const type = pinyin(props.dataList.type, {
|
||||||
// pattern: 'initial',
|
// pattern: 'initial',
|
||||||
|
@ -221,16 +231,23 @@ function technicalNew() {
|
||||||
(item) => item.attrType === '使用手册'
|
(item) => item.attrType === '使用手册'
|
||||||
)[0]
|
)[0]
|
||||||
console.log('dataFrom.value.link', obj.attrValue)
|
console.log('dataFrom.value.link', obj.attrValue)
|
||||||
|
if (obj) {
|
||||||
window.open(
|
window.open(
|
||||||
window.SITE_CONFIG.previewUrl +
|
window.SITE_CONFIG.previewUrl +
|
||||||
'hisense_office/onlinePreview?url=' +
|
'hisense_office/onlinePreview?url=' +
|
||||||
btoa(encodeURI(obj.attrValue))
|
btoa(encodeURI(obj.attrValue))
|
||||||
)
|
)
|
||||||
}
|
} else {
|
||||||
|
message.config({
|
||||||
|
top: '100px', // 距离顶部的位置
|
||||||
|
})
|
||||||
|
message.error('暂无上传使用手册')
|
||||||
|
}
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.usage-mode {
|
.usage-mode {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -243,7 +260,8 @@ function technicalNew() {
|
||||||
.content-left {
|
.content-left {
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
width: 6.2rem;
|
width: 6.2rem;
|
||||||
background: url('~@/assets/detailsAll/business/business_usage_mode_bg.png') no-repeat;
|
background: url('~@/assets/detailsAll/business/business_usage_mode_bg.png')
|
||||||
|
no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
border-radius: 0.1rem;
|
border-radius: 0.1rem;
|
||||||
|
@ -309,7 +327,8 @@ function technicalNew() {
|
||||||
.content-right {
|
.content-right {
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
width: 6.2rem;
|
width: 6.2rem;
|
||||||
background: url('~@/assets/detailsAll/business/business_usage_mode_bg.png') no-repeat;
|
background: url('~@/assets/detailsAll/business/business_usage_mode_bg.png')
|
||||||
|
no-repeat;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: 100% 100%;
|
background-size: 100% 100%;
|
||||||
border-radius: 0.1rem;
|
border-radius: 0.1rem;
|
||||||
|
@ -360,5 +379,5 @@ function technicalNew() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -8,7 +8,12 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="business-navigation" v-if="navList.length > 0">
|
<div class="business-navigation" v-if="navList.length > 0">
|
||||||
<template v-for="nav in navList" :key="nav.key">
|
<template v-for="nav in navList" :key="nav.key">
|
||||||
<div class="nav" :class="{ select: nav.key == select }" v-if="nav.show" @click="selectNav(nav.key)">
|
<div
|
||||||
|
class="nav"
|
||||||
|
:class="{ select: nav.key == select }"
|
||||||
|
v-if="nav.show"
|
||||||
|
@click="selectNav(nav.key)"
|
||||||
|
>
|
||||||
{{ nav.name }}
|
{{ nav.name }}
|
||||||
<span class="line"></span>
|
<span class="line"></span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -16,14 +21,14 @@
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, defineProps, watch, getCurrentInstance } from 'vue'
|
import { ref, defineProps, watch, getCurrentInstance } from 'vue'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
import mybus from '@/myplugins/mybus'
|
import mybus from '@/myplugins/mybus'
|
||||||
import { queryPartAppByKeyId2 } from '@/api/home'
|
import { queryPartAppByKeyId2 } from '@/api/home'
|
||||||
// 获取当前路由地址
|
// 获取当前路由地址
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const keyId = router.currentRoute.value.query.id
|
const keyId = router.currentRoute.value.query.id
|
||||||
const navList = ref([
|
const navList = ref([
|
||||||
{
|
{
|
||||||
name: '图层展示',
|
name: '图层展示',
|
||||||
key: 'service-presentation',
|
key: 'service-presentation',
|
||||||
|
@ -52,15 +57,15 @@ const navList = ref([
|
||||||
name: '常见问题',
|
name: '常见问题',
|
||||||
key: 'service-common-problem',
|
key: 'service-common-problem',
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
selectNow: { type: String, default: '' },
|
selectNow: { type: String, default: '' },
|
||||||
dataList: { type: Object, default: null },
|
dataList: { type: Object, default: null },
|
||||||
associatedComponents: { type: Array, default: null },
|
associatedComponents: { type: Array, default: null },
|
||||||
})
|
})
|
||||||
const list = ref([])
|
const list = ref([])
|
||||||
// 根据能力id查询是否存在关联应用
|
// 根据能力id查询是否存在关联应用
|
||||||
if (keyId) {
|
if (keyId) {
|
||||||
queryPartAppByKeyId2({ keyId: keyId }).then((res) => {
|
queryPartAppByKeyId2({ keyId: keyId }).then((res) => {
|
||||||
console.log('ressssssss', res)
|
console.log('ressssssss', res)
|
||||||
if (res.data.data.length > 0) {
|
if (res.data.data.length > 0) {
|
||||||
|
@ -73,14 +78,14 @@ if (keyId) {
|
||||||
list.value.unshift('关联应用')
|
list.value.unshift('关联应用')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
const select = ref('layer-service-associated-ability')
|
const select = ref('layer-service-associated-ability')
|
||||||
const selectNav = (key) => {
|
const selectNav = (key) => {
|
||||||
select.value = key
|
select.value = key
|
||||||
console.log(key, select.value)
|
console.log(key, select.value)
|
||||||
mybus.emit('flyToView', select.value)
|
mybus.emit('flyToView', select.value)
|
||||||
}
|
}
|
||||||
if (props.dataList.infoList) {
|
if (props.dataList.infoList) {
|
||||||
list.value = []
|
list.value = []
|
||||||
let arr = [
|
let arr = [
|
||||||
'图层缩略图',
|
'图层缩略图',
|
||||||
|
@ -144,14 +149,14 @@ if (props.dataList.infoList) {
|
||||||
(item) => item.name === list.value[0]
|
(item) => item.name === list.value[0]
|
||||||
)[0].key
|
)[0].key
|
||||||
console.log('11111111111111111111111111', list.value, navList.value)
|
console.log('11111111111111111111111111', list.value, navList.value)
|
||||||
}
|
}
|
||||||
watch(
|
watch(
|
||||||
() => props.selectNow,
|
() => props.selectNow,
|
||||||
(newValue) => {
|
(newValue) => {
|
||||||
select.value = newValue
|
select.value = newValue
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
watch(
|
watch(
|
||||||
() => props.dataList,
|
() => props.dataList,
|
||||||
(val) => {
|
(val) => {
|
||||||
if (val) {
|
if (val) {
|
||||||
|
@ -215,18 +220,17 @@ watch(
|
||||||
item.show = true
|
item.show = true
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
if (list.value.length > 0) {
|
if (navList.value.filter((item) => item.name === list.value[0])[0]) {
|
||||||
select.value = navList.value.filter(
|
select.value = navList.value.filter(
|
||||||
(item) => item.name === list.value[0]
|
(item) => item.name === list.value[0]
|
||||||
)[0].key
|
)[0].key
|
||||||
}
|
}
|
||||||
console.log('11111111111111111111111111', list.value, navList.value)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.business-navigation {
|
.business-navigation {
|
||||||
width: 19.12rem;
|
width: 19.12rem;
|
||||||
height: 0.84rem;
|
height: 0.84rem;
|
||||||
line-height: 0.8rem;
|
line-height: 0.8rem;
|
||||||
|
@ -259,5 +263,5 @@ watch(
|
||||||
background: #526aff;
|
background: #526aff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -90,6 +90,7 @@
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
import DetalsTitle from '@/views/detailsAll/components/DetalsTitle'
|
||||||
|
import { message } from 'ant-design-vue'
|
||||||
import { pinyin } from 'pinyin-pro'
|
import { pinyin } from 'pinyin-pro'
|
||||||
import { ref, defineProps, watch } from 'vue'
|
import { ref, defineProps, watch } from 'vue'
|
||||||
let dataFrom = ref({
|
let dataFrom = ref({
|
||||||
|
@ -213,12 +214,18 @@
|
||||||
let obj = props.dataList.infoList.filter(
|
let obj = props.dataList.infoList.filter(
|
||||||
(item) => item.attrType === '技术文档'
|
(item) => item.attrType === '技术文档'
|
||||||
)[0]
|
)[0]
|
||||||
console.log('dataFrom.value.link', obj.attrValue)
|
if (obj) {
|
||||||
window.open(
|
window.open(
|
||||||
window.SITE_CONFIG.previewUrl +
|
window.SITE_CONFIG.previewUrl +
|
||||||
'hisense_office/onlinePreview?url=' +
|
'hisense_office/onlinePreview?url=' +
|
||||||
btoa(encodeURI(obj.attrValue))
|
btoa(encodeURI(obj.attrValue))
|
||||||
)
|
)
|
||||||
|
} else {
|
||||||
|
message.config({
|
||||||
|
top: '100px', // 距离顶部的位置
|
||||||
|
})
|
||||||
|
message.error('暂无上传技术文档')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
function technicalNew() {
|
function technicalNew() {
|
||||||
// 拼接路径
|
// 拼接路径
|
||||||
|
@ -231,12 +238,18 @@
|
||||||
let obj = props.dataList.infoList.filter(
|
let obj = props.dataList.infoList.filter(
|
||||||
(item) => item.attrType === '使用手册'
|
(item) => item.attrType === '使用手册'
|
||||||
)[0]
|
)[0]
|
||||||
console.log('dataFrom.value.link', obj.attrValue)
|
if (obj) {
|
||||||
window.open(
|
window.open(
|
||||||
window.SITE_CONFIG.previewUrl +
|
window.SITE_CONFIG.previewUrl +
|
||||||
'hisense_office/onlinePreview?url=' +
|
'hisense_office/onlinePreview?url=' +
|
||||||
btoa(encodeURI(obj.attrValue))
|
btoa(encodeURI(obj.attrValue))
|
||||||
)
|
)
|
||||||
|
} else {
|
||||||
|
message.config({
|
||||||
|
top: '100px', // 距离顶部的位置
|
||||||
|
})
|
||||||
|
message.error('暂上传使用手册')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -96,7 +96,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-content">
|
<div class="top-content" v-if="Cardsname == '组件服务'">
|
||||||
<span class="top-content-title">共享条件</span>
|
<span class="top-content-title">共享条件</span>
|
||||||
<div class="leixingsumfather">
|
<div class="leixingsumfather">
|
||||||
<div class="leixingsum">
|
<div class="leixingsum">
|
||||||
|
@ -106,6 +106,8 @@
|
||||||
>
|
>
|
||||||
申请
|
申请
|
||||||
</a-checkable-tag>
|
</a-checkable-tag>
|
||||||
|
</div>
|
||||||
|
<div class="leixingsum">
|
||||||
<a-checkable-tag
|
<a-checkable-tag
|
||||||
:checked="tagFlag == '免批申请'"
|
:checked="tagFlag == '免批申请'"
|
||||||
@change="() => chagneTag('免批申请')"
|
@change="() => chagneTag('免批申请')"
|
||||||
|
@ -312,7 +314,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-content">
|
<div class="top-content" v-if="Cardsname == '组件服务'">
|
||||||
<span class="top-content-title">共享条件</span>
|
<span class="top-content-title">共享条件</span>
|
||||||
<div class="leixingsumfather">
|
<div class="leixingsumfather">
|
||||||
<div class="leixingsum">
|
<div class="leixingsum">
|
||||||
|
@ -322,6 +324,8 @@
|
||||||
>
|
>
|
||||||
申请
|
申请
|
||||||
</a-checkable-tag>
|
</a-checkable-tag>
|
||||||
|
</div>
|
||||||
|
<div class="leixingsum">
|
||||||
<a-checkable-tag
|
<a-checkable-tag
|
||||||
:checked="tagFlag == '免批申请'"
|
:checked="tagFlag == '免批申请'"
|
||||||
@change="() => chagneTag('免批申请')"
|
@change="() => chagneTag('免批申请')"
|
||||||
|
@ -508,7 +512,7 @@
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="top-content">
|
<div class="top-content" v-if="Cardsname == '组件服务'">
|
||||||
<span class="top-content-title">共享条件</span>
|
<span class="top-content-title">共享条件</span>
|
||||||
<div class="leixingsumfather">
|
<div class="leixingsumfather">
|
||||||
<div class="leixingsum">
|
<div class="leixingsum">
|
||||||
|
@ -518,6 +522,8 @@
|
||||||
>
|
>
|
||||||
申请
|
申请
|
||||||
</a-checkable-tag>
|
</a-checkable-tag>
|
||||||
|
</div>
|
||||||
|
<div class="leixingsum">
|
||||||
<a-checkable-tag
|
<a-checkable-tag
|
||||||
:checked="tagFlag == '免批申请'"
|
:checked="tagFlag == '免批申请'"
|
||||||
@change="() => chagneTag('免批申请')"
|
@change="() => chagneTag('免批申请')"
|
||||||
|
|
|
@ -267,21 +267,17 @@
|
||||||
if (mynoticeDom) {
|
if (mynoticeDom) {
|
||||||
mynoticeDom.addEventListener('mouseover', () => {
|
mynoticeDom.addEventListener('mouseover', () => {
|
||||||
mynoticeFlag.value = true
|
mynoticeFlag.value = true
|
||||||
// document.documentElement.style.overflowY = 'hidden'
|
|
||||||
})
|
})
|
||||||
mynoticeDom.addEventListener('mouseout', () => {
|
mynoticeDom.addEventListener('mouseout', () => {
|
||||||
mynoticeFlag.value = false
|
mynoticeFlag.value = false
|
||||||
document.documentElement.style.overflowY = 'scroll'
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
if (mynotice) {
|
if (mynotice) {
|
||||||
mynotice.addEventListener('mouseover', () => {
|
mynotice.addEventListener('mouseover', () => {
|
||||||
mynoticeFlag.value = true
|
mynoticeFlag.value = true
|
||||||
// document.documentElement.style.overflowY = 'hidden'
|
|
||||||
})
|
})
|
||||||
mynotice.addEventListener('mouseout', () => {
|
mynotice.addEventListener('mouseout', () => {
|
||||||
mynoticeFlag.value = false
|
mynoticeFlag.value = false
|
||||||
document.documentElement.style.overflowY = 'scroll'
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
mybus.on('getSgcNum', () => {
|
mybus.on('getSgcNum', () => {
|
||||||
|
|
|
@ -137,7 +137,7 @@
|
||||||
<div v-if="selectCardsname !== '数据资源'">
|
<div v-if="selectCardsname !== '数据资源'">
|
||||||
浏览量:{{ item.visits || 0 }}次
|
浏览量:{{ item.visits || 0 }}次
|
||||||
</div>
|
</div>
|
||||||
<div>申购量:{{ item.applyCount || 0 }}次</div>
|
<div>申请量:{{ item.applyCount || 0 }}次</div>
|
||||||
<div v-if="selectCardsname === '数据资源'">
|
<div v-if="selectCardsname === '数据资源'">
|
||||||
数据量:{{ item.sjlCount || 0 }}
|
数据量:{{ item.sjlCount || 0 }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -430,8 +430,7 @@
|
||||||
item.guid
|
item.guid
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
window.open(
|
window.open('http://10.134.135.24:30090/#/home')
|
||||||
'http://10.134.135.24:30090/#/home')
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (type === 'apply') {
|
if (type === 'apply') {
|
||||||
|
@ -620,7 +619,7 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style scoped lang="less">
|
<style scoped lang="less">
|
||||||
#search-result-list-container {
|
#search-result-list-container {
|
||||||
width: 1088px;
|
width: 1088px;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
background: #f3f5f9;
|
background: #f3f5f9;
|
||||||
|
@ -955,5 +954,5 @@
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -5,11 +5,17 @@
|
||||||
<div class="infrastructrue-tab">
|
<div class="infrastructrue-tab">
|
||||||
<div v-for="(item, index) in tabList" :key="index" class="tabBox">
|
<div v-for="(item, index) in tabList" :key="index" class="tabBox">
|
||||||
<b class="leftType">{{ item.title }}</b>
|
<b class="leftType">{{ item.title }}</b>
|
||||||
<button @click="nullClick" v-if="item.title == '视频标签'">清空</button>
|
<a-button @click="nullClick" v-if="item.title == '视频标签'">
|
||||||
|
清空
|
||||||
|
</a-button>
|
||||||
<span
|
<span
|
||||||
v-for="itemContent in item.content"
|
v-for="itemContent in item.content"
|
||||||
:key="itemContent"
|
:key="itemContent"
|
||||||
|
<<<<<<< HEAD
|
||||||
@click="tabClick(index, item.title)"
|
@click="tabClick(index, item.title)"
|
||||||
|
=======
|
||||||
|
@click="tabClick(index, itemContent, item)"
|
||||||
|
>>>>>>> 420a31531fdd60d9a8007e3328d071690c7688f1
|
||||||
:class="
|
:class="
|
||||||
clickList[index].content.indexOf(itemContent.labelName) != -1 ||
|
clickList[index].content.indexOf(itemContent.labelName) != -1 ||
|
||||||
clickList[index].content.indexOf(itemContent) != -1
|
clickList[index].content.indexOf(itemContent) != -1
|
||||||
|
@ -253,6 +259,7 @@
|
||||||
let tableHeight = ref('600')
|
let tableHeight = ref('600')
|
||||||
//tab切换点击事件
|
//tab切换点击事件
|
||||||
const tabClick = (indexFather, name) => {
|
const tabClick = (indexFather, name) => {
|
||||||
|
console.log(clickList.value, indexFather, name)
|
||||||
selectedRowKeys.value = []
|
selectedRowKeys.value = []
|
||||||
selectedList.value = []
|
selectedList.value = []
|
||||||
if (clickList.value[indexFather].content.indexOf(name) != -1) {
|
if (clickList.value[indexFather].content.indexOf(name) != -1) {
|
||||||
|
@ -538,6 +545,19 @@
|
||||||
}
|
}
|
||||||
.tabBox {
|
.tabBox {
|
||||||
margin-bottom: 0.16rem;
|
margin-bottom: 0.16rem;
|
||||||
|
:deep(.ant-btn:active) {
|
||||||
|
color: unset;
|
||||||
|
border-color: unset;
|
||||||
|
}
|
||||||
|
:deep(.ant-btn) {
|
||||||
|
margin-left: 10px;
|
||||||
|
border: 1px solid #666666;
|
||||||
|
color: #666666;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
:deep(.ant-btn:hover) {
|
||||||
|
color: #40a9ff;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.tabBox:last-of-type {
|
.tabBox:last-of-type {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="img"
|
class="img"
|
||||||
:class="sel == '浏览量' ? 'fwl' : sel == '申购量' ? 'sgl' : 'scl'"
|
:class="sel == '浏览量' ? 'fwl' : sel == '申请量' ? 'sgl' : 'scl'"
|
||||||
></span>
|
></span>
|
||||||
<span class="text">{{ sel }}</span>
|
<span class="text">{{ sel }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
<div class="fw" v-if="select == '浏览量'">
|
<div class="fw" v-if="select == '浏览量'">
|
||||||
{{ select }}:{{ item.visits }}
|
{{ select }}:{{ item.visits }}
|
||||||
</div>
|
</div>
|
||||||
<div class="fw" v-if="select == '申购量'">
|
<div class="fw" v-if="select == '申请量'">
|
||||||
{{ select }}:{{ item.applyCount }}
|
{{ select }}:{{ item.applyCount }}
|
||||||
</div>
|
</div>
|
||||||
<div class="fw" v-if="select == '收藏量'">
|
<div class="fw" v-if="select == '收藏量'">
|
||||||
|
@ -64,7 +64,7 @@
|
||||||
const store = useStore()
|
const store = useStore()
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const select = ref('浏览量')
|
const select = ref('浏览量')
|
||||||
const selList = ref(['浏览量', '申购量', '收藏量'])
|
const selList = ref(['浏览量', '申请量', '收藏量'])
|
||||||
const list = ref([])
|
const list = ref([])
|
||||||
|
|
||||||
const paramsGetResources = {
|
const paramsGetResources = {
|
||||||
|
@ -83,7 +83,7 @@
|
||||||
case '浏览量':
|
case '浏览量':
|
||||||
paramsGetResources.orderField = 'visits'
|
paramsGetResources.orderField = 'visits'
|
||||||
break
|
break
|
||||||
case '申购量':
|
case '申请量':
|
||||||
paramsGetResources.orderField = 'applyCount'
|
paramsGetResources.orderField = 'applyCount'
|
||||||
break
|
break
|
||||||
case '收藏量':
|
case '收藏量':
|
||||||
|
@ -153,7 +153,7 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
.popular-ability {
|
.popular-ability {
|
||||||
height: 6.8rem;
|
height: 6.8rem;
|
||||||
background: url('~@/assets/newHome/popular-bg.png') no-repeat;
|
background: url('~@/assets/newHome/popular-bg.png') no-repeat;
|
||||||
background-size: 100%;
|
background-size: 100%;
|
||||||
|
@ -343,5 +343,5 @@
|
||||||
background: rgba(0, 88, 225, 0.1);
|
background: rgba(0, 88, 225, 0.1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue