• element ui表格 表头的的特殊处理(换行/jsx风格表头)以及上传组件的一点小问题


    <!--
     * @Description: 
     * @Version: 2.0
     * @Autor: lhl
     * @Date: 2020-01-15 11:15:40
     * @LastEditors: lhl
     * @LastEditTime: xxx
     -->
    <template>
      <div>
        <el-table :data="tableData" style=" 100%">
          <el-table-column align="center" label="Date" prop="date"></el-table-column>
          <el-table-column align="center" :label="'姓名
    (注:element ui 表格表头换行)'" prop="name"></el-table-column>
          <el-table-column align="center" :render-header="renderHeader">
            <template slot-scope="scope">
              <span>{{scope.row.address}}</span>
            </template>
          </el-table-column>
        </el-table>
      </div>
    </template>
    
    <script>
    import child from "./child";
    export default {
      components: {
        child
      },
      data() {
        return {
          tableData: [
            {
              date: "2016-05-02",
              name: "王小虎",
              address: "上海市普陀区金沙江路 1518 弄"
            },
            {
              date: "2016-05-04",
              name: "王小虎",
              address: "上海市普陀区金沙江路 1517 弄"
            }
          ]
        };
      },
      mounted() {
    
      },
      created() {
        
      },
      methods: {
        renderHeader(h) {
          return (
            <div style="display: flex;justify-content: center;align-items: center;">
              <div>地址</div>
              <el-tooltip
                class="item"
                effect="dark"
                content="tooltip的使用。"
                placement="top"
              >
                <i class="el-icon-question"></i>
              </el-tooltip>
            </div>
          );
        }
      }
    };
    </script>
    
    <style lang="scss">
      .el-table .cell{
        white-space:pre-line;
      }
    </style>

     使用element-ui  el-upload上传图片,上传图片后再次打开还是会有原来的图片,想要清空原来上传的图片,只需要在组件上绑定 ref,在提交成功后的方法里调用 this.$refs.upload.clearFiles(); 就可以清除原来上传的文件;

  • 相关阅读:
    每天进步一点点--&gt;函数fseek() 使用方法
    几种更新(Update语句)查询的方法
    hibernate批量删除和更新数据
    Android ViewPager使用具体解释
    Linux curses库使用
    安装numpy、nltk问题汇总
    android widget 开发实例 : 桌面便签程序的实现具体解释和源代码 (上)
    Eclipse中SVN的安装步骤(两种)和用法
    Intent用法
    Tomcat全攻略
  • 原文地址:https://www.cnblogs.com/lhl66/p/12843757.html
Copyright © 2020-2023  润新知