This commit is contained in:
ljx
2025-08-27 20:02:31 +08:00
parent 2c9c72d714
commit 8d453efb07
2 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@
<el-form-item> <el-form-item>
<el-button <el-button
type="primary" type="primary"
:disabled="versionObj.status != 'draft'" :disabled="versionObj.status && versionObj.status != 'draft'"
@click="handleSave(null, 'all')" @click="handleSave(null, 'all')"
v-hasPermi="['tender:billofquantitiesLimitList:edit']" v-hasPermi="['tender:billofquantitiesLimitList:edit']"
>一键确定</el-button >一键确定</el-button
@ -57,7 +57,7 @@
icon="view" icon="view"
@click="handleViewInfo" @click="handleViewInfo"
v-hasPermi="['bidding:biddingLimitList:getVersionDetail']" v-hasPermi="['bidding:biddingLimitList:getVersionDetail']"
v-if="versionObj.status != 'draft'" v-if="versionObj.status && versionObj.status != 'draft'"
>查看流程</el-button >查看流程</el-button
> >
</el-form-item> </el-form-item>

View File

@ -38,7 +38,7 @@
<el-form-item> <el-form-item>
<el-button <el-button
type="primary" type="primary"
:disabled="reviewStatus != 'draft'" :disabled="reviewStatus && reviewStatus != 'draft'"
@click="handleSave(null, 'all')" @click="handleSave(null, 'all')"
v-hasPermi="['tender:billofquantitiesLimitList:edit']" v-hasPermi="['tender:billofquantitiesLimitList:edit']"
>一键确定</el-button >一键确定</el-button
@ -51,7 +51,7 @@
<el-button <el-button
type="warning" type="warning"
icon="view" icon="view"
v-if="reviewStatus != 'draft'" v-if="reviewStatus && reviewStatus != 'draft'"
@click="clickApprovalSheet()" @click="clickApprovalSheet()"
v-hasPermi="['tender:tenderPlanLimitList:getVersionDetail']" v-hasPermi="['tender:tenderPlanLimitList:getVersionDetail']"
>查看流程</el-button >查看流程</el-button