|
@@ -3,7 +3,7 @@
|
|
|
<div class="module-box">
|
|
|
<div class="header">
|
|
|
<div class="rhombus" />
|
|
|
- <span class="title">科室产废量分析top5</span>
|
|
|
+ <span class="title">科室产废量分析TOP5</span>
|
|
|
</div>
|
|
|
<echarts v-if="!loading" :data="echartdata" class="echarts" />
|
|
|
</div>
|
|
@@ -113,7 +113,7 @@ export default class Smodule24 extends Vue {
|
|
|
this.echartdata.series = series;
|
|
|
|
|
|
this.loading = false;
|
|
|
- }).catch(() => {}).finally(() => {
|
|
|
+ }).catch(() => { }).finally(() => {
|
|
|
this.loading = false;
|
|
|
});
|
|
|
}
|
|
@@ -121,38 +121,41 @@ export default class Smodule24 extends Vue {
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
- .module-box{
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- position: relative;
|
|
|
- }
|
|
|
- .module-box .header{
|
|
|
- width: 97%;
|
|
|
- height: 40px;
|
|
|
- line-height: 40px;
|
|
|
- padding-left: 3%;
|
|
|
- }
|
|
|
- .module-box .header .rhombus{
|
|
|
- width: 14px;
|
|
|
- height: 14px;
|
|
|
- background: #2D59BC;
|
|
|
- display: inline-block;
|
|
|
- clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
|
|
|
- }
|
|
|
- .module-box .header .title{
|
|
|
- color: #FFFFFF;
|
|
|
- font-size: 15px;
|
|
|
- font-weight: 500;
|
|
|
- margin-left: 2%;
|
|
|
- }
|
|
|
- .module-box .echarts{
|
|
|
- width: 100%;
|
|
|
- height: auto;
|
|
|
- position: absolute;
|
|
|
- top: 40px;
|
|
|
- left: 0;
|
|
|
- right: 0;
|
|
|
- bottom: 0;
|
|
|
- }
|
|
|
+.module-box {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
|
|
|
+.module-box .header {
|
|
|
+ width: 97%;
|
|
|
+ height: 40px;
|
|
|
+ line-height: 40px;
|
|
|
+ padding-left: 3%;
|
|
|
+}
|
|
|
+
|
|
|
+.module-box .header .rhombus {
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
+ background: #2D59BC;
|
|
|
+ display: inline-block;
|
|
|
+ clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
|
|
|
+}
|
|
|
+
|
|
|
+.module-box .header .title {
|
|
|
+ color: #FFFFFF;
|
|
|
+ font-size: 15px;
|
|
|
+ font-weight: 500;
|
|
|
+ margin-left: 2%;
|
|
|
+}
|
|
|
+
|
|
|
+.module-box .echarts {
|
|
|
+ width: 100%;
|
|
|
+ height: auto;
|
|
|
+ position: absolute;
|
|
|
+ top: 40px;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+}
|
|
|
</style>
|