BUG修改
This commit is contained in:
parent
cb19d42c9e
commit
9bf47e3223
|
@ -2,7 +2,7 @@
|
||||||
* @Author: hisense.wuhongjian
|
* @Author: hisense.wuhongjian
|
||||||
* @Date: 2022-03-29 16:45:25
|
* @Date: 2022-03-29 16:45:25
|
||||||
* @LastEditors: hisense.liangjunhua
|
* @LastEditors: hisense.liangjunhua
|
||||||
* @LastEditTime: 2022-06-30 18:01:54
|
* @LastEditTime: 2022-06-30 18:30:56
|
||||||
* @Description: 告诉大家这是什么
|
* @Description: 告诉大家这是什么
|
||||||
-->
|
-->
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
window.SITE_CONFIG['backUrl'] = 'http://15.2.21.238:9797';
|
window.SITE_CONFIG['backUrl'] = 'http://15.2.21.238:9797';
|
||||||
window.SITE_CONFIG['previewUrl'] = 'http://15.2.21.238:9796/';
|
window.SITE_CONFIG['previewUrl'] = 'http://15.2.21.238:9796/';
|
||||||
window.SITE_CONFIG['frontUrl'] = 'http://15.2.21.238:9796/document/#/devModelFile/';
|
window.SITE_CONFIG['frontUrl'] = 'http://15.2.21.238:9796/document/#/devModelFile/';
|
||||||
window.SITE_CONFIG['apiURL'] = 'http://15.2.21.239:8888/renren-admin';
|
window.SITE_CONFIG['apiURL'] = 'http://15.2.21.238:8888/renren-admin';
|
||||||
window.SITE_CONFIG['POI_URL'] = 'http://15.2.21.238:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address';
|
window.SITE_CONFIG['POI_URL'] = 'http://15.2.21.238:8090/iserver/services/addressmatch-qingdaoPOI181015/restjsr/v1/address';
|
||||||
// 穿透版本
|
// 穿透版本
|
||||||
// window.SITE_CONFIG['backUrl'] = 'http://124.222.94.39:9797';
|
// window.SITE_CONFIG['backUrl'] = 'http://124.222.94.39:9797';
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
<div class="left" id="left"></div>
|
<div class="left" id="left"></div>
|
||||||
<div class="center"></div>
|
<div class="center"></div>
|
||||||
<div class="right" id="right"></div>
|
<div class="right" id="right"></div>
|
||||||
<div class="right-son1">汇聚量</div>
|
<!-- <div class="right-son1">汇聚量</div> -->
|
||||||
<div class="right-son2">部门数</div>
|
<div class="right-son2">部门数</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -287,11 +287,11 @@
|
||||||
}
|
}
|
||||||
//来源部门漏斗图
|
//来源部门漏斗图
|
||||||
const funnelPlot = (dataList) => {
|
const funnelPlot = (dataList) => {
|
||||||
let arr = ['0-5', '5-10', '10-15', '15-20', '20以上']
|
// let arr = ['0-5', '5-10', '10-15', '15-20', '20以上']
|
||||||
dataList.sort((a, b) => {
|
// dataList.sort((a, b) => {
|
||||||
console.log(arr.indexOf(a.fanwei), arr.indexOf(b.fanwei))
|
// console.log(arr.indexOf(a.fanwei), arr.indexOf(b.fanwei))
|
||||||
return arr.indexOf(b.fanwei) - arr.indexOf(a.fanwei)
|
// return arr.indexOf(b.fanwei) - arr.indexOf(a.fanwei)
|
||||||
})
|
// })
|
||||||
console.log('============》', dataList)
|
console.log('============》', dataList)
|
||||||
echarts.init(document.getElementById('right')).dispose()
|
echarts.init(document.getElementById('right')).dispose()
|
||||||
let chartDom = document.getElementById('right')
|
let chartDom = document.getElementById('right')
|
||||||
|
@ -324,6 +324,7 @@
|
||||||
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
|
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
|
||||||
},
|
},
|
||||||
yAxis: {
|
yAxis: {
|
||||||
|
show: false,
|
||||||
type: 'value',
|
type: 'value',
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 20,
|
max: 20,
|
||||||
|
@ -340,7 +341,7 @@
|
||||||
max: 100,
|
max: 100,
|
||||||
minSize: '0%',
|
minSize: '0%',
|
||||||
maxSize: '100%',
|
maxSize: '100%',
|
||||||
sort: 'none',
|
sort: 'ascending',
|
||||||
gap: 2,
|
gap: 2,
|
||||||
label: {
|
label: {
|
||||||
show: true,
|
show: true,
|
||||||
|
|
|
@ -84,7 +84,7 @@
|
||||||
<a-select
|
<a-select
|
||||||
v-model:value="formName.applicationSystem"
|
v-model:value="formName.applicationSystem"
|
||||||
show-search
|
show-search
|
||||||
placeholder="请选择应用系统"
|
placeholder="请输入关键字"
|
||||||
style="width: 200px"
|
style="width: 200px"
|
||||||
:options="systemOptions"
|
:options="systemOptions"
|
||||||
@focus="handleFocus"
|
@focus="handleFocus"
|
||||||
|
|
Loading…
Reference in New Issue