eslint
This commit is contained in:
parent
cf9d8c9ee3
commit
f958db6940
|
@ -49,4 +49,3 @@ export function assemblerBaseStatic() {
|
||||||
method: 'get',
|
method: 'get',
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
/*
|
/*
|
||||||
* @Author: hisense.wuhongjian
|
* @Author: hisense.wuhongjian
|
||||||
* @Date: 2022-04-20 17:16:35
|
* @Date: 2022-04-20 17:16:35
|
||||||
* @LastEditors: hisense.wuhongjian
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-05-26 22:40:46
|
* @LastEditTime: 2022-06-19 17:32:12
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
*/
|
*/
|
||||||
import request from '@/utils/request'
|
import request from '@/utils/request'
|
||||||
|
@ -58,17 +58,17 @@ export function count() {
|
||||||
export function getRecord(params) {
|
export function getRecord(params) {
|
||||||
return axios.get(
|
return axios.get(
|
||||||
'http://10.134.135.24:30090/api/share-portal/platform/catalogue/query?serviceName=' +
|
'http://10.134.135.24:30090/api/share-portal/platform/catalogue/query?serviceName=' +
|
||||||
params.serviceName +
|
params.serviceName +
|
||||||
'&orderField=' +
|
'&orderField=' +
|
||||||
params.orderField +
|
params.orderField +
|
||||||
'&orderType=' +
|
'&orderType=' +
|
||||||
params.orderType +
|
params.orderType +
|
||||||
'&pageNum=' +
|
'&pageNum=' +
|
||||||
params.pageNum +
|
params.pageNum +
|
||||||
'&pageSize=' +
|
'&pageSize=' +
|
||||||
params.pageSize +
|
params.pageSize +
|
||||||
'&serviceType=' +
|
'&serviceType=' +
|
||||||
params.serviceType,
|
params.serviceType,
|
||||||
config2
|
config2
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.liangjunhua
|
* @Author: hisense.liangjunhua
|
||||||
* @Date: 2022-06-19 10:15:33
|
* @Date: 2022-06-19 10:15:33
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-19 17:25:14
|
* @LastEditTime: 2022-06-19 17:30:02
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<template>
|
<template>
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="right" :key="showKey">
|
<div class="right" :key="showKey">
|
||||||
<div class="title">浏览趋势</div>
|
<div class="title_echarts">浏览趋势</div>
|
||||||
<div class="echarts-box" id="echarts-box"></div>
|
<div class="echarts-box" id="echarts-box"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -241,8 +241,15 @@
|
||||||
width: 6.53rem;
|
width: 6.53rem;
|
||||||
height: 3.54rem;
|
height: 3.54rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
.title {
|
.title_echarts {
|
||||||
font-size: 18px;
|
font-size: 0.18rem;
|
||||||
|
height: 0.21rem;
|
||||||
|
line-height: 0.18rem;
|
||||||
|
color: #ffffff;
|
||||||
|
background: url('~@/assets/capabilityCloud/Component_services_title_bg.png')
|
||||||
|
no-repeat;
|
||||||
|
background-size: 0.7rem 0.08rem;
|
||||||
|
background-position: bottom left;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0.2rem;
|
left: 0.2rem;
|
||||||
|
|
|
@ -25,8 +25,10 @@
|
||||||
</template>
|
</template>
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
console.log('footerDataList', footerDataList)
|
console.log('footerDataList', footerDataList)
|
||||||
let dataList = ref({})
|
let dataList = ref({})
|
||||||
|
// eslint-disable-next-line no-undef
|
||||||
dataList.value = footerDataList
|
dataList.value = footerDataList
|
||||||
</script>
|
</script>
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
|
|
Loading…
Reference in New Issue