bug 修复

This commit is contained in:
bb_pan 2025-04-15 13:25:29 +08:00
parent 9c34c1d929
commit 5edcd7a3bc
1 changed files with 7 additions and 7 deletions

View File

@ -240,7 +240,7 @@
> >
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ <span>{{
scope.row.leaseApplyInfoList[0].remark || ' - ' (scope.row.leaseApplyInfoList && scope.row.leaseApplyInfoList[0].remark) || ' - '
}}</span> }}</span>
</template> </template>
</el-table-column> </el-table-column>
@ -273,10 +273,10 @@
v-hasPermi="['picking:auditing:sgb']" v-hasPermi="['picking:auditing:sgb']"
v-show=" v-show="
Number(scope.row.examineStatusId) == 31 && Number(scope.row.examineStatusId) == 31 &&
(scope.row.leaseApplyInfoList[0].status == '0' || (scope.row.leaseApplyInfoList && (scope.row.leaseApplyInfoList[0].status == '0' ||
scope.row.leaseApplyInfoList[0].status == '7' || scope.row.leaseApplyInfoList[0].status == '7' ||
scope.row.leaseApplyInfoList[0].status == '8' || scope.row.leaseApplyInfoList[0].status == '8' ||
scope.row.leaseApplyInfoList[0].status == '9') scope.row.leaseApplyInfoList[0].status == '9'))
" "
>审批</el-button >审批</el-button
> >
@ -302,11 +302,11 @@
v-hasPermi="['picking:auditing:jjnb']" v-hasPermi="['picking:auditing:jjnb']"
v-show=" v-show="
Number(scope.row.examineStatusId) == 32 && Number(scope.row.examineStatusId) == 32 &&
(scope.row.leaseApplyInfoList[0].status == '5' || (scope.row.leaseApplyInfoList && (scope.row.leaseApplyInfoList[0].status == '5' ||
scope.row.leaseApplyInfoList[0].status == '7' || scope.row.leaseApplyInfoList[0].status == '7' ||
scope.row.leaseApplyInfoList[0].status == '4' || scope.row.leaseApplyInfoList[0].status == '4' ||
scope.row.leaseApplyInfoList[0].status == '2' || scope.row.leaseApplyInfoList[0].status == '2' ||
scope.row.leaseApplyInfoList[0].status == '0') scope.row.leaseApplyInfoList[0].status == '0'))
" "
>审批</el-button >审批</el-button
> >
@ -318,12 +318,12 @@
v-hasPermi="['picking:auditing:tsnb']" v-hasPermi="['picking:auditing:tsnb']"
v-show=" v-show="
Number(scope.row.examineStatusId) == 32 && Number(scope.row.examineStatusId) == 32 &&
(scope.row.leaseApplyInfoList[0].status == '5' || (scope.row.leaseApplyInfoList && (scope.row.leaseApplyInfoList[0].status == '5' ||
scope.row.leaseApplyInfoList[0].status == '7' || scope.row.leaseApplyInfoList[0].status == '7' ||
scope.row.leaseApplyInfoList[0].status == '4' || scope.row.leaseApplyInfoList[0].status == '4' ||
scope.row.leaseApplyInfoList[0].status == '2' || scope.row.leaseApplyInfoList[0].status == '2' ||
scope.row.leaseApplyInfoList[0].status == '9' || scope.row.leaseApplyInfoList[0].status == '9' ||
scope.row.leaseApplyInfoList[0].status == '0') scope.row.leaseApplyInfoList[0].status == '0'))
" "
>审批</el-button >审批</el-button
> >