|
@@ -92,21 +92,20 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<!-- 列表 -->
|
|
|
- <div style="height:584px; overflow:auto">
|
|
|
- <el-table :data="dialogData" ref="table" :row-key="getRowKey" @selection-change="getChange">
|
|
|
- <el-table-column type="selection" align="center" reserve-selection />
|
|
|
- <el-table-column label="内容ID" prop="id" align="center" />
|
|
|
- <el-table-column label="音频名称" prop="audioName" align="center" />
|
|
|
- <el-table-column label="音频封面" align="center" width="100">
|
|
|
- <template slot-scope="scope">
|
|
|
- <el-image :src="scope.row.audioPic" />
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <el-table-column label="分类" prop="audioType" align="center" :formatter="typeFormatter" />
|
|
|
- <el-table-column label="节目数量" prop="programCount" align="center" />
|
|
|
- <el-table-column label="付费类型" prop="isFree" align="center" :formatter="freeFormatter" />
|
|
|
- </el-table>
|
|
|
- </div>
|
|
|
+ <el-table :data="dialogData" height="476" ref="table" :row-key="getRowKey"
|
|
|
+ @selection-change="getChange">
|
|
|
+ <el-table-column type="selection" align="center" reserve-selection />
|
|
|
+ <el-table-column label="内容ID" prop="id" align="center" />
|
|
|
+ <el-table-column label="音频名称" prop="audioName" align="center" />
|
|
|
+ <el-table-column label="音频封面" align="center" width="100">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-image :src="scope.row.audioPic" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="分类" prop="audioType" align="center" :formatter="typeFormatter" />
|
|
|
+ <el-table-column label="节目数量" prop="programCount" align="center" />
|
|
|
+ <el-table-column label="付费类型" prop="isFree" align="center" :formatter="freeFormatter" />
|
|
|
+ </el-table>
|
|
|
<pagination v-show="total>0" :total="total" :page.sync="dialogForm.pageNum"
|
|
|
:limit.sync="dialogForm.pageSize" @pagination="getPage" />
|
|
|
<div slot="footer">
|