人员核对提醒按钮只需要pm显示
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-11-10 11:36:26 +08:00
parent 29e785243e
commit b56834e8ed
1 changed files with 6 additions and 5 deletions

View File

@ -23,8 +23,8 @@
<el-button type="primary" icon="el-icon-refresh-left" @click="handleReset"> <el-button type="primary" icon="el-icon-refresh-left" @click="handleReset">
{{ $t('common:button:reset') }} {{ $t('common:button:reset') }}
</el-button> </el-button>
<!-- 人员核对提醒 --> <!-- 人员核对提醒 -->
<el-button type="primary" @click="openCheckRemind"> <el-button type="primary" v-hasPermi="['trials:trials-panel:site:verifyEmail']" @click="openCheckRemind">
{{ $t('trials:site:button:checkRemind') }} {{ $t('trials:site:button:checkRemind') }}
</el-button> </el-button>
</el-form-item> </el-form-item>
@ -77,12 +77,13 @@
</el-button> </el-button>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="" min-width="150" fixed="right" :label="$t('common:action:action')" <el-table-column prop="" min-width="150" fixed="right" :label="$t('common:action:action')" show-overflow-tooltip
show-overflow-tooltip> v-if="hasPermi(['trials:trials-panel:site:updateEmail'])">
<template slot-scope="scope"> <template slot-scope="scope">
<!-- 详情 --> <!-- 详情 -->
<el-button icon="el-icon-message" circle :title="$t('trials:site:button:editEmail')" <el-button icon="el-icon-message" circle :title="$t('trials:site:button:editEmail')"
:disabled="!scope.row.IsHaveSiteSurveyRecord" @click="openSiteEmail(scope.row)" /> :disabled="!scope.row.IsHaveSiteSurveyRecord" v-hasPermi="['trials:trials-panel:site:updateEmail']"
@click="openSiteEmail(scope.row)" />
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>