|
@@ -717,7 +717,7 @@ export default {
|
|
|
// 二次申诉
|
|
|
secondStatement: {
|
|
|
conditions: ({ row, index, column }) => {
|
|
|
- return row.isSecond == 'false' && row.websitResult == 'All' && row.status == 'OK'
|
|
|
+ return row.isSecond == false && row.websitResult == 'All' && row.status == 'OK'
|
|
|
},
|
|
|
click: ({ row, index, column }) => {
|
|
|
appraiseApplyApplyDetail({
|
|
@@ -741,7 +741,7 @@ export default {
|
|
|
// 信息部审核
|
|
|
InfoDepartmentAudit: {
|
|
|
conditions: ({ row, index, column }) => {
|
|
|
- return row.isSecond == 'false' && row.status == 'WAIT_CENTER'
|
|
|
+ return row.isSecond == false && row.status == 'WAIT_CENTER'
|
|
|
},
|
|
|
click: ({ row, index, column }) => {
|
|
|
appraiseApplyApplyDetail({
|
|
@@ -765,7 +765,7 @@ export default {
|
|
|
// 结算组审核
|
|
|
clearingSectionAudit: {
|
|
|
conditions: ({ row, index, column }) => {
|
|
|
- return row.isSecond == 'true' && row.status == 'WAIT_CENTER'
|
|
|
+ return row.isSecond == true && row.status == 'WAIT_CENTER'
|
|
|
},
|
|
|
click: ({ row, index, column }) => {
|
|
|
appraiseApplyApplyDetail({
|