pull/781/head
zy 2025-05-28 22:45:37 +08:00
parent d52a93ab10
commit 62aa3b0efa
1 changed files with 7 additions and 7 deletions

View File

@ -236,7 +236,7 @@
type="primary"
@click="openFormEdit(scope.row)"
v-hasPermi="['crm:quotation:update']"
v-if="scope.row.auditStatus == 0"
v-if="scope.row.auditStatus == 0 || scope.row.auditStatus === 3"
>
编辑
</el-button>
@ -244,7 +244,7 @@
link
type="primary"
@click="handleProcessDetail(scope.row)"
v-if="scope.row.auditStatus != 0"
v-if="scope.row.auditStatus != 0 && scope.row.auditStatus != 3"
>
进度
</el-button>
@ -257,7 +257,7 @@
>
客户确认
</el-button> -->
<el-button
<!-- <el-button
link
type="primary"
@click="handleEnter(scope.row)"
@ -265,9 +265,9 @@
v-if="scope.row.auditStatus != 0 && scope.row.auditStatus != 2"
>
打印
</el-button>
</el-button> -->
<el-dropdown
v-if="(scope.row.auditStatus == 0 || scope.row.auditStatus == 2) && scope.row.confirmStatus == 0"
v-if="(scope.row.auditStatus == 0 || scope.row.auditStatus == 2 || scope.row.auditStatus === 3) && scope.row.confirmStatus == 0"
@command="(command) => handleCommand(command, scope.row)"
v-hasPermi="[
'crm:quotation:delete',
@ -281,7 +281,7 @@
<el-dropdown-menu>
<el-dropdown-item
command="handleSubmit"
v-if="checkPermi(['crm:contract:update']) && scope.row.auditStatus === 0"
v-if="checkPermi(['crm:contract:update']) && (scope.row.auditStatus === 0 || scope.row.auditStatus === 3)"
>
提交审核
</el-dropdown-item>
@ -299,7 +299,7 @@
</el-dropdown-item>
<el-dropdown-item
command="handleProcessDetail"
v-if="scope.row.auditStatus == 1"
v-if="scope.row.auditStatus == 1 || scope.row.auditStatus == 3"
>
进度
</el-dropdown-item>