no message
Showing
3 changed files
with
9 additions
and
10 deletions
| 1 | <template> | 1 | <template> |
| 2 | <div> | 2 | <div class="main"> |
| 3 | <el-row class="w100"> | 3 | <el-row class="w100"> |
| 4 | <el-col :span="7"> | 4 | <el-col :span="7"> |
| 5 | <left-page/> | 5 | <left-page/> |
| ... | @@ -31,5 +31,4 @@ onMounted(()=>{ | ... | @@ -31,5 +31,4 @@ onMounted(()=>{ |
| 31 | </script> | 31 | </script> |
| 32 | 32 | ||
| 33 | <style scoped lang="scss"> | 33 | <style scoped lang="scss"> |
| 34 | |||
| 35 | </style> | 34 | </style> | ... | ... |
| ... | @@ -332,7 +332,7 @@ onUnmounted(() => { | ... | @@ -332,7 +332,7 @@ onUnmounted(() => { |
| 332 | } | 332 | } |
| 333 | } | 333 | } |
| 334 | .chartCard{background: url("@/assets/img/box_bg.png") no-repeat top left; | 334 | .chartCard{background: url("@/assets/img/box_bg.png") no-repeat top left; |
| 335 | background-size: 100% 100%;position: relative; | 335 | background-size: 100% 100%;position: relative;overflow: hidden; |
| 336 | 336 | ||
| 337 | .po_right{position: absolute;right: 20px;top: 40px;z-index: 1; | 337 | .po_right{position: absolute;right: 20px;top: 40px;z-index: 1; |
| 338 | :deep(.el-radio-button){ | 338 | :deep(.el-radio-button){ | ... | ... |
| ... | @@ -17,11 +17,11 @@ | ... | @@ -17,11 +17,11 @@ |
| 17 | <div class="chartCard mt30"> | 17 | <div class="chartCard mt30"> |
| 18 | <div class="title">档案接收总览</div> | 18 | <div class="title">档案接收总览</div> |
| 19 | <div class="po_right"> | 19 | <div class="po_right"> |
| 20 | <el-radio-group v-model="radioB" size="small" @change="radioBChange"> | 20 | <!-- <el-radio-group v-model="radioB" size="small" @change="radioBChange">--> |
| 21 | <el-radio-button label="本月" value="month" /> | 21 | <!-- <el-radio-button label="本月" value="month" />--> |
| 22 | <el-radio-button label="本季度" value="quarter" /> | 22 | <!-- <el-radio-button label="本季度" value="quarter" />--> |
| 23 | <el-radio-button label="本年" value="year" /> | 23 | <!-- <el-radio-button label="本年" value="year" />--> |
| 24 | </el-radio-group> | 24 | <!-- </el-radio-group>--> |
| 25 | </div> | 25 | </div> |
| 26 | 26 | ||
| 27 | <div ref="lineRef" style="width: 100%; height: 40vh;"></div> | 27 | <div ref="lineRef" style="width: 100%; height: 40vh;"></div> |
| ... | @@ -173,7 +173,7 @@ const setA = () => { | ... | @@ -173,7 +173,7 @@ const setA = () => { |
| 173 | } | 173 | } |
| 174 | 174 | ||
| 175 | const getB = () => { | 175 | const getB = () => { |
| 176 | api.getJieShou({type: radioB.value}).then(res=>{ | 176 | api.getJieShou().then(res=>{ |
| 177 | dataA.value = [] | 177 | dataA.value = [] |
| 178 | kindList.value = [] | 178 | kindList.value = [] |
| 179 | for(let n of res.data){ | 179 | for(let n of res.data){ |
| ... | @@ -352,7 +352,7 @@ onUnmounted(() => { | ... | @@ -352,7 +352,7 @@ onUnmounted(() => { |
| 352 | .chartCard { | 352 | .chartCard { |
| 353 | background: url("@/assets/img/box_bg.png") no-repeat top left; | 353 | background: url("@/assets/img/box_bg.png") no-repeat top left; |
| 354 | background-size: 100% 100%; | 354 | background-size: 100% 100%; |
| 355 | position: relative; | 355 | position: relative;overflow: hidden; |
| 356 | 356 | ||
| 357 | .po_right { | 357 | .po_right { |
| 358 | position: absolute; | 358 | position: absolute; | ... | ... |
-
Please register or sign in to post a comment