|
@@ -58,15 +58,15 @@
|
|
|
>
|
|
|
<el-table-column fixed="right" label="操作" width="150" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button type="text" size="small" @click="useSee(scope.row)">查看</el-button>
|
|
|
+ <el-button type="text" size="small" @click.stop="useSee(scope.row)">查看</el-button>
|
|
|
<el-button
|
|
|
v-if="scope.row.oaId && scope.row.oaId !=''"
|
|
|
- @click="jumpFlow(scope.row)"
|
|
|
+ @click.stop="jumpFlow(scope.row)"
|
|
|
type="text"
|
|
|
:size="size"
|
|
|
>流程跳转</el-button>
|
|
|
- <el-button @click="handleEdit(scope.row)" v-if="scope.row.status == 0 || scope.row.status == 3" type="text" size="small">编辑</el-button>
|
|
|
- <el-button type="text" size="small" @click="deleteRow(scope.row)" v-if="scope.row.status == 0 || scope.row.status == 3">删除</el-button>
|
|
|
+ <el-button @click.stop="handleEdit(scope.row)" v-if="scope.row.status == 0 || scope.row.status == 3" type="text" size="small">编辑</el-button>
|
|
|
+ <el-button type="text" size="small" @click.stop="deleteRow(scope.row)" v-if="scope.row.status == 0 || scope.row.status == 3">删除</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-super-table>
|