This commit is contained in:
zhenorzz 2022-05-20 17:38:42 +08:00
parent 66219fc55a
commit ecacce6990

View File

@ -157,13 +157,17 @@
<Dropdown <Dropdown
v-else v-else
:permissions="[pms.DeployProject]" :permissions="[pms.DeployProject]"
split-button :split-button="scope.row.review === 1 ? false : true"
trigger="click" trigger="click"
type="primary" type="primary"
@click="publish(scope.row)" @click="publish(scope.row)"
@command="(funcName: string) => commandFunc[funcName](scope.row)" @command="(funcName: string) => commandFunc[funcName](scope.row)"
> >
{{ scope.row.review === 1 ? $t('submit') : $t('deploy') }} <el-button v-if="scope.row.review === 1" type="primary">
{{ $t('submit') }}
<el-icon class="el-icon--right"><arrow-down /></el-icon>
</el-button>
<span v-else>{{ $t('deploy') }}</span>
<template #dropdown> <template #dropdown>
<el-dropdown-menu> <el-dropdown-menu>
<el-dropdown-item :command="'handleCommitCommand'"> <el-dropdown-item :command="'handleCommitCommand'">