|
@@ -14,7 +14,7 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" @click="onSearch">查询</el-button>
|
|
<el-button type="primary" @click="onSearch">查询</el-button>
|
|
- <el-button @click="resetSearch">重置</el-button>
|
|
|
|
|
|
+ <el-button type="primary" @click="resetSearch">重置</el-button>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
|
|
|
|
@@ -36,7 +36,7 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="操作">
|
|
<el-table-column label="操作">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <el-button size="mini" @click="handleEdit(scope.$index, scope.row)"
|
|
|
|
|
|
+ <el-button type="primary" @click="handleEdit(scope.$index, scope.row)"
|
|
>编辑</el-button
|
|
>编辑</el-button
|
|
>
|
|
>
|
|
<!-- <el-button
|
|
<!-- <el-button
|
|
@@ -45,7 +45,7 @@
|
|
@click="handleToggleStatus(scope.$index, scope.row)">
|
|
@click="handleToggleStatus(scope.$index, scope.row)">
|
|
{{ scope.row.status === '1' ? '禁用' : '启用' }}
|
|
{{ scope.row.status === '1' ? '禁用' : '启用' }}
|
|
</el-button> -->
|
|
</el-button> -->
|
|
- <el-button size="mini" @click="handleDel(scope.$index, scope.row)"
|
|
|
|
|
|
+ <el-button type="danger" @click="handleDel(scope.$index, scope.row)"
|
|
>删除</el-button
|
|
>删除</el-button
|
|
>
|
|
>
|
|
</template>
|
|
</template>
|