Commit a15b7ee2 authored by songyaoxian's avatar songyaoxian
Browse files

周转率问题修复

parent 17afafef
No related merge requests found
Showing with 3 additions and 3 deletions
+3 -3
File deleted
File deleted
File deleted
File deleted
File deleted
......@@ -93,7 +93,7 @@ export default {
type: 'line',
data: this.C4Data,
smooth: true,
// 渐变填充
// 渐变填充
lineStyle: {
color: '#3BB7FD',
width: 2
......@@ -123,7 +123,7 @@ export default {
</script>
<style lang="scss" scoped>
#container-c-4{
#container-c-4 {
// margin-top: .25rem;
width: 4.05rem;
height: 1.9375rem;
......
......@@ -750,7 +750,7 @@ export default {
this.C4Data = []
turnoverRate({ days: 7 }).then(res => {
this.C4DateStr = res.data.map(item => item.dateStr)
this.C4Data = res.data.map(item => item.parkingTimes)
this.C4Data = res.data.map(item => item.turnoverRate.replace('%', '') * 1)
}).finally(()=>{
this.showC4 = true
// C4 轮训
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment