zoukankan      html  css  js  c++  java
  • 普通表格-element

    1.vue   

    <!--表格-->
    <el-table :data="formInline.value" border>
    <el-table-column label="照片">
    <template slot-scope="scope">
    <el-input placeholder="请输入内容" v-model="scope.row.ZPZSL"></el-input>
    </template>
    <template slot-scope="scope">
    <!-- <el-table-colrow-->
    <!-- label="底版"-->
    <!-- width="120">-->
    <!-- <template slot-scope="scope">-->
    <!-- <el-input placeholder="请输入内容" v-model="scope.row.ZPZSL"></el-input>-->
    <!-- </template>-->
    <!-- </el-table-colrow>-->
    </template>

    </el-table-column>
    <el-table-column label="彩色复制片">
    <template slot-scope="scope">
    <el-input placeholder="请输入内容" v-model="scope.row.tab2"></el-input>
    <span >{{scope.row.tab2}}</span>
    </template>
    </el-table-column>
    <el-table-column label="黑白原片">
    <template slot-scope="scope">
    <el-input placeholder="请输入内容" v-model="scope.row.tab2"></el-input>
    <span >{{scope.row.tab2}}</span>
    </template>
    </el-table-column>
    <el-table-column label="黑白复制片">
    <template slot-scope="scope">
    <el-input placeholder="请输入内容" v-model="scope.row.tab2"></el-input>
    <span>{{scope.row.tab2}}</span>
    </template>
    </el-table-column>
    <br>
    <el-table-column label="底版">
    <template slot-scope="scope">
    <el-input placeholder="请输入内容" v-model="scope.row.tab2"></el-input>
    <span>{{scope.row.tab2}}</span>
    </template>
    </el-table-column>

    </el-table>

    <el-table :data="formInline.value" border :span-method="objectSpanMethod">
    <el-table-column label="照片">
    <template slot-scope="scope">
    <el-input placeholder="请输入内容" v-model="scope.row.ZPZSL"></el-input>
    </template>
    <template slot-scope="scope">
    <!-- <el-table-colrow-->
    <!-- label="底版"-->
    <!-- width="120">-->
    <!-- <template slot-scope="scope">-->
    <!-- <el-input placeholder="请输入内容" v-model="scope.row.ZPZSL"></el-input>-->
    <!-- </template>-->
    <!-- </el-table-colrow>-->
    </template>

    </el-table-column>
    <el-table-column label="彩色复制片">
    <template slot-scope="scope">
    <el-input placeholder="请输入内容" v-model="scope.row.tab2"></el-input>
    <span >{{scope.row.tab2}}</span>
    </template>
    </el-table-column>
    <el-table-column label="黑白原片">
    <template slot-scope="scope">
    <el-input placeholder="请输入内容" v-model="scope.row.tab2"></el-input>
    <span >{{scope.row.tab2}}</span>
    </template>
    </el-table-column>
    <el-table-column label="黑白复制片">
    <template slot-scope="scope">
    <el-input placeholder="请输入内容" v-model="scope.row.tab2"></el-input>
    <span>{{scope.row.tab2}}</span>
    </template>
    </el-table-column>
    <br>
    <el-table-column label="底版">
    <template slot-scope="scope">
    <el-input placeholder="请输入内容" v-model="scope.row.tab2"></el-input>
    <span>{{scope.row.tab2}}</span>
    </template>
    </el-table-column>

    </el-table>

  • 相关阅读:
    MyBatis collection的两种形式——MyBatis学习笔记之九
    MyBatis 一对一(OneToOne)__SELECT
    Mybatis 一对一(OneToOne)关系映射__INSERT
    mybatis association表关联与rowbounds共同使用时的异常及其解决方案
    Mybatis Laz-Load功能实现代码赏析(原创)
    mybatis sql中的条件语句
    HDFS之四:HDFS原理解析(总体架构,读写操作流程)
    Mybatis多参数查询映射
    mysql索引之六:mysql高效索引之覆盖索引
    MYSQL BENCHMARK()函数
  • 原文地址:https://www.cnblogs.com/evident/p/14246792.html
Copyright © 2011-2022 走看看