Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
wangxiaolu-sfa-ui
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
sfa
wangxiaolu-sfa-ui
Commits
fe5541a6
提交
fe5541a6
authored
3月 03, 2025
作者:
lidongxu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor(index): 首页去掉各种图表_不应该在正式环境出现
同上
上级
e44508dc
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
37 行增加
和
13 行删除
+37
-13
.env.development
.env.development
+1
-0
index.vue
src/views/bi/supply/index.vue
+28
-10
index.vue
src/views/index.vue
+2
-2
vite.config.js
vite.config.js
+6
-1
没有找到文件。
.env.development
浏览文件 @
fe5541a6
...
@@ -7,6 +7,7 @@ VITE_APP_PROMOTION = '/promotion-api' # 促销
...
@@ -7,6 +7,7 @@ VITE_APP_PROMOTION = '/promotion-api' # 促销
# VITE_APP_BASE_API = '/qllan'
# VITE_APP_BASE_API = '/qllan'
# VITE_APP_BASE_API = '/bclan'
# VITE_APP_BASE_API = '/bclan'
# VITE_APP_BASE_API = '/home'
# VITE_APP_BASE_API = '/home'
# VITE_APP_PROMOTION = '/home-promotion-api' # 促销
# 开发环境配置
# 开发环境配置
VITE_APP_ENV = 'development'
VITE_APP_ENV = 'development'
...
...
src/views/bi/supply/index.vue
浏览文件 @
fe5541a6
<
template
>
<
template
>
<div>
<div
class=
"app-container"
>
<el-card
class=
"container"
>
<template
#
header
>
<div
class=
"card-header"
>
<span>
报表列表
</span>
</div>
</
template
>
<div
v-for=
"item in reportList"
class=
"item"
>
<el-link
icon=
"Document"
:href=
"baseURL + item.previewUrl"
target=
"_blank"
>
{{ item.name }}
</el-link>
</div>
</el-card>
</div>
</div>
</template>
</template>
<
script
setup
>
<
script
setup
>
import
{
getReportListAPI
}
from
'@/api'
import
{
getReportListAPI
}
from
'@/api'
const
getReportList
=
async
()
=>
{
const
baseURL
=
ref
(
import
.
meta
.
env
.
VITE_APP_REPORT_URL
+
'/report'
)
const
res
=
await
getReportListAPI
()
const
reportList
=
ref
([])
console
.
log
(
res
)
const
getReportList
=
async
()
=>
{
}
const
{
data
}
=
await
getReportListAPI
()
getReportList
()
reportList
.
value
=
data
}
getReportList
()
</
script
>
</
script
>
<
style
scoped
lang=
"scss"
>
<
style
scoped
lang=
"scss"
>
.item
{
margin
:
10px
0
;
}
</
style
>
</
style
>
\ No newline at end of file
src/views/index.vue
浏览文件 @
fe5541a6
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
<div
class=
"container"
>
<div
class=
"container"
>
<panel-group
@
handleSetLineChartData=
"handleSetLineChartData"
/>
<panel-group
@
handleSetLineChartData=
"handleSetLineChartData"
/>
<common-menu
/>
<common-menu
/>
<el-row
:gutter=
"20"
<
!--
<
el-row
:gutter=
"20"
class=
"row"
>
class=
"row"
>
<el-col
:xs=
"24"
<el-col
:xs=
"24"
:sm=
"24"
:sm=
"24"
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
<line-chart
class=
"line-chart"
<line-chart
class=
"line-chart"
:chartData=
"lineChartData"
/>
:chartData=
"lineChartData"
/>
</el-col>
</el-col>
</el-row>
</el-row>
-->
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
...
vite.config.js
浏览文件 @
fe5541a6
...
@@ -43,9 +43,14 @@ export default defineConfig(({ mode, command }) => {
...
@@ -43,9 +43,14 @@ export default defineConfig(({ mode, command }) => {
rewrite
:
(
p
)
=>
p
.
replace
(
/^
\/
bclan/
,
''
)
rewrite
:
(
p
)
=>
p
.
replace
(
/^
\/
bclan/
,
''
)
},
},
'/home'
:
{
'/home'
:
{
target
:
'http://111.198.15.68:8
6
/api'
,
target
:
'http://111.198.15.68:8
5
/api'
,
changeOrigin
:
true
,
changeOrigin
:
true
,
rewrite
:
(
p
)
=>
p
.
replace
(
/^
\/
home/
,
''
)
rewrite
:
(
p
)
=>
p
.
replace
(
/^
\/
home/
,
''
)
},
'/home-promotion-api'
:
{
target
:
'http://sfa.test.wxl66.cn:85/promotion-api'
,
changeOrigin
:
true
,
rewrite
:
(
p
)
=>
p
.
replace
(
/^
\/
home-promotion-api/
,
''
)
}
}
}
}
},
},
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论