pull/781/head
parent
d52a93ab10
commit
62aa3b0efa
|
|
@ -236,7 +236,7 @@
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="openFormEdit(scope.row)"
|
@click="openFormEdit(scope.row)"
|
||||||
v-hasPermi="['crm:quotation:update']"
|
v-hasPermi="['crm:quotation:update']"
|
||||||
v-if="scope.row.auditStatus == 0"
|
v-if="scope.row.auditStatus == 0 || scope.row.auditStatus === 3"
|
||||||
>
|
>
|
||||||
编辑
|
编辑
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
@ -244,7 +244,7 @@
|
||||||
link
|
link
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="handleProcessDetail(scope.row)"
|
@click="handleProcessDetail(scope.row)"
|
||||||
v-if="scope.row.auditStatus != 0"
|
v-if="scope.row.auditStatus != 0 && scope.row.auditStatus != 3"
|
||||||
>
|
>
|
||||||
进度
|
进度
|
||||||
</el-button>
|
</el-button>
|
||||||
|
|
@ -257,7 +257,7 @@
|
||||||
>
|
>
|
||||||
客户确认
|
客户确认
|
||||||
</el-button> -->
|
</el-button> -->
|
||||||
<el-button
|
<!-- <el-button
|
||||||
link
|
link
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="handleEnter(scope.row)"
|
@click="handleEnter(scope.row)"
|
||||||
|
|
@ -265,9 +265,9 @@
|
||||||
v-if="scope.row.auditStatus != 0 && scope.row.auditStatus != 2"
|
v-if="scope.row.auditStatus != 0 && scope.row.auditStatus != 2"
|
||||||
>
|
>
|
||||||
打印
|
打印
|
||||||
</el-button>
|
</el-button> -->
|
||||||
<el-dropdown
|
<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)"
|
@command="(command) => handleCommand(command, scope.row)"
|
||||||
v-hasPermi="[
|
v-hasPermi="[
|
||||||
'crm:quotation:delete',
|
'crm:quotation:delete',
|
||||||
|
|
@ -281,7 +281,7 @@
|
||||||
<el-dropdown-menu>
|
<el-dropdown-menu>
|
||||||
<el-dropdown-item
|
<el-dropdown-item
|
||||||
command="handleSubmit"
|
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>
|
</el-dropdown-item>
|
||||||
|
|
@ -299,7 +299,7 @@
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
<el-dropdown-item
|
<el-dropdown-item
|
||||||
command="handleProcessDetail"
|
command="handleProcessDetail"
|
||||||
v-if="scope.row.auditStatus == 1"
|
v-if="scope.row.auditStatus == 1 || scope.row.auditStatus == 3"
|
||||||
>
|
>
|
||||||
进度
|
进度
|
||||||
</el-dropdown-item>
|
</el-dropdown-item>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue