bug 修复
This commit is contained in:
parent
9c34c1d929
commit
5edcd7a3bc
|
|
@ -240,7 +240,7 @@
|
|||
>
|
||||
<template slot-scope="scope">
|
||||
<span>{{
|
||||
scope.row.leaseApplyInfoList[0].remark || ' - '
|
||||
(scope.row.leaseApplyInfoList && scope.row.leaseApplyInfoList[0].remark) || ' - '
|
||||
}}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
|
@ -273,10 +273,10 @@
|
|||
v-hasPermi="['picking:auditing:sgb']"
|
||||
v-show="
|
||||
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 == '8' ||
|
||||
scope.row.leaseApplyInfoList[0].status == '9')
|
||||
scope.row.leaseApplyInfoList[0].status == '9'))
|
||||
"
|
||||
>审批</el-button
|
||||
>
|
||||
|
|
@ -302,11 +302,11 @@
|
|||
v-hasPermi="['picking:auditing:jjnb']"
|
||||
v-show="
|
||||
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 == '4' ||
|
||||
scope.row.leaseApplyInfoList[0].status == '2' ||
|
||||
scope.row.leaseApplyInfoList[0].status == '0')
|
||||
scope.row.leaseApplyInfoList[0].status == '0'))
|
||||
"
|
||||
>审批</el-button
|
||||
>
|
||||
|
|
@ -318,12 +318,12 @@
|
|||
v-hasPermi="['picking:auditing:tsnb']"
|
||||
v-show="
|
||||
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 == '4' ||
|
||||
scope.row.leaseApplyInfoList[0].status == '2' ||
|
||||
scope.row.leaseApplyInfoList[0].status == '9' ||
|
||||
scope.row.leaseApplyInfoList[0].status == '0')
|
||||
scope.row.leaseApplyInfoList[0].status == '0'))
|
||||
"
|
||||
>审批</el-button
|
||||
>
|
||||
|
|
|
|||
Loading…
Reference in New Issue