no message

This commit is contained in:
小陌 2023-06-10 08:23:45 +08:00
parent f9d75cd82c
commit 0c2e425a63

View File

@ -41,14 +41,14 @@
<el-table-column label="添加时间" prop="timestamp" width="150"></el-table-column>
<el-table-column label="浏览" prop="viewnum" width="90"></el-table-column>
<el-table-column label="操作" fixed="right" align="right" width="180">
<el-table-column label="操作" fixed="right" align="right" width="200">
<template #default="scope">
<el-button-group>
<el-button type="primary" size="small" @click="table_edit(scope.row, scope.$index)">编辑</el-button>
<el-button type="info" size="small" @click="table_room(scope.row, scope.$index)"></el-button>
<el-button type="warning" size="small" @click="table_room(scope.row, scope.$index)">({{ scope.row.room }})</el-button>
<el-popconfirm title="确定下架吗?" @confirm="table_del(scope.row, scope.$index)">
<template #reference>
<el-button type="warning" size="small">下架</el-button>
<el-button type="info" size="small">下架</el-button>
</template>
</el-popconfirm>
</el-button-group>