vue-element-ui 弹窗

2019-01-09  本文已影响0人  undefined汪少

<button type="text" @click="popupclick" class="elspanbutton">查看相似</button>

<el-dialog title="相似媒体" :visible.sync="dialogTableVisible">

<el-table :data="tabData"

      height="360"

      border

      style="width: 100%;">

      <el-table-column

        prop="name"

        label="媒体名称"

        width="100">

      </el-table-column>

      <el-table-column

        prop="costPrice"

        label="服务费"

        width="80"

        >

      </el-table-column>

      <el-table-column

        prop="costPrice"

        label="上传人"

        width="80"

        >

      </el-table-column>

      <el-table-column

        prop="costPrice"

        label="上传时间"

        width="120"

        >

      </el-table-column>

      <el-table-column

        prop="costPrice"

        label="QQ"

        width="80"

        >

      </el-table-column>

      <el-table-column

        prop="recordLink"

        label="案例链接"

        width="80"

        >

        <template scope="scope">

        <a href="{{scope.row.recordLink}}" target="_blank">{{scope.row.recordLink}}</a>

      </template>

      </el-table-column>

      <el-table-column

        prop="remarks"

        label="备注"

        width="260"

        >

      </el-table-column>

      <el-table-column

        prop="id"

        label="操作"

        width="80"

        >

        <template scope="scope">

            <a class="layui-btn layui-btn-xs" @click="soldOut(scope.row.id)">下架</a>

      </template>

      </el-table-column>

    </el-table>

    </el-table>

    <br><br>

    <span ><button class="fanhui" @click="fanhuiclick">返回</button></span>

  </el-dialog>

上一篇 下一篇

猜你喜欢

热点阅读