Browse Source

Merge remote-tracking branch 'origin/master'

master
nelson 2 years ago
parent
commit
05c29da6db
  1. 11
      src/views/stock/chg/Index.vue

11
src/views/stock/chg/Index.vue

@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<NewsChg /> <NewsChg />
<div style="display: flex"> <div class="uplow-container">
<UpLow :chg-content="chgContent" :chart-type="uplow" style="flex: 1" /> <UpLow :chg-content="chgContent" :chart-type="uplow" style="flex: 1" />
<UpLow :chg-content="chgContent" :chart-type="uplowlimit" style="flex: 1" /> <UpLow :chg-content="chgContent" :chart-type="uplowlimit" style="flex: 1" />
</div> </div>
@ -43,5 +43,12 @@ const getData = () => {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
@media screen and (max-width: 800px) {
.uplow-container{
display: block !important;
}
}
.uplow-container{
display: flex;
}
</style> </style>

Loading…
Cancel
Save