| | |
| | | // 设备管理 |
| | | // 轮播图管理 |
| | | <template> |
| | | <div class="app-container"> |
| | | <!-- 操作区 ↓↓↓↓↓↓↓↓↓↓ --> |
| | |
| | | <el-image :src="scope.row.imgUrl" style="width:80px;height:80px" fit="contain" :preview-src-list="[scope.row.imgUrl]" /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="orderNum" label="排序号" align="center" min-width="120" /> |
| | | <el-table-column prop="createTime" label="创建时间" align="center" /> |
| | | <el-table-column prop="jumpType" label="跳转类型" align="center" min-width="120"> |
| | | <template slot-scope="scope"> |
| | | {{ ['不跳转','小程序页面','H5页面','其他小程序'][scope.row.jumpType] }} |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="orderNum" label="排序号" align="center" /> |
| | | <el-table-column prop="createTime" label="创建时间" align="center" min-width="120" /> |
| | | <el-table-column label="操作" align="center" class-name="small-padding fixed-width" min-width="100"> |
| | | <template slot-scope="scope"> |
| | | <el-button |