Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pet-business-web
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘怀志
pet-business-web
Commits
dd05dc30
Commit
dd05dc30
authored
Aug 03, 2023
by
陈明豪
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
数据统计-接口对接
parent
346696c1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
test.js
src/api/business/test.js
+10
-0
banner_management.vue
src/views/banner_management/banner_management.vue
+1
-1
hospital-data-statistics.vue
...ics/hospital-data-statistics/hospital-data-statistics.vue
+9
-0
No files found.
src/api/business/test.js
0 → 100644
View file @
dd05dc30
import
request
from
'@/utils/request'
// 查询文章列表
export
function
testMsg
()
{
return
request
({
url
:
'/system/petmNotice/pushMsg'
,
method
:
'get'
})
}
src/views/banner_management/banner_management.vue
View file @
dd05dc30
...
...
@@ -86,7 +86,7 @@
{{
scope
.
row
.
img
?
'已上传'
:
'未上传'
}}
</
template
>
</el-table-column>
<el-table-column
label=
"跳转
链接
"
prop=
"url"
show-overflow-tooltip
>
<el-table-column
label=
"跳转
地址
"
prop=
"url"
show-overflow-tooltip
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
url
||
'-'
}}
</span>
</
template
>
...
...
src/views/data-statistics/hospital-data-statistics/hospital-data-statistics.vue
View file @
dd05dc30
...
...
@@ -337,6 +337,7 @@ import ColumnarChart from '@/views/data-statistics/echars-components/columnarCha
import
RadarChartForHospital
from
'@/views/data-statistics/echars-components/radar-chart-for-hospital.vue'
import
{
getHospitalStatistics
,
listHospital
}
from
'@/api/business/statistics'
import
{
parseTime
}
from
'../../../utils/ruoyi'
import
{
testMsg
}
from
'@/api/business/test'
export
default
{
name
:
'HospitalDataStatistics'
,
components
:
{
...
...
@@ -391,8 +392,16 @@ export default {
// this.loading = false
this
.
getStatistics
()
this
.
getHospitalList
()
// this.justTest()
}
,
methods
:
{
justTest
()
{
testMsg
().
then
(
res
=>
{
if
(
res
)
{
console
.
log
(
'测试结果'
,
res
)
}
}
)
}
,
parseTime
,
getStatistics
()
{
this
.
loading
=
true
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment