|
@@ -47,7 +47,7 @@
|
|
|
|
|
|
|
|
<!-- 新增的 “盲注管理” 按钮 -->
|
|
<!-- 新增的 “盲注管理” 按钮 -->
|
|
|
<el-col :span="1.5">
|
|
<el-col :span="1.5">
|
|
|
- <el-button type="info" plain icon="Operation">
|
|
|
|
|
|
|
+ <el-button type="info" plain icon="Operation" v-hasPermi="['business:tournaments:manager']">
|
|
|
<router-link to="/business/structures">盲注表管理</router-link>
|
|
<router-link to="/business/structures">盲注表管理</router-link>
|
|
|
</el-button>
|
|
</el-button>
|
|
|
</el-col>
|
|
</el-col>
|
|
@@ -108,19 +108,19 @@
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="320">
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="320">
|
|
|
<template #default="scope">
|
|
<template #default="scope">
|
|
|
<div class="operation-buttons-vertical">
|
|
<div class="operation-buttons-vertical">
|
|
|
- <el-tooltip content="查看" placement="top">
|
|
|
|
|
|
|
+ <el-tooltip content="查看" placement="top" v-hasPermi="['business:tournaments:query']">
|
|
|
<el-button link type="primary" icon="View" @click="openAuditDialog(scope.row.id, 'view')">查看</el-button>
|
|
<el-button link type="primary" icon="View" @click="openAuditDialog(scope.row.id, 'view')">查看</el-button>
|
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
|
|
|
|
|
|
- <el-tooltip content="编辑" placement="top">
|
|
|
|
|
|
|
+ <el-tooltip content="编辑" placement="top" v-hasPermi="['business:tournaments:edit']">
|
|
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row, 'edit')">编辑</el-button>
|
|
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row, 'edit')">编辑</el-button>
|
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
|
|
|
|
|
|
- <el-tooltip content="复制" placement="top">
|
|
|
|
|
|
|
+ <el-tooltip content="复制" placement="top" v-hasPermi="['business:tournaments:copy']">
|
|
|
<el-button link type="primary" icon="Files" @click="handleCopy(scope.row)"> 复制 </el-button>
|
|
<el-button link type="primary" icon="Files" @click="handleCopy(scope.row)"> 复制 </el-button>
|
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
|
|
|
|
|
|
- <el-tooltip content="领奖审核" placement="top">
|
|
|
|
|
|
|
+ <el-tooltip content="领奖审核" placement="top" v-hasPermi="['business:tournaments:audit']">
|
|
|
<el-button link type="primary" icon="DocumentChecked" @click="openAuditDialog(scope.row.id, 'audit')">领奖审核</el-button>
|
|
<el-button link type="primary" icon="DocumentChecked" @click="openAuditDialog(scope.row.id, 'audit')">领奖审核</el-button>
|
|
|
</el-tooltip>
|
|
</el-tooltip>
|
|
|
</div>
|
|
</div>
|