Merge branch 'dev' into pr@dev_eslint_auto_fix

This commit is contained in:
dataeaseShu 2022-10-28 16:59:27 +08:00
commit 1b59101292
2 changed files with 14 additions and 1 deletions

View File

@ -106,6 +106,7 @@
<el-color-picker
v-else
v-model="option.colors[index]"
popper-class="gradient-picker-dropdown"
@change="switchColorItem(option.colors, option.value)"
/>
</span>
@ -423,4 +424,7 @@ export default {
width: 20px;
height: 20px;
}
.gradient-picker-dropdown .el-color-dropdown__link-btn {
display: none;
}
</style>

View File

@ -47,6 +47,9 @@
</div>
</div>
<div
:class="loading ? 'symbol-map-loading' : 'symbol-map-loaded'"
/>
</div>
</template>
@ -167,7 +170,8 @@ export default {
borderRadius: '0px',
mapCenter: null,
linkageActiveParam: null,
buttonTextColor: null
buttonTextColor: null,
loading: true
}
},
@ -222,6 +226,7 @@ export default {
}
},
preDraw() {
this.loading = true
// domecharts
// echartdom,idechart id
const that = this
@ -253,6 +258,10 @@ export default {
that.$refs.viewTrack.trackButtonClick()
}
})
this.myChart.off('finished')
this.myChart.on('finished', () => {
this.loading = false
})
})
},
loadThemeStyle() {