<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>