{"id":2270,"date":"2024-07-02T15:41:42","date_gmt":"2024-07-02T07:41:42","guid":{"rendered":"https:\/\/lansonplace.com\/mallofasia\/?page_id=2270"},"modified":"2024-07-02T15:41:43","modified_gmt":"2024-07-02T07:41:43","slug":"book-a-table","status":"publish","type":"page","link":"https:\/\/lansonplace.cn\/mallofasia\/tc\/book-a-table\/","title":{"rendered":"\u9884\u7ea6\u67e5\u8be2"},"content":{"rendered":"<script>\n\/\/----------------------------------------------------------\n\/\/------ JAVASCRIPT HOOK FUNCTIONS FOR GRAVITY FORMS -------\n\/\/----------------------------------------------------------\n\nif ( ! gform ) {\n\tdocument.addEventListener( 'gform_main_scripts_loaded', function() { gform.scriptsLoaded = true; } );\n\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', function() { gform.themeScriptsLoaded = true; } );\n\twindow.addEventListener( 'DOMContentLoaded', function() { gform.domLoaded = true; } );\n\n\tvar gform = {\n\t\tdomLoaded: false,\n\t\tscriptsLoaded: false,\n\t\tthemeScriptsLoaded: false,\n\t\tisFormEditor: () => typeof InitializeEditor === 'function',\n\n\t\t\/**\n\t\t * @deprecated 2.9 the use of initializeOnLoaded in the form editor context is deprecated.\n\t\t * @remove-in 3.1 this function will not check for gform.isFormEditor().\n\t\t *\/\n\t\tcallIfLoaded: function ( fn ) {\n\t\t\tif ( gform.domLoaded && gform.scriptsLoaded && ( gform.themeScriptsLoaded || gform.isFormEditor() ) ) {\n\t\t\t\tif ( gform.isFormEditor() ) {\n\t\t\t\t\tconsole.warn( 'The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.' );\n\t\t\t\t}\n\t\t\t\tfn();\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t},\n\n\t\t\/**\n\t\t * Call a function when all scripts are loaded\n\t\t *\n\t\t * @param function fn the callback function to call when all scripts are loaded\n\t\t *\n\t\t * @returns void\n\t\t *\/\n\t\tinitializeOnLoaded: function( fn ) {\n\t\t\tif ( ! gform.callIfLoaded( fn ) ) {\n\t\t\t\tdocument.addEventListener( 'gform_main_scripts_loaded', () => { gform.scriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\tdocument.addEventListener( 'gform\/theme\/scripts_loaded', () => { gform.themeScriptsLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t\twindow.addEventListener( 'DOMContentLoaded', () => { gform.domLoaded = true; gform.callIfLoaded( fn ); } );\n\t\t\t}\n\t\t},\n\n\t\thooks: { action: {}, filter: {} },\n\t\taddAction: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'action', action, callable, priority, tag );\n\t\t},\n\t\taddFilter: function( action, callable, priority, tag ) {\n\t\t\tgform.addHook( 'filter', action, callable, priority, tag );\n\t\t},\n\t\tdoAction: function( action ) {\n\t\t\tgform.doHook( 'action', action, arguments );\n\t\t},\n\t\tapplyFilters: function( action ) {\n\t\t\treturn gform.doHook( 'filter', action, arguments );\n\t\t},\n\t\tremoveAction: function( action, tag ) {\n\t\t\tgform.removeHook( 'action', action, tag );\n\t\t},\n\t\tremoveFilter: function( action, priority, tag ) {\n\t\t\tgform.removeHook( 'filter', action, priority, tag );\n\t\t},\n\t\taddHook: function( hookType, action, callable, priority, tag ) {\n\t\t\tif ( undefined == gform.hooks[hookType][action] ) {\n\t\t\t\tgform.hooks[hookType][action] = [];\n\t\t\t}\n\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\tif ( undefined == tag ) {\n\t\t\t\ttag = action + '_' + hooks.length;\n\t\t\t}\n\t\t\tif( priority == undefined ){\n\t\t\t\tpriority = 10;\n\t\t\t}\n\n\t\t\tgform.hooks[hookType][action].push( { tag:tag, callable:callable, priority:priority } );\n\t\t},\n\t\tdoHook: function( hookType, action, args ) {\n\n\t\t\t\/\/ splice args from object into array and remove first index which is the hook name\n\t\t\targs = Array.prototype.slice.call(args, 1);\n\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action], hook;\n\t\t\t\t\/\/sort by priority\n\t\t\t\thooks.sort(function(a,b){return a[\"priority\"]-b[\"priority\"]});\n\n\t\t\t\thooks.forEach( function( hookItem ) {\n\t\t\t\t\thook = hookItem.callable;\n\n\t\t\t\t\tif(typeof hook != 'function')\n\t\t\t\t\t\thook = window[hook];\n\t\t\t\t\tif ( 'action' == hookType ) {\n\t\t\t\t\t\thook.apply(null, args);\n\t\t\t\t\t} else {\n\t\t\t\t\t\targs[0] = hook.apply(null, args);\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\t\t\tif ( 'filter'==hookType ) {\n\t\t\t\treturn args[0];\n\t\t\t}\n\t\t},\n\t\tremoveHook: function( hookType, action, priority, tag ) {\n\t\t\tif ( undefined != gform.hooks[hookType][action] ) {\n\t\t\t\tvar hooks = gform.hooks[hookType][action];\n\t\t\t\thooks = hooks.filter( function(hook, index, arr) {\n\t\t\t\t\tvar removeHook = (undefined==tag||tag==hook.tag) && (undefined==priority||priority==hook.priority);\n\t\t\t\t\treturn !removeHook;\n\t\t\t\t} );\n\t\t\t\tgform.hooks[hookType][action] = hooks;\n\t\t\t}\n\t\t}\n\t};\n}\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gform_legacy_markup_wrapper gform-theme--no-framework' data-form-theme='legacy' data-form-index='0' id='gform_wrapper_6' style='display:none'>\n                        <div class='gform_heading'>\n                            <h3 class=\"gform_title\">FB Booking Form<\/h3>\n                            <p class='gform_description'><\/p>\n                        <\/div><form method='post' enctype='multipart\/form-data'  id='gform_6'  action='\/mallofasia\/tc\/wp-json\/wp\/v2\/pages\/2270' data-formid='6' novalidate data-trp-original-action=\"\/mallofasia\/tc\/wp-json\/wp\/v2\/pages\/2270\">\n                        <div class='gform-body gform_body'><ul id='gform_fields_6' class='gform_fields top_label form_sublabel_below description_below validation_below'><li id=\"field_6_1\" class=\"gfield gfield--type-radio gfield--type-choice gfield--input-type-radio gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-radio is-medium\"  ><label class='gfield_label gform-field-label' >Type of Inquiry<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_radio'><ul class='gfield_radio' id='input_6_1'>\n\t\t\t<li class='gchoice gchoice_6_1_0'>\n\t\t\t\t<input name='input_1' type='radio' value='general-enquiry' checked='checked' id='choice_6_1_0'    \/>\n\t\t\t\t<label for='choice_6_1_0' id='label_6_1_0' class='gform-field-label gform-field-label--type-inline'>\u9910\u5ef3\u7504\u9078<\/label>\n\t\t\t<\/li><\/ul><\/div><\/li><li id=\"field_6_2\" class=\"gfield gfield--type-select gfield--input-type-select gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-select is-large\"  ><label class='gfield_label gform-field-label' for='input_6_2'>Outlet<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_2' id='input_6_2' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='CYAN Modern Kitchen' >CYAN \u73fe\u4ee3\u5eda\u623f<\/option><\/select><\/div><\/li><li id=\"field_6_14\" class=\"gfield gfield--type-date gfield--input-type-date gfield--input-type-datepicker gfield--datepicker-no-icon gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-date is-large\"  ><label class='gfield_label gform-field-label' for='input_6_14'>Date<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_date'>\n                            <input name='input_14' id='input_6_14' type='text' value='' class='datepicker gform-datepicker mdy datepicker_no_icon gdatepicker-no-icon'   placeholder='mm\/dd\/yyyy' aria-describedby=\"input_6_14_date_format\" aria-invalid=\"false\" aria-required=\"true\"\/>\n                            <span id='input_6_14_date_format' class='screen-reader-text'>\u6708\/\u65e5\/\u5e74<\/span>\n                        <\/div>\n                        <input type='hidden' id='gforms_calendar_icon_input_6_14' class='gform_hidden' value='https:\/\/lansonplace.cn\/mallofasia\/wp-content\/plugins\/gravityforms\/images\/datepicker\/datepicker.svg'\/><\/li><li id=\"field_6_15\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-select is-large\"  ><label class='gfield_label gform-field-label' for='input_6_15'>Section<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_15' id='input_6_15' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Lunch Buffet : 12nn - 2:30pm\u200b' >Lunch Buffet : 12nn &#8211; 2:30pm\u200b<\/option><option value='Dinner Buffet : 6:00pm-10:30pm\u200b' >Dinner Buffet : 6:00pm-10:30pm\u200b<\/option><\/select><\/div><\/li><li id=\"field_6_16\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-select is-large\"  ><label class='gfield_label gform-field-label' for='input_6_16'>Section<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_16' id='input_6_16' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Afternoon Tea' >Afternoon Tea<\/option><\/select><\/div><\/li><li id=\"field_6_12\" class=\"gfield gfield--type-select gfield--input-type-select gfield--width-third gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-select is-large\"  ><label class='gfield_label gform-field-label' for='input_6_12'>\u7a31\u8b02<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_select'><select name='input_12' id='input_6_12' class='large gfield_select'    aria-required=\"true\" aria-invalid=\"false\" ><option value='Mr.' >\u5148\u751f<\/option><option value='Mrs.' >\u592a\u592a<\/option><option value='Miss.' >\u5c0f\u59d0<\/option><option value='Ms.' >\u5973\u58eb<\/option><\/select><\/div><\/li><li id=\"field_6_3\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-text is-large\"  ><label class='gfield_label gform-field-label' for='input_6_3'>\u540d\u5b57<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_3' id='input_6_3' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_6_13\" class=\"gfield gfield--type-text gfield--input-type-text gfield--width-third gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-text is-large\"  ><label class='gfield_label gform-field-label' for='input_6_13'>\u59d3\u6c0f<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_text'><input name='input_13' id='input_6_13' type='text' value='' class='large'     aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_6_4\" class=\"gfield gfield--type-email gfield--input-type-email gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-email is-large\"  ><label class='gfield_label gform-field-label' for='input_6_4'>\u96fb\u5b50\u90f5\u4ef6<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_4' id='input_6_4' type='email' value='' class='large'    aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/li><li id=\"field_6_5\" class=\"gfield gfield--type-phone gfield--input-type-phone gfield--width-full gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-phone is-large\"  ><label class='gfield_label gform-field-label' for='input_6_5'>Telephone<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_phone'><input name='input_5' id='input_6_5' type='tel' value='' class='large'   aria-required=\"true\" aria-invalid=\"false\"   \/><\/div><\/li><li id=\"field_6_6\" class=\"gfield gfield--type-textarea gfield--input-type-textarea gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-textarea is-large\"  ><label class='gfield_label gform-field-label' for='input_6_6'>\u54a8\u8a62\u5167\u5bb9<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_textarea'><textarea name='input_6' id='input_6_6' class='textarea large'     aria-required=\"true\" aria-invalid=\"false\"   rows='10' cols='50'><\/textarea><\/div><\/li><li id=\"field_6_7\" class=\"gfield gfield--type-consent gfield--type-choice gfield--input-type-consent gfield_contains_required field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible is-consent is-medium\"  ><label class='gfield_label gform-field-label gfield_label_before_complex' >\u79c1\u96b1\u653f\u7b56<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_asterisk\">*<\/span><\/span><\/label><div class='ginput_container ginput_container_consent'><input name='input_7.1' id='input_6_7_1' type='checkbox' value='1'   aria-required=\"true\" aria-invalid=\"false\"   \/> <label class=\"gform-field-label gform-field-label--type-inline gfield_consent_label\" for='input_6_7_1' >I agree to the&#038;nbsp<a href=\"https:\/\/lansonplace.cn\/mallofasia\/tc\/privacy-policy\/\" target=\"_blank\">\u79c1\u96b1\u653f\u7b56<\/a>&#038;nbspof Lanson Place and all of its locations.<\/label><input type='hidden' name='input_7.2' value='I agree to the&amp;nbsp&lt;a href=&quot;https:\/\/lansonplace.cn\/privacy-policy\/&quot; target=&quot;_blank&quot;&gt;Privacy Policy&lt;\/a&gt;&amp;nbspof Lanson Place and all of its locations.' class='gform_hidden' \/><input type='hidden' name='input_7.3' value='4' class='gform_hidden' \/><\/div><\/li><li id=\"field_6_17\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_6_17'>\u96fb\u5b50\u90f5\u4ef6<\/label><div class='ginput_container'><input name='input_17' id='input_6_17' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_6_17'>\u6b64\u6b04\u4f4d\u7528\u4f5c\u9a57\u8b49\u586b\u5beb\u7684\u8cc7\u6599\u662f\u5426\u6b63\u78ba\uff0c\u8acb\u52ff\u4fee\u6539\u3002<\/div><\/li><\/ul><\/div>\n        <div class='gform-footer gform_footer top_label'> <input type='submit' id='gform_submit_button_6' class='gform_button button' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' value='Book Now'  \/> \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_6' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_6' id='gform_theme_6' value='legacy' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_6' id='gform_style_settings_6' value='{&quot;inputPrimaryColor&quot;:&quot;#204ce5&quot;}' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_6' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='6' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_6' value='WyJ7XCIxMlwiOltcImQwODg4M2ExMTgzZWI2NTFmYzFmMjA5NWNhMWQxOWY1XCIsXCJmODhjYjliOWM0OWNmNjU3MjZjMTFiNDYxOGFhMjc4YVwiLFwiZjdlYTliMjNiMzI3N2FmNjQyZjIxYzhmMDk5ZmYxMDlcIixcImFkZWI2ODM1OGUxMmQzYzUyNzI3ZTBjYzVlNGQ1MThjXCJdLFwiNy4xXCI6XCIwNzgwNWQzYjU5ODJiMWExMGY4NzJmZWJhNTg5YTU0NFwiLFwiNy4yXCI6XCI4YWE1ZmUxOTYxYTUxZWRkOTgzNmJkYzE4NzU0N2U2ZlwiLFwiNy4zXCI6XCI5NDZkY2YxMjY5YjI4MWZhN2ZiZjNhZGQ0YzE4NWQ1ZlwifSIsIjFjNzc3NzJiYzJhODU0Y2Q2YTE1MDNjNDEzNGUxZjc5Il0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_6' id='gform_target_page_number_6' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_6' id='gform_source_page_number_6' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <input type=\"hidden\" name=\"trp-form-language\" value=\"tc\"\/><\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 6, 'https:\/\/lansonplace.cn\/mallofasia\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_6').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_6');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_6').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){form_content.find('form').css('opacity', 0);jQuery('#gform_wrapper_6').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_6').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_6').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_6').val();gformInitSpinner( 6, 'https:\/\/lansonplace.cn\/mallofasia\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [6, current_page]);window['gf_submitting_6'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_6').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [6]);window['gf_submitting_6'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_6').text());}else{jQuery('#gform_6').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"6\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_6\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_6\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_6\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 6, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-2270","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Book a Table - Lanson Place Mall Of Asia<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lansonplace.cn\/mallofasia\/tc\/book-a-table\/\" \/>\n<meta property=\"og:locale\" content=\"zh_HK\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Book a Table - Lanson Place Mall Of Asia\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lansonplace.cn\/mallofasia\/tc\/book-a-table\/\" \/>\n<meta property=\"og:site_name\" content=\"Lanson Place Mall Of Asia\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-02T07:41:43+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/\",\"url\":\"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/\",\"name\":\"Book a Table - Lanson Place Mall Of Asia\",\"isPartOf\":{\"@id\":\"https:\/\/lansonplace.cn\/mallofasia\/#website\"},\"datePublished\":\"2024-07-02T07:41:42+00:00\",\"dateModified\":\"2024-07-02T07:41:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/#breadcrumb\"},\"inLanguage\":\"zh-HK\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/lansonplace.cn\/mallofasia\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Book a Table\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/lansonplace.cn\/mallofasia\/#website\",\"url\":\"https:\/\/lansonplace.cn\/mallofasia\/\",\"name\":\"Lanson Place Mall Of Asia\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/lansonplace.cn\/mallofasia\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/lansonplace.cn\/mallofasia\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-HK\"},{\"@type\":[\"Organization\",\"Place\"],\"@id\":\"https:\/\/lansonplace.cn\/mallofasia\/#organization\",\"name\":\"Lanson Place Mall Of Asia\",\"url\":\"https:\/\/lansonplace.cn\/mallofasia\/\",\"logo\":{\"@id\":\"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/#local-main-organization-logo\"},\"image\":{\"@id\":\"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/#local-main-organization-logo\"},\"openingHoursSpecification\":[{\"@type\":\"OpeningHoursSpecification\",\"dayOfWeek\":[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],\"opens\":\"09:00\",\"closes\":\"17:00\"}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-HK\",\"@id\":\"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/#local-main-organization-logo\",\"url\":\"https:\/\/lansonplace.cn\/mallofasia\/wp-content\/uploads\/sites\/10\/lansoncenter.svg\",\"contentUrl\":\"https:\/\/lansonplace.cn\/mallofasia\/wp-content\/uploads\/sites\/10\/lansoncenter.svg\",\"width\":100,\"height\":100,\"caption\":\"Lanson Place Mall Of Asia\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Book a Table - Lanson Place Mall Of Asia","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lansonplace.cn\/mallofasia\/tc\/book-a-table\/","og_locale":"zh_HK","og_type":"article","og_title":"Book a Table - Lanson Place Mall Of Asia","og_url":"https:\/\/lansonplace.cn\/mallofasia\/tc\/book-a-table\/","og_site_name":"Lanson Place Mall Of Asia","article_modified_time":"2024-07-02T07:41:43+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/","url":"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/","name":"Book a Table - Lanson Place Mall Of Asia","isPartOf":{"@id":"https:\/\/lansonplace.cn\/mallofasia\/#website"},"datePublished":"2024-07-02T07:41:42+00:00","dateModified":"2024-07-02T07:41:43+00:00","breadcrumb":{"@id":"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/#breadcrumb"},"inLanguage":"zh-HK","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lansonplace.cn\/mallofasia\/"},{"@type":"ListItem","position":2,"name":"Book a Table"}]},{"@type":"WebSite","@id":"https:\/\/lansonplace.cn\/mallofasia\/#website","url":"https:\/\/lansonplace.cn\/mallofasia\/","name":"Lanson Place Mall Of Asia","description":"","publisher":{"@id":"https:\/\/lansonplace.cn\/mallofasia\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lansonplace.cn\/mallofasia\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-HK"},{"@type":["Organization","Place"],"@id":"https:\/\/lansonplace.cn\/mallofasia\/#organization","name":"Lanson Place Mall Of Asia","url":"https:\/\/lansonplace.cn\/mallofasia\/","logo":{"@id":"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/#local-main-organization-logo"},"image":{"@id":"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/#local-main-organization-logo"},"openingHoursSpecification":[{"@type":"OpeningHoursSpecification","dayOfWeek":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"opens":"09:00","closes":"17:00"}]},{"@type":"ImageObject","inLanguage":"zh-HK","@id":"https:\/\/lansonplace.cn\/mallofasia\/book-a-table\/#local-main-organization-logo","url":"https:\/\/lansonplace.cn\/mallofasia\/wp-content\/uploads\/sites\/10\/lansoncenter.svg","contentUrl":"https:\/\/lansonplace.cn\/mallofasia\/wp-content\/uploads\/sites\/10\/lansoncenter.svg","width":100,"height":100,"caption":"Lanson Place Mall Of Asia"}]}},"publishpress_future_action":{"enabled":false,"date":"2026-04-29 01:14:10","action":"change-status","newStatus":"draft","terms":[],"taxonomy":""},"publishpress_future_workflow_manual_trigger":{"enabledWorkflows":[]},"_links":{"self":[{"href":"https:\/\/lansonplace.cn\/mallofasia\/tc\/wp-json\/wp\/v2\/pages\/2270","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lansonplace.cn\/mallofasia\/tc\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/lansonplace.cn\/mallofasia\/tc\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/lansonplace.cn\/mallofasia\/tc\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lansonplace.cn\/mallofasia\/tc\/wp-json\/wp\/v2\/comments?post=2270"}],"version-history":[{"count":1,"href":"https:\/\/lansonplace.cn\/mallofasia\/tc\/wp-json\/wp\/v2\/pages\/2270\/revisions"}],"predecessor-version":[{"id":2271,"href":"https:\/\/lansonplace.cn\/mallofasia\/tc\/wp-json\/wp\/v2\/pages\/2270\/revisions\/2271"}],"wp:attachment":[{"href":"https:\/\/lansonplace.cn\/mallofasia\/tc\/wp-json\/wp\/v2\/media?parent=2270"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}