BUG 30793

This commit is contained in:
aixianling
2022-08-10 11:10:36 +08:00
parent b001ef0bd5
commit 3d386d76e4
2 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@
<el-table-column slot="options" width="140px" fixed="right" label="操作" align="center"> <el-table-column slot="options" width="140px" fixed="right" label="操作" align="center">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
<div class="table-options"> <div class="table-options">
<el-button type="text" @click="edit('编辑设备配置', row)">编辑</el-button> <el-button type="text" @click="add('编辑设备配置', row)">编辑</el-button>
<el-button type="text" @click="refresh(row)">刷新</el-button> <el-button type="text" @click="refresh(row)">刷新</el-button>
<el-button type="text" @click="remove(row.id)">删除</el-button> <el-button type="text" @click="remove(row.id)">删除</el-button>
</div> </div>

View File

@@ -33,7 +33,7 @@
<el-table-column slot="options" width="140px" fixed="right" label="操作" align="center"> <el-table-column slot="options" width="140px" fixed="right" label="操作" align="center">
<template slot-scope="{ row }"> <template slot-scope="{ row }">
<div class="table-options"> <div class="table-options">
<el-button type="text" @click="edit('编辑设备配置', row)">编辑</el-button> <el-button type="text" @click="add('编辑设备配置', row)">编辑</el-button>
<el-button type="text" @click="refresh(row)">刷新</el-button> <el-button type="text" @click="refresh(row)">刷新</el-button>
<el-button type="text" @click="remove(row.id)">删除</el-button> <el-button type="text" @click="remove(row.id)">删除</el-button>
</div> </div>
@@ -141,7 +141,7 @@
}, },
methods: { methods: {
getListInit() { getListInit() {
this.search.current = 1 this.search.current = 1
this.getList() this.getList()
}, },
getList () { getList () {