• element-admin中echarts图标宽度无法修改


    默认示例

    <template>
    <div>
      <el-row :gutter="0">
        <el-col :xs="24" :sm="24" :lg="8">
          <div class="chart-wrapper">
            <health-check-line />
          </div>
        </el-col>
        <el-col :xs="24" :sm="24" :lg="8">
          <div class="chart-wrapper">
            <health-check-pie />
          </div>
        </el-col>
      </el-row>
    </div>
    </template>
    

      修改

    <template>
    <div>
      <el-row :gutter="0">
        <!-- <el-col :xs="24" :sm="24" :lg="8" :span="10"> -->
        <el-col :span="12">   # 将xs、sm、lg删除,然后使用span分
          <div class="chart-wrapper">
            <health-check-line />
          </div>
        </el-col>
        <!-- <el-col :xs="24" :sm="24" :lg="8" :span="10"> -->
        <el-col :span="12">
          <div class="chart-wrapper">
            <health-check-pie />
          </div>
        </el-col>
      </el-row>
    </div>
    </template>
    

      

  • 相关阅读:
    2017-5-2 对话框控件
    2017-4-28 ListView控件
    2017-4-27 WinForm 布局及容器控件
    jQuery与Aiax应用
    jQuery中的动画
    jQuery中的事件
    jQuery中的DOM操作
    认识jQuery
    h5
    js动画效果
  • 原文地址:https://www.cnblogs.com/robinunix/p/12059602.html
Copyright © 2020-2023  润新知