|
@@ -115,7 +115,7 @@ export default {
|
|
|
},
|
|
|
edit: {
|
|
|
conditions: ({ row, index, column }) => {
|
|
|
- return row.flag === 'SAVE' && row.isRecheck === 'ON'
|
|
|
+ return row.flag === 'SAVE' && row.isRecheck === 'NO'
|
|
|
},
|
|
|
click: ({ row, index, column }) => {
|
|
|
this.addOrEdit('edit', row.purchaseId)
|
|
@@ -123,7 +123,7 @@ export default {
|
|
|
},
|
|
|
submit: {
|
|
|
conditions: ({ row, index, column }) => {
|
|
|
- return row.flag === 'SAVE' && row.isRecheck === 'ON'
|
|
|
+ return row.flag === 'SAVE' && row.isRecheck === 'NO'
|
|
|
},
|
|
|
click: ({ row, index, column }) => {
|
|
|
this.submitSheet(row.purchaseId)
|
|
@@ -132,7 +132,7 @@ export default {
|
|
|
del: {
|
|
|
prompt: '确定删除吗?',
|
|
|
conditions: ({ row, index, column }) => {
|
|
|
- return row.flag === 'SAVE' && row.isRecheck === 'ON'
|
|
|
+ return row.flag === 'SAVE' && row.isRecheck === 'NO'
|
|
|
},
|
|
|
click: ({ row, index, column }) => {
|
|
|
this.delSheet(row.purchaseId)
|
|
@@ -141,7 +141,7 @@ export default {
|
|
|
revoke: {
|
|
|
prompt: '确定撤消吗?',
|
|
|
conditions: ({ row, index, column }) => {
|
|
|
- return row.flag === 'SUBMIT' && row.isRecheck === 'ON'
|
|
|
+ return row.flag === 'SUBMIT' && row.isRecheck === 'NO'
|
|
|
},
|
|
|
click: ({ row, index, column }) => {
|
|
|
this.revokeSheet(row.purchaseId)
|