|
@@ -54,12 +54,18 @@
|
|
|
</el-form>
|
|
|
<!-- 功能按钮区 -->
|
|
|
<div class="list-btns-container">
|
|
|
- <el-button type="primary" icon="Plus" @click="handleLogDialog">
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ icon="Plus"
|
|
|
+ v-hasPermi="['business:noCurrentReject:save']"
|
|
|
+ @click="handleLogDialog"
|
|
|
+ >
|
|
|
新增
|
|
|
</el-button>
|
|
|
<el-button
|
|
|
type="danger"
|
|
|
icon="Delete"
|
|
|
+ v-hasPermi="['business:noCurrentReject:remove']"
|
|
|
:disabled="ids.length === 0"
|
|
|
@click="handleDelete"
|
|
|
>
|
|
@@ -112,6 +118,7 @@
|
|
|
link
|
|
|
type="warning"
|
|
|
icon="Edit"
|
|
|
+ v-hasPermi="['business:noCurrentReject:edit']"
|
|
|
@click="handleShowTurnoverDialog(scope.row)"
|
|
|
>
|
|
|
编辑
|
|
@@ -121,9 +128,10 @@
|
|
|
link
|
|
|
type="danger"
|
|
|
icon="Delete"
|
|
|
+ v-hasPermi="['business:noCurrentReject:remove']"
|
|
|
@click="handleDelete(scope.row)"
|
|
|
>
|
|
|
- 编辑
|
|
|
+ 删除
|
|
|
</el-button>
|
|
|
<!-- <el-button
|
|
|
v-else
|