diff --git a/gringotts-frontend/pages/index/tab-check.js b/gringotts-frontend/pages/index/tab-check.js index eb9bcb3..d0af8c4 100644 --- a/gringotts-frontend/pages/index/tab-check.js +++ b/gringotts-frontend/pages/index/tab-check.js @@ -31,7 +31,7 @@ export function tabCheck() { stringField('modifiedUsername', '最后操作人', 100), operationField('操作', undefined, [ { - visibleOn: `\${type === 'CONFIRMATION' && state === 'CHECKING'}`, + visibleOn: "${type === 'CONFIRMATION' && state === 'CHECKING'}", type: 'action', label: '处理', level: 'link', @@ -58,14 +58,14 @@ export function tabCheck() { ), }, { - visibleOn: `\${type === 'CONFIRMATION' && state !== NORMAL}`, + visibleOn: "${type === 'CONFIRMATION' && state !== NORMAL}", type: 'action', label: '查看', level: 'link', ...confirmationDetailDialog('parameters.confirmationId'), }, { - visibleOn: `\${type === 'AUTHENTICATION' && state === 'CHECKING'}`, + visibleOn: "${type === 'AUTHENTICATION' && state === 'CHECKING'}", type: 'action', label: '处理', level: 'link', @@ -92,14 +92,14 @@ export function tabCheck() { ), }, { - visibleOn: `\${type === 'AUTHENTICATION' && state !== NORMAL}`, + visibleOn: "${type === 'AUTHENTICATION' && state !== NORMAL}", type: 'action', label: '查看', level: 'link', ...authenticationDetailDialog('parameters.authenticationId'), }, { - visibleOn: `\${type === 'MARKET' && state === 'CHECKING'}`, + visibleOn: "${type === 'MARKET' && state === 'CHECKING'}", type: 'action', label: '处理', level: 'link', @@ -126,7 +126,7 @@ export function tabCheck() { ), }, { - visibleOn: `\${type === 'MARKET' && state !== NORMAL}`, + visibleOn: "${type === 'MARKET' && state !== NORMAL}", type: 'action', label: '查看', level: 'link',