{"version":"1.0","provider_name":"Registrar","provider_url":"https:\/\/legacy.registrarcorp.com\/zh\/","author_name":"Mason Grandusky","author_url":"https:\/\/legacy.registrarcorp.com\/zh\/author\/mgrandusky\/","title":"2021\u8d22\u5e74\u4e94\u5927\u9a8c\u5382\u8fdd\u89c4\u9879","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"3UxWF5V3JW\"><a href=\"https:\/\/legacy.registrarcorp.com\/zh\/top-5-inspection-violations-in-fy-2021\/\">2021\u8d22\u5e74\u4e94\u5927\u9a8c\u5382\u8fdd\u89c4\u9879<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/zh\/top-5-inspection-violations-in-fy-2021\/embed\/#?secret=3UxWF5V3JW\" width=\"600\" height=\"338\" title=\"&#8220;2021\u8d22\u5e74\u4e94\u5927\u9a8c\u5382\u8fdd\u89c4\u9879&#8221; &#8212; Registrar\" data-secret=\"3UxWF5V3JW\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/legacy.registrarcorp.com\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/legacy.registrarcorp.com\/wp-content\/uploads\/2022\/01\/Inspection-e1642193986645.png","thumbnail_width":937,"thumbnail_height":624,"description":"\u7f8e\u56fd\u98df\u54c1\u836f\u54c1\u7ba1\u7406\u5c40\uff08FDA\uff09\u53d1\u5e03\u4e86\u51762021\u8d22\u5e74\u7684\u5b9e\u5730\u9a8c\u5382\u7ed3\u679c\u6570\u636e\u3002\u8be5\u6570\u636e\u516c\u5e03\u4e86FDA\u57282020\u5e7410\u6708\u52302021\u5e749\u6708\u671f\u95f4\u5217\u4e3e\u7684\u98df\u54c1\u4f01\u4e1a\u5b9e\u5730\u9a8c\u5382\u8fdd\u89c4\u9879\u7684\u9891\u7387\u3002 \u7ee7\u7eed\u9605\u8bfb\u4ee5\u8be6\u7ec6\u4e86\u89e32021\u8d22\u5e74\u4e94\u5927\u8fdd\u89c4\u9879\u3002 FSVP\u8fdd\u89c4 \u6839\u636e\u98df\u54c1\u5b89\u5168\u73b0\u4ee3\u5316\u6cd5\u6848\uff0cFDA\u8981\u6c42\u5927\u591a\u6570\u98df\u54c1\u8fdb\u53e3\u5546\u9700\u8981\u4e3a\u5176\u4f9b\u5e94\u5546\u5efa\u7acb\u5e76\u6267\u884c\u5916\u56fd\u4f9b\u5e94\u5546\u9a8c\u8bc1\u8ba1\u5212\uff08\u5373FSVP\uff09\u3002\u8fd9\u4e00\u8981\u6c42\u6709\u52a9\u4e8eFDA\u9a8c\u8bc1\u5176\u56fd\u5916\u7684\u4f9b\u5e94\u5546\u662f\u5426\u662f\u5728\u7b26\u5408FDA\u98df\u54c1\u5b89\u5168\u6cd5\u89c4\u7684\u6761\u4ef6\u4e0b\u8fdb\u884c\u98df\u54c1\u751f\u4ea7\u52a0\u5de5\u7684\u3002 \u5728\u8fdb\u884cFSVP\u68c0\u67e5\u671f\u95f4\uff0cFDA\u8981\u6c42\u8fdb\u53e3\u5546\u63d0\u4f9b\u5b8c\u6574\u7684FSVP\uff0c\u4ee5\u8bc1\u660e\u5176\u4f9b\u5e94\u5546\u7684\u98df\u54c1\u5b89\u5168\u3002\u57282021\u8d22\u5e74\uff0cFDA\u516c\u5f00\u4e86796\u5bb6\u4e0d\u7b26\u5408FSVP\u8981\u6c42\u7684\u4f01\u4e1a\uff0c\u76f8\u8f83\u4e8e2020\u8d22\u5e74\u4e0a\u6da8\u4e86\u8fd155%\u3002FSVP\u8fdd\u89c4\u9879\u8fde\u7eed\u56db\u5e74\u6210\u4e3a\u88ab\u516c\u5e03\u6700\u591a\u6b21\u7684\u8fdd\u89c4\u9879\u3002 Registrar Corp\u53ef\u4ee5\u534f\u52a9\u5efa\u7acb\u548c\u7ef4\u62a4FSVP\u4ee5\u901a\u8fc7FDA\u9488\u5bf9FSVP\u7684\u68c0\u67e5\u3002\u6211\u4eec\u8fd8\u63d0\u4f9b100%\u7ebf\u4e0a\u3001\u53ef\u81ea\u5b9a\u8fdb\u5ea6\u7684FSVP\u5728\u7ebf\u57f9\u8bad\u8bfe\u7a0b\u3002 \u866b\u5bb3\u9632\u6cbb \u5728\u5b9e\u5730\u67e5\u9a8c\u671f\u95f4\uff0cFDA\u4f1a\u67e5\u627e\u6f5c\u5728\u7684\u866b\u5bb3\u75d5\u8ff9\u3002\u57282021\u8d22\u5e74\uff0cFDA\u516c\u5e03\u4e8688\u5bb6\u672a\u80fd\u4f7f\u7528\u6709\u6548\u65b9\u5f0f\u8fdb\u884c\u866b\u5bb3\u63a7\u5236\u7684\u4f01\u4e1a\u3002\u8fd9\u4efd\u540d\u5355\u540c\u6837\u8868\u660e\u4e86\u9519\u8bef\u4f7f\u7528\u6740\u866b\u5242\u53ef\u80fd\u4f1a\u5bfc\u81f4\u5176\u6b8b\u7559\u5728\u98df\u54c1\u3001\u98df\u54c1\u63a5\u89e6\u6750\u6599\u8868\u9762\uff0c\u4ee5\u53ca\u98df\u54c1\u5305\u88c5\u6750\u6599\u4e2d\u3002 \u60a8\u77e5\u9053FDA\u7684\u866b\u5bb3\u63a7\u5236\u6cd5\u89c4\u7684\u5177\u4f53\u5185\u5bb9\u5417\uff1f\u60a8\u53ef\u4ee5\u901a\u8fc7\u6211\u4eec\u7684RegiLearn\u8bfe\u7a0b\u6765\u4e86\u89e3\u866b\u5bb3\u63a7\u5236\u7684\u77e5\u8bc6\u3002 \u751f\u4ea7\u63a7\u5236 \u57282021\u8d22\u5e74\u7684\u98df\u54c1\u4f01\u4e1a\u516c\u5f00\u540d\u5355\u4e0a\uff0c\u9488\u5bf9\u751f\u4ea7\u3001\u52a0\u5de5\u3001\u5305\u88c5\u548c\u50a8\u5b58\u65b9\u9762\u7684\u63a7\u5236\u63aa\u65bd\u8fdd\u89c4\u9879\u536084\u4f8b\u3002\u8be5\u540d\u5355\u610f\u5473\u7740\u8fd9\u4e9b\u4f01\u4e1a\u6ca1\u6709\u5728\u5c06\u6f5c\u5728\u7684\u5fae\u751f\u7269\u751f\u957f\u3001\u8fc7\u654f\u6e90\u4ea4\u53c9\u6c61\u67d3\u3001\u6216\u8005\u98df\u7269\u6c61\u67d3\u548c\u53d8\u8d28\u7684\u51e0\u7387\u964d\u5230\u6700\u4f4e\u7684\u6761\u4ef6\u4e0b\u8fdb\u884c\u64cd\u4f5c\u3002FDA\u8981\u6c42\u4f01\u4e1a\u5728\u5904\u7406\u98df\u54c1\u65f6\u63d0\u4f9b\u53d7\u63a7\u7684\u73af\u5883\uff0c\u4ee5\u907f\u514d\u5bf9\u6d88\u8d39\u8005\u9020\u6210\u6f5c\u5728\u7684\u5065\u5eb7\u98ce\u9669\u3002 \u901a\u8fc7\u6211\u4eecRegiLearn\u4e2d\u5173\u4e8e\u674e\u65af\u7279\u83cc\u548c\u9884\u9632\u6c61\u67d3\u7b49\u8bfe\u7a0b\u52a0\u5f3a\u60a8\u5bf9\u4e8e\u751f\u4ea7\u63a7\u5236\u7684\u7406\u89e3\u3002\u60a8\u4e5f\u53ef\u4ee5\u5b8c\u6210\u6211\u4eec\u7684\u5728\u7ebf\u8fc7\u654f\u6e90\u57f9\u8bad\uff0c\u4e86\u89e3\u8fc7\u654f\u6e90\u7684\u57fa\u7840\u77e5\u8bc6\u548c\u63a7\u5236\u63aa\u65bd\u3002 \u5371\u5bb3\u5206\u6790 FDA\u8981\u6c42\u5927\u591a\u6570\u98df\u54c1\u4f01\u4e1a\u8bc6\u522b\u5176\u5de5\u5382\u53ef\u80fd\u53d1\u751f\u7684\u751f\u7269\u3001\u5316\u5b66\u548c\u7269\u7406\u5371\u5bb3\uff0c\u5e76\u9488\u5bf9\u8fd9\u4e9b\u5371\u5bb3\u5efa\u7acb\u9884\u9632\u63a7\u5236\u63aa\u65bd\u3002\u4f8b\u5982\uff0c\u4f01\u4e1a\u53ef\u4ee5\u786e\u5b9a\u75c5\u539f\u4f53\u5728\u6d88\u706d\u5b83\u4eec\u7684\u8fc7\u7a0b\u4e2d\u5b58\u6d3b\u7684\u53ef\u80fd\u6027\u3002\u57282021\u8d22\u5e74\uff0cFDA\u516c\u5e03\u4e8683\u4f8b\u6ca1\u80fd\u63d0\u4f9b\u5145\u8db3\u7684\u5371\u5bb3\u5206\u6790\u7684\u4f01\u4e1a\u3002 \u8d35\u53f8\u662f\u5426\u5df2\u6709\u4e00\u4e2aPCQI\uff08\u9884\u9632\u63a7\u5236\u5408\u683c\u4eba\u5458\uff09\u6765\u8fdb\u884c\u5371\u5bb3\u5206\u6790\u4ee5\u53ca\u98df\u54c1\u5b89\u5168\u8ba1\u5212\u7684\u64b0\u5199\u5462\uff1f\u8fd9\u4e5f\u662fFSMA\u7684\u6cd5\u89c4\u8981\u6c42\u3002\u60a8\u4e5f\u53ef\u4ee5\u901a\u8fc7\u6211\u4eec\u7684\u5728\u7ebfPCQI\u8bfe\u7a0b\u6765\u83b7\u5f97PCQI\u4eba\u5458\u7684\u8bc1\u4e66\u3002 \u536b\u751f\u64cd\u4f5c \u98df\u54c1\u4f01\u4e1a\u5fc5\u987b\u4fdd\u6301\u6e05\u6d01\u536b\u751f\u7684\u751f\u4ea7\u73af\u5883\uff0c\u4ee5\u9632\u6b62\u73af\u5883\u5a01\u80c1\u98df\u54c1\u3002\u5728\u9a8c\u5382\u671f\u95f4\uff0cFDA\u4f1a\u8bc4\u4f30\u4e00\u5bb6\u4f01\u4e1a\u662f\u5426\u5bf9\u4e8e\u4f01\u4e1a\u7684\u5404\u4e2a\u7269\u7406\u65b9\u9762\u90fd\u8fdb\u884c\u4e86\u5145\u5206\u7684\u6d88\u6bd2\u548c\u7ef4\u4fee\uff0c\u4ee5\u9632\u6b62\u98df\u54c1\u63ba\u5047\u30022021\u8d22\u5e74FDA\u516c\u5e03\u4e8670\u4f8b\u5173\u4e8e\u5de5\u5382\u536b\u751f\u64cd\u4f5c\u7684\u8fdd\u89c4\u3002 \u60a8\u662f\u5426\u9700\u8981\u66f4\u65b0\u4e00\u4e0b\u536b\u751f\u64cd\u4f5c\u77e5\u8bc6\uff1f\u6765\u53c2\u4e0e\u6211\u4eec\u7684\u536b\u751f\u64cd\u4f5c\u5728\u7ebf\u57f9\u8bad\u5427\u3002 \u662f\u5426\u51c6\u5907\u597d\u62d3\u5c55\u66f4\u591a\u7684\u6cd5\u89c4\u77e5\u8bc6\u5e76\u66f4\u597d\u5730\u4e3a\u9a8c\u5382\u505a\u51c6\u5907\uff1f\u5feb\u7528RegiLearn eLearning Library\u8fdb\u884c\u57f9\u8bad\u5427 RegiLearn\u662f\u4e00\u4e2a\u5728\u7ebf\u7684\u8bfe\u7a0b\u5e93\uff0c\u53ef\u4ee5\u5e2e\u52a9\u60a8\u5728\u6cd5\u89c4\u548c\u98df\u54c1\u5b89\u5168\u65b9\u9762\u8fdb\u884c\u62d3\u5c55\u548c\u63a2\u7d22\u3002\u83b7\u5f9730\u5206\u949f\u4e3a\u5c0f\u8282\u7684\u5feb\u901f\u4e13\u5bb6\u57f9\u8bad\uff0c\u8fd8\u53ef\u4ee5\u4e0b\u8f7d\u8bc1\u4e66\u8bc1\u660e\u4f60\u5bf9\u4e8e\u8bfe\u7a0b\u7684\u638c\u63e1\u7a0b\u5ea6\u3002\u6211\u4eec\u6709\u975e\u5e38\u591a\u7684\u8bfe\u7a0b\u53ef\u4f9b\u9009\u62e9\u5b66\u4e60\uff0c\u5e76\u4e14\u8fd8\u5c06\u6301\u7eed\u52a0\u5165\u65b0\u7684\u8bfe\u7a0b\u3002 \u5f00\u59cb\u5b66\u4e60"}