CINXE.COM
什么是 RFI 经理角色? - Procore
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>什么是 RFI 经理角色? - Procore</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=4697dd37726fed7979fe7b0f4ce2bd05_emgtc2cuc3VwcG9ydC5wcm9jb3JlLmNvbQ==:site_13854" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=c5d69afcac31700ff9758fde125e8285:site_13854" id="mt-print-css" /> <script type="text/javascript" nonce="eeac21df0d2512f5326b3b54a4f10ce102f438df065ca5634acb34157fa1ccb1" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=aae9f894b8b9c897d72439fee4980c96b51ba5ff:site_13854"></script><script type="application/json" id="mt-global-settings" nonce="eeac21df0d2512f5326b3b54a4f10ce102f438df065ca5634acb34157fa1ccb1">{"apiToken":"xhr_2_1732485187_7146770b8d67de2a28c22cc297a01c88f95b8dc839051f442e2e6379e05e811b","pageId":3635,"pageViewId":"a0094d05-6005-49a4-9150-f815ecb67f06"}</script> <!-- Recaptcha for contact support form - --> <script defer src="https://www.google.com/recaptcha/api.js"></script> <!-- Back to Top Button by Tie Dec 14 2023 --> <script defer>/*<![CDATA[*/ window.onscroll = function () { scrollFunction(); }; function scrollFunction() { if (!document.querySelector(".columbia-article-topic-category")) { const backToTopButton = document.querySelector("#back-to-top-button"); const pageText = document.querySelector(".mt-content-container"); if (pageText.getBoundingClientRect().top < -20) { backToTopButton.style.display = "block"; } else { backToTopButton.style.display = "none"; } } } function scrollToTop() { const pageText = document.querySelector(".mt-content-container"); pageText.scrollIntoView({ behavior: "smooth", block: "start", inline: "nearest", }); } /*]]>*/</script> <!-- Global Responsive Book Functions Added by Tie Jun 14 2023 --> <script>/*<![CDATA[*/ function displaySection(id){ $(".content-section").hide(); $(id).show(); var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($(window).scrollTop() > $(".content-sop").offset().top) { $([document.documentElement, document.body]).animate({ scrollTop: $(id).offset().top - 84 }, 100); } $('.toc-sop a').removeClass('selected-chapter'); str1=".toc-sop a[onclick*=\\'\\"; str3="\\']"; fin_str=str1.concat(id,str3); $(fin_str).addClass('selected-chapter'); $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); const newURL = new URL(window.location.href); newURL.hash = id; history.pushState({},'',newURL); return false; } function toggleToc(){ var $menuButton = $('#mobile-menu-toggle'); var $toc = $('.toc-sop'); var $content = $('.content-sop'); if ($menuButton.attr("aria-expanded") === "false") { $menuButton.attr("aria-expanded","true"); $content.attr("data-mobile-visible","false"); $toc.attr("data-mobile-visible","true"); } else { $menuButton.attr("aria-expanded","false"); $content.attr("data-mobile-visible","true"); $toc.attr("data-mobile-visible","false"); } } /*]]>*/</script> <!-- Put Page ID on Page Settings Added by Tie Apr 14, 2022 --> <script>/*<![CDATA[*/ document.addEventListener("DOMContentLoaded", function (e) { if (document.querySelector("#mt-summary")) { var pageId = document.querySelector("#mt-summary").dataset.pageId; var text = document.createElement("p"); var box = document.querySelector(".mt-collapsible-section"); text.innerText = `Page ID: ${pageId}`; box.appendChild(text); var line = document.querySelector(".elm-meta-data.elm-meta-top"); if (document.querySelector("#mt-summary")) { line.style.display = "block"; box.appendChild(line); } } }); /*]]>*/</script> <!-- Define Deprecated Video Hiding Function Sitewide Added by Tie Marc 30, 2022 --> <script>/*<![CDATA[*/ function hideDeprecatedVideos() { let thisurl = window.location.href; if (thisurl.includes('Media_Library') || thisurl.includes('/tc') || thisurl.includes('/tutorials')) { $('.deprecated-video').show(); }; } $(function () { if ($('.deprecated-video').length) { hideDeprecatedVideos(); } }) /*]]>*/</script> <!-- Define Sorting functions sitewide Added by Tie Marc 11, 2022 --> <script>/*<![CDATA[*/ const language = 'zh-cn' //Change this two lines during localization const noAlphabetArray = ['zh-cn']; const compareFun = (a, b) => { return new Intl.Collator(language).compare(a.title, b.title); } let sortTerms = (elementType, section, skipFirst) => { let terms = [...section.querySelectorAll(elementType)] let firstElement = section.firstElementChild; let termHeaders = terms.map(e => e.innerText) let termObject = [] termHeaders.forEach((title, index) => { termObject.push({ title }); termObject[index].header = terms[index]; }); termObject.sort(compareFun); section.innerHTML = ''; if (skipFirst) { section.append(firstElement); } termObject.forEach((element) => { section.append(element.header); }); } const sortItems = (definitionSelector, sortItemSelector, skipFirst = false) => { let definitionsSections = [...document.querySelectorAll(definitionSelector)]; definitionsSections.forEach(section => sortTerms(sortItemSelector, section, skipFirst)); } /*]]>*/</script> <!-- Hide content from other regions Added by Tie Marc 7, 2022 --> <script>/*<![CDATA[*/ function getSubdomain() { let host = window.location.host; let subdomain = host.split(".")[0]; return subdomain; } function getLocaleBySubdomain(subdomain) { if (subdomain == "de") { return "de-de"; } if (subdomain == "es") { return "es-419"; } if (subdomain == "fr") { return "fr-fr"; } if (subdomain == "support") { return "en-us"; } return subdomain; } function getAllLocales() { var listedLocales = $(".localization-group") .map(function () { return $(this).data("locale"); }) .get(); return listedLocales; } function hideOtherLocales() { const subdomain = getSubdomain(); const locale = getLocaleBySubdomain(subdomain); let styleElement = document.createElement("style"); styleElement.setAttribute("type", "text/css"); styleElement.innerText = `.localization-group:not([data-locale*='${locale}']) {\ndisplay: none;\n}\n`; styleElement.innerText += '.localization-group[data-locale="else"] {\ndisplay: unset;\n}'; styleElement.innerText += `.localization-group[data-locale*="${locale}"] ~ .localization-group[data-locale="else"] {\ndisplay: none;\n}`; document.head.appendChild(styleElement); } $(function () { hideOtherLocales(); }) /*]]>*/</script> <!-- Collapsible Content. Added by Tie Apr 21, 2020 --> <script>/*<![CDATA[*/ $(window).on('load', function(e){ $('.collapsible').find('.trigger').on('click',function(){ $(this).closest('.collapsible').find('.col_content').slideToggle('350'); if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-down'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-circle-down')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-circle-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-circle-right'); } else if ($(this).find('.arrowclass').hasClass('fa-chevron-right')){ $(this).find('.arrowclass').removeClass('fas fa-chevron-right'); $(this).find('.arrowclass').addClass('fas fa-chevron-down'); } else { $(this).find('.arrowclass').removeClass('fas fa-chevron-down'); $(this).find('.arrowclass').addClass('fas fa-chevron-right'); } }); }); function colex(el) { $(el).closest(".collapsible").find(".col_content").slideToggle("350"); if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-down"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-circle-down")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-circle-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-circle-right"); } else if ($(el).find(".arrowclass").hasClass("fa-chevron-right")) { $(el).find(".arrowclass").removeClass("fas fa-chevron-right"); $(el).find(".arrowclass").addClass("fas fa-chevron-down"); } else { $(el).find(".arrowclass").removeClass("fas fa-chevron-down"); $(el).find(".arrowclass").addClass("fas fa-chevron-right"); } } /*]]>*/</script> <!-- Start Custom Print Style --> <!-- User ID Tracking. Added by Dean Feb 21, 2018 --> <script>/*<![CDATA[*/document.addEventListener("DOMContentLoaded", function() { var json = JSON.parse(document.getElementById('mt-global-settings').textContent) if (!json['userIsAnonymous']) { var dataLayer = window.dataLayer || {}; dataLayer.push({ 'event': 'setUserId', 'userId': json['userId'] }); window.Procore = window.Procore || {}; window.Procore.metrics = window.Procore.metrics || {}; window.Procore.metrics.user = window.Procore.metrics.user || {}; window.Procore.metrics.user.mtid = json['userId']; } }); /*]]>*/</script> <!-- End User ID Tracking --> <!-- Adobe Launch: Added 9/10/2019 by Joshua Bradley --> <script src="//assets.adobedtm.com/launch-EN162b61ce5645478888c92738b130b2f3.min.js" async="async"></script> <!-- End Adobe Launch--> <!-- Google Tag Manager --> <script>/*<![CDATA[*/(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-NWZQ5W6');/*]]>*/</script> <!-- End Google Tag Manager --> <!-- Start Typography --> <link rel="stylesheet" type="text/css" href="https://cloud.typography.com/6912732/682666/css/fonts.css"> <link rel="stylesheet" type="text/css" href="https://mkt-cdn.procore.com/fonts/sctogrotesk/sctogrotesk.css"> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" as="style"> <!-- End Typography --> <!-- Start of FontAwesome --> <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"> <!-- End of FontAwesome --> <!-- Start Service Cloud Header for Ticket Form --> <!-- End Service Cloud Header for Ticket Form --> <!-- OneTrust Cookies Consent Notice start for procore.com --> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="cbdfc14e-1f05-4d37-82a6-11d3228b4df5"></script> <script type="text/javascript">/*<![CDATA[*/ function OptanonWrapper() { } /*]]>*/</script> <!-- OneTrust Cookies Consent Notice end for procore.com --> </head> <body class="columbia-page-main columbia-article-faq columbia-breadcrumb-home-faq-what-is-the-rfi-manager-role columbia-live no-touch columbia-lang-zh-cn columbia-skin-grape"> <div class="grape-messaging"> </div> <div class="grape-header-custom"> <div class="mt-custom-header-div"><div class="mt-custom-header-container"><div class="mt-custom-header-logo"><a target="_self" href="https://zh-sg.support.procore.com/" rel="internal"><img src="https://zh-sg.support.procore.com/@api/deki/site/logo.png?default=https://a.mtstatic.com/skins/common/logo/logo.png%3F_%3Daae9f894b8b9c897d72439fee4980c96b51ba5ff:site_13854" /><span id="support-logo">支持</span></a></div><ul class="mt-custom-header-right"><li class="mt-custom-header-marketing"><a target="_blank" href="https://www.procore.com/en-sg?journey=supporttoprocore" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="dropdown dropdown-hover"><a href="#" class="dropdown-toggle mt-icon-earth mt-icon-arrow-down7" role="button"> 新加坡(简体中文)</a><ul class="dropdown-menu" id="lang-dd" style="display: none;"><li><a target="_self" href="https://es.support.procore.com/" rel="external nofollow" class="link-https">América Latina (Español)</a></li><li><a target="_self" href="https://en-au.support.procore.com/" rel="external nofollow" class="link-https">Australia (English)</a></li><li><a target="_self" href="https://pt-br.support.procore.com/" rel="external nofollow" class="link-https">Brasil (Português)</a></li><li><a target="_self" href="https://en-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (English)</a></li><li><a target="_self" href="https://fr-ca.support.procore.com/" rel="external nofollow" class="link-https">Canada (Français)</a></li><li><a target="_self" href="https://de.support.procore.com/" rel="external nofollow" class="link-https">Deutschland (Deutsch)</a></li><li><a target="_self" href="https://es-es.support.procore.com/" rel="external nofollow" class="link-https">España (Español)</a></li><li><a target="_self" href="https://fr.support.procore.com/" rel="external nofollow" class="link-https">France (Français)</a></li><li><a target="_self" href="https://en-gb.support.procore.com/" rel="external nofollow" class="link-https">United Kingdom (English)</a></li><li><a target="_self" href="https://support.procore.com/" rel="external nofollow" class="link-https">United States (English)</a></li><li><a target="_self" class="internal" href="https://zh-sg.support.procore.com/" rel="internal">新加坡(简体中文)</a></li></ul></li><li class="mt-custom-header-listitem"><a target="_blank" href="https://zh-sg.support.procore.com/references/contact-support" rel="internal">联系人</a></li><li class="mt-custom-header-listitem-login"><a target="_blank" href="https://app.procore.com?journey=supporttologin" rel="external noopener nofollow" class="link-https">登录 Procore 应用</a></li></ul></div></div><div class="mt-prepend-home mt-custom-home elm-nav" id="header-search"><div class="elm-nav-container"><script type="application/json" id="mt-localizations-help-widget">/*<![CDATA[*/{"Help.Widget.button.text":"\u641c\u7d22","Help.Widget.label.text":"\u67e5\u8be2","Help.Widget.placeholder.text":"\u6211\u4eec\u80fd\u4e3a\u4f60\u63d0\u4f9b\u54ea\u4e9b\u5e2e\u52a9\uff1f"}/*]]>*/</script><div class="mt-inputredirect" data-query-key="q" data-path=""></div></div></div> <script type="text/javascript">/*<![CDATA[*/ $(document).ready(function(){ $('.mt-custom-header-right .dropdown').hover(function(){ $(this).children('.dropdown-menu').toggle(); }) });/*]]>*/</script> <script type="text/javascript">/*<![CDATA[*/ /* Adds Training Center Help action to Pro Member Nav. Dean Jan 11, 2018 */ $(document).ready(function(){ $('.elm-header-user-nav.elm-nav .elm-nav-container>ol').prepend('<li><a class="mt-icon-editor-training-link" style="display:inline" target="_blank" href="/tc/1-Author_Training_Center_Documentation">Training Center Help</a></li>'); });/*]]>*/</script> </div> <div class="grape-header grape-wrapper"> <div class="grape-header-container grape-wrapper-container"> <div class="grape-site-logo"> <a class="logo-anonymous" href="/" title="Procore"> <img class="mt-cdn" src="https://a.mtstatic.com/@public/production/site_13854/1681518206-logo.png" alt="Procore" title="Procore"> </a> </div> <div class="grape-site-navigation"> <ul class="mt-site-nav"> <li class="mt-login-sign-in"> <a class="mt-icon-quick-sign-in" href="https://zh-sg.support.procore.com/Special:AuthenticationProviders?returntotitle=faq%2Fwhat-is-the-rfi-manager-role" title="登录"> 登录 </a> </li> <li class="mt-login-forgot-password"> <a class="mt-icon-login-forgot-password" href="https://zh-sg.support.procore.com/Special:UserPassword" title="找回丢失的密码"> 忘记密码 </a> </li> </ul> </div> <div class="grape-site-search"> <div class="mt-quick-search-container"> <form action="/Special:Search"> <input name="path" id="mt-search-path" type="hidden" value="" /> <label class="mt-label" for="mt-site-search-input"> 搜索 </label> <input class="mt-text mt-search search-field" name="q" id="mt-site-search-input" placeholder="我们可如何帮助您?" type="search" /> <button class="mt-button ui-button-icon mt-icon-site-search-button search-button" type="submit"> 搜索 </button> </form> </div> </div> </div> <div class="grape-site-nav grape-wrapper-container"> <ul class="mt-breadcrumbs"> <li> <a href="https://zh-sg.support.procore.com/"> <span class="mt-icon-article-category mt-icon-article-home"></span> Home </a> </li> <li> <a href="https://zh-sg.support.procore.com/faq"> <span class="mt-icon-article-guide"></span> 常见问题 </a> </li> </ul> </div> </div> <div class="grape-content grape-wrapper"> <div class="grape-content-container grape-wrapper-container"> <div id="flash-messages"><div class="dekiFlash"></div></div> <h1 id="title" class="no-edit" style="visibility: visible;"> 什么是 RFI 经理角色? </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2024-09-27T19:07:38Z"></span> </div> <div class="mt-content-header"></div> <div class="mt-content-side"></div> <div id="mt-toc-container" data-title="目录" data-collapsed="true"> <button class="mt-toggle mt-summary-toggle ui-button-icon mt-toggle-expand">目录</button> <div class="mt-toc-content mt-collapsible-section mt-toc-hide"> <ol><li><a href="#.E7.AD.94.E6.A1.88" rel="internal">答案</a><ol><li><a href="#RFI_.E7.BB.8F.E7.90.86.E7.9A.84.E5.B7.A5.E4.BD.9C.E6.B5.81.E6.98.AF.E4.BB.80.E4.B9.88.EF.BC.9F" rel="internal">RFI 经理的工作流是什么?</a></li><li><a href="#.E5.A6.82.E4.BD.95.E9.85.8D.E7.BD.AE.E9.BB.98.E8.AE.A4_RFI_.E7.BB.8F.E7.90.86" rel="internal">如何配置默认 RFI 经理</a></li><li><a href="#.E5.A6.82.E4.BD.95.E6.9B.B4.E6.94.B9.E9.BB.98.E8.AE.A4_RFI_.E7.BB.8F.E7.90.86.E5.88.86.E9.85.8D" rel="internal">如何更改默认 RFI 经理分配</a></li><li><a href="#.E2.80.9C.E6.8B.85.E4.BB.BB_RFI_.E7.BB.8F.E7.90.86.E2.80.9D.E7.BB.86.E5.88.86.E6.9D.83.E9.99.90.E5.85.81.E8.AE.B8.E7.94.A8.E6.88.B7.E6.89.A7.E8.A1.8C.E5.93.AA.E4.BA.9B.E4.BB.BB.E5.8A.A1.EF.BC.9F" rel="internal">“担任 RFI 经理”细分权限允许用户执行哪些任务?</a></li></ol></li><li><a href="#.E5.8F.A6.E8.AF.B7.E5.8F.82.E9.98.85" rel="internal">另请参阅</a></li><li><a href="#" rel="internal"> </a></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"> <div mt-section-origin="faq/what-is-the-rfi-manager-role" class="mt-section" id="section_1"><span id=".E7.AD.94.E6.A1.88"></span><h2 class="editable">答案</h2> <div class="mt-contentreuse-widget" data-page="references/construction-management/glossary-of-terms" data-section="RFI 经理" data-show="false"> <div class="mt-include" id="s4850"> <p>在 Procore 中, <em>RFI 经理</em>是指在 RFI 的整个生命周期内负责监督 RFI 的人员。RFI 经理是 RFI 创建者和设计团队之间的看门人,负责审核所有 RFI 草稿,并且完成以下工作:(1) 答复 RFI 问题并关闭,或 (2) 打开 RFI 草稿,进行编号,然后把这些草稿分配给设计团队的相应成员,由他们来答复 RFI 的问题。</p> </div> </div> <div mt-section-origin="faq/what-is-the-rfi-manager-role" class="mt-section" id="section_2"><span id="RFI_.E7.BB.8F.E7.90.86.E7.9A.84.E5.B7.A5.E4.BD.9C.E6.B5.81.E6.98.AF.E4.BB.80.E4.B9.88.EF.BC.9F"></span><h3 class="editable">RFI 经理的工作流是什么?</h3> <p>RFI 经理审核在 RFI 工具中创建和分配的所有 RFI 草稿后,他们可以:</p> <ul> <li>答复并关闭 RFI。请参阅<a title="如果我是 RFI 经理,如何提交对 RFI“草稿”的答复?" href="https://zh-sg.support.procore.com/faq/how-do-i-submit-a-response-to-a-draft-rfi-when-i-am-the-rfi-manager" rel="internal">如果我是 RFI 经理,如何提交对 RFI“草稿”的答复?</a><br />或者</li> <li>将其重新分配给一人或多人以收集他们的答复。</li> </ul> <p>收到所有答复后,RFI 经理会选择“正式答复”。此时,可以关闭 RFI(或者,如果需要变更事件,请参阅<a title="创建变更事件" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/change-events/tutorials/create-a-change-event" rel="internal">创建变更事件</a>)。还可以通知责任方。下面展示了 RFI 经理的典型工作流。</p> <div class="mt-contentreuse-widget" data-page="products/online/user-guide/project-level/rfi/workflow" data-section="工作流图" data-show="false"> <div headingoffset="0" class="mt-include" id="s1102"></div> </div> </div><div mt-section-origin="faq/what-is-the-rfi-manager-role" class="mt-section" id="section_3"><span id=".E5.A6.82.E4.BD.95.E9.85.8D.E7.BD.AE.E9.BB.98.E8.AE.A4_RFI_.E7.BB.8F.E7.90.86"></span><h3 class="editable">如何配置默认 RFI 经理</h3> <p>具有项目 RFI 工具“管理员”级别权限的用户可以选择一个用户作为项目中所有 RFI 的默认 RFI 经理。请参阅<a title="配置高级设置:RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/configure-advanced-settings-rfis" rel="internal">配置高级设置:RFI</a>。默认 RFI 经理可以是具有项目 RFI 工具“管理员”级别权限的用户,也可以是具有项目 RFI 工具“只读”或“标准”级别权限且其权限模板中启用了<a class="F1" title="在项目权限模板中授予细分权限" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/permissions/tutorials/grant-granular-permissions-in-a-project-permissions-template#RFIs" rel="internal">“担任 RFI 经理”细分权限</a>的用户。要了解有关<a class="F1" title="在项目权限模板中授予细分权限" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/permissions/tutorials/grant-granular-permissions-in-a-project-permissions-template#RFIs" rel="internal">“担任 RFI 经理”细分权限</a>允许用户执行哪些任务的更多信息,请参阅下面的<a title="什么是 RFI 经理角色?" href="#What_tasks_does_the_'Act_as_RFI_Manager'_granular_permission_allow_users_to_perform.3F" rel="internal">“担任 RFI 经理”细分权限允许用户执行哪些任务?</a>。</p> </div><div mt-section-origin="faq/what-is-the-rfi-manager-role" class="mt-section" id="section_4"><span id=".E5.A6.82.E4.BD.95.E6.9B.B4.E6.94.B9.E9.BB.98.E8.AE.A4_RFI_.E7.BB.8F.E7.90.86.E5.88.86.E9.85.8D"></span><h3 class="editable">如何更改默认 RFI 经理分配</h3> <p>创建 RFI 时,对于在设好默认 RFI 经理后创建的所有 RFI,系统将在“RFI 经理”字段中自动选择指定的默认 RFI 经理。创建或编辑 RFI 时,具有适当权限的用户可以将其“RFI 经理”更改为具有项目 RFI 工具“管理员”级别权限的其他用户,或更改为具有项目 RFI 工具“只读”或“标准”级别权限且其权限模板中启用了<a class="F1" title="在项目权限模板中授予细分权限" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/permissions/tutorials/grant-granular-permissions-in-a-project-permissions-template#RFIs" rel="internal">“担任 RFI 经理”细分权限</a>的其他用户。请参阅<a title="创建 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/create-an-rfi" rel="internal">创建 RFI</a> 和<a title="编辑 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/edit-an-rfi" rel="internal">编辑 RFI</a>。</p> <p><em>注意</em>:</p> <ul> <li>如果你是具有 RFI 工具“标准”级别权限的用户,则在创建 RFI 时,可以选择具有项目 RFI 工具“只读”或“标准”级别权限且其权限模板中启用了<a class="F1" title="在项目权限模板中授予细分权限" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/permissions/tutorials/grant-granular-permissions-in-a-project-permissions-template#RFIs" rel="internal">“担任 RFI 经理”细分权限</a>的用户,或选择具有“管理员”级别权限的用户作为“RFI 经理”。除非在自己的权限模板上启用了“担任 RFI 经理”细分权限,否则将无法在创建 RFI 后更改此分配。</li> <li>如果你是具有 RFI 工具“管理员”级别权限的用户,则在创建 RFI 时,可以选择具有项目 RFI 工具“只读”或“标准”级别权限且其权限模板中启用了<a class="F1" title="在项目权限模板中授予细分权限" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/permissions/tutorials/grant-granular-permissions-in-a-project-permissions-template#RFIs" rel="internal">“担任 RFI 经理”细分权限</a>的用户,或选择具有“管理员”级别权限的用户作为“RFI 经理”。可以在创建 RFI 后通过编辑 RFI 更改此分配。请参阅<a title="编辑 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/edit-an-rfi" rel="internal">编辑 RFI</a>。</li> </ul> </div><div mt-section-origin="faq/what-is-the-rfi-manager-role" class="mt-section" id="section_5"><span id=".E2.80.9C.E6.8B.85.E4.BB.BB_RFI_.E7.BB.8F.E7.90.86.E2.80.9D.E7.BB.86.E5.88.86.E6.9D.83.E9.99.90.E5.85.81.E8.AE.B8.E7.94.A8.E6.88.B7.E6.89.A7.E8.A1.8C.E5.93.AA.E4.BA.9B.E4.BB.BB.E5.8A.A1.EF.BC.9F"></span><h3 class="editable">“担任 RFI 经理”细分权限允许用户执行哪些任务?</h3> <p>具有项目 RFI 工具“只读”或“标准”级别权限且其权限模板中启用了<a class="F1" title="在项目权限模板中授予细分权限" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/permissions/tutorials/grant-granular-permissions-in-a-project-permissions-template#RFIs" rel="internal">“担任 RFI 经理”细分权限</a>的用户可以为他们创建的 RFI(仅限“标准”级别权限)或他们被指定为“RFI 经理”的 RFI 执行一些其他任务。</p> <p>下表列出了具有此细分权限的“只读”或“标准”级别用户作为 RFI 的创建者或其“RFI 经理”可以执行的任务,以及仅具有项目 RFI 工具的“管理员”级别权限的用户才能执行的任务。</p> <table class="mt-responsive-table perm-table perm-table-horizontal perm-table-highlight mt-table-big"> <thead> <tr> <th class="mt-bgcolor-cccccc mt-column-width-25" colspan="1" rowspan="2" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><br /><span class="mt-font-size-16">任务</span></th> <th class="mt-bgcolor-cccccc mt-column-width-15" colspan="2" rowspan="1" style="text-align:center;border-right-style:solid;border-right-color:rgb(77, 77, 77);border-left-style:solid;border-left-color:rgb(77, 77, 77);">具有“担任 RFI 经理”细分权限</th> <th class="mt-bgcolor-cccccc mt-column-width-10" colspan="1" rowspan="1" style="text-align:center;">细分权限不适用</th> </tr> <tr> <th class="mt-column-width-5" style="text-align:center;background-color:rgb(231, 231, 231);">只读</th> <th class="mt-column-width-5" style="text-align:center;background-color:rgb(231, 231, 231);border-right-style:solid;border-right-color:rgb(77, 77, 77);">标准</th> <th class="mt-column-width-5" style="text-align:center;background-color:rgb(231, 231, 231);">管理员</th> </tr> </thead> <tbody> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="将相关项添加到 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/add-a-related-item-to-an-rfi" rel="internal">将相关项添加到 RFI</a></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"> </td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"> </td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);">将答复添加到 RFI(不作为任务分配对象)</td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);">将任务分配对象添加到 RFI(不作为任务分配对象)</td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);">被指定为项目的默认 RFI 经理</td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="为 RFI 选择“正式答复”" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/choose-an-official-response-for-an-rfi" rel="internal">为 RFI 选择“正式答复”</a></td> <td class="mt-column-width-20" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="关闭 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/close-an-rfi" rel="internal">关闭 RFI</a> <img alt="icon-mindtouch-table-mobile.png" class="internal default" style="width: 20px; height: 20px;" width="20px" height="20px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11101/icon-mindtouch-table-mobile.png?revision=1&size=bestfit&width=20&height=20" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /><sup>1</sup></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="配置高级设置:RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/configure-advanced-settings-rfis" rel="internal">配置设置:RFI</a></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"> </td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"> </td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);">创建开放 RFI</td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"> </td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="https://support.procore.com/products/online/user-guide/project-level/rfi/tutorials/delete-a-response-to-an-rfi" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/delete-a-response-to-an-rfi" rel="internal">删除对 RFI 的答复</a></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"> </td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"> </td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="删除 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/delete-an-rfi" rel="internal">删除 RFI</a></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"> </td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"> </td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="为项目的 RFI 指定默认 RFI 经理" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/designate-the-default-rfi-manager-for-a-projects-rfis" rel="internal">为项目的 RFI 指定默认 RFI 经理</a></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"> </td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"> </td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="编辑 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/edit-an-rfi" rel="internal">编辑 RFI</a> <img alt="icon-mindtouch-table-mobile.png" class="internal default" style="width: 20px; height: 20px;" width="20px" height="20px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11101/icon-mindtouch-table-mobile.png?revision=1&size=bestfit&width=20&height=20" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);">导出 RFI 上的所有答复</td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><strong><a title="对 RFI 执行批量操作" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/perform-bulk-actions-on-rfis" rel="internal">对 RFI 执行批量操作</a></strong></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"> </td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"> </td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="重新打开 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/reopen-an-rfi" rel="internal">重新打开 RFI</a> <img alt="icon-mindtouch-table-mobile.png" class="internal default" style="width: 20px; height: 20px;" width="20px" height="20px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11101/icon-mindtouch-table-mobile.png?revision=1&size=bestfit&width=20&height=20" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="回复 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/respond-to-an-rfi" rel="internal">答复 RFI</a> <img alt="icon-mindtouch-table-mobile.png" class="internal default" style="width: 20px; height: 20px;" width="20px" height="20px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11101/icon-mindtouch-table-mobile.png?revision=1&size=bestfit&width=20&height=20" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><a title="从回收站中恢复 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/retrieve-an-rfi-from-the-recycle-bin" rel="internal">从回收站中恢复 RFI</a></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"> </td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"> </td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);">在创建 RFI 时选择任何可用的 RFI 经理</td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"> </td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);"><strong><a title="转移 RFI 的后续行动者" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/shift-the-ball-in-court-on-an-rfi" rel="internal">转移 RFI 的后续行动者</a></strong></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);">查看 RFI 上的所有答复</td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> <tr> <td class="mt-column-width-25" data-th="Task" style="text-align:left;border-right-style:solid;border-right-color:rgb(77, 77, 77);">查看私密 RFI</td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionRead Only"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="With 'Act as RFI Manager' Granular PermissionStandard" style="border-right-style:solid;border-right-color:rgb(77, 77, 77);"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> <td class="mt-column-width-5" data-th="Granular Permission N/AAdmin"><img alt="icon-mindtouch-table-check.png" class="internal default" style="width: 18px; height: 18px;" width="18px" height="18px" loading="lazy" src="https://zh-sg.support.procore.com/@api/deki/files/11096/icon-mindtouch-table-check.png?revision=2&size=bestfit&width=18&height=18" /></td> </tr> </tbody> </table> <p><em>注意</em>:“只读”或“标准”权限级别可以执行其他任务。其中一些其他任务可能需要启用不同的细分权限。请参阅 <a title="权限" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/permissions" rel="internal">RFI:权限</a>和<a title="在项目权限模板中授予细分权限" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/permissions/tutorials/grant-granular-permissions-in-a-project-permissions-template#RFIs" rel="internal">在项目权限模板中授予细分权限</a>。</p> <p><span class="mt-font-size-12">1</span>拥有项目 RFI 工具"只读"或"标准"级别权限,且在其权限模板上启用<a title="在权限模板中授予细分权限" href="https://zh-sg.support.procore.com/products/online/user-guide/company-level/permissions/tutorials/grant-granular-permissions-in-a-project-permissions-template#RFIs" rel="internal">"担任 RFI 经理"细分权限</a>的用户可以为他们创建的 RFI(仅限"标准")执行此任务,或者他们被指定为 RFI 经理。 有关在权限模板上启用了此细分权限的用户可以执行<a title="什么是 RFI 经理角色?" href="#What_tasks_does_the_'Act_as_RFI_Manager'_granular_permission_allow_users_to_perform.3F" rel="internal">哪些任务的更多信息,请参阅 RFI 经理细分权限允许用户执行哪些任务?</a></p> </div></div><div mt-section-origin="faq/what-is-the-rfi-manager-role" class="mt-section" id="section_6"><span id=".E5.8F.A6.E8.AF.B7.E5.8F.82.E9.98.85"></span><h2 class="editable">另请参阅</h2> <ul> <li><a title="配置高级设置:RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/configure-advanced-settings-rfis" rel="internal">配置高级设置:RFI</a></li> <li><a title="创建 RFI" href="https://zh-sg.support.procore.com/products/online/user-guide/project-level/rfi/tutorials/create-an-rfi" rel="internal">创建 RFI</a></li> </ul> </div><div mt-section-origin="faq/what-is-the-rfi-manager-role" class="mt-section" id="section_7"><span id=""></span><h2 class="editable"> </h2> <style>/*<![CDATA[*/body #deki-page-title::before {content: url("/@api/deki/pages/:ccaec8e887044385a1dfc2a3a0f71434/files/=tool-icon_faq.png");}/*]]>*/</style> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Reusable_Snippets/Marketing_Snippet" data-section="RFI" data-show="false"> </div> </div></div> </div> </div> <div class="mt-content-footer"></div> <ol class="grape-meta-data grape-meta-article-navigation"> <li class="grape-back-to-top"><a class="mt-icon-back-to-top" href="#title" id="mt-back-to-top" title="返回到本文章顶部">返回顶部</a></li> <li class="grape-article-pagination"><ul class="mt-article-pagination"> <li class="mt-pagination-previous"> <a class="mt-icon-previous-article" href="https://zh-sg.support.procore.com/faq/what-is-the-resource-bench-in-workforce-planning" title="什么是劳动力规划中的“资源台”?"><span>什么是劳动力规划中的“资源台”?</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://zh-sg.support.procore.com/faq/what-is-the-schedules-folder-in-the-documents-tool-and-why-cant-i-delete-it" title="文档工具中的“进度计划”文件夹是什么?为什么不能删除?"><span>文档工具中的“进度计划”文件夹是什么?为什么不能删除?</span></a> </li> </ul> </li> </ol> </div> </div> <div class="grape-footer grape-wrapper"> <div class="grape-wrapper-container"> <ol> <li class="grape-footer-copyright">© 版权所有 2024 Procore</li> <li class="grape-footer-powered-by"><a href="https://mindtouch.com/demo" class="mt-poweredby product " title="MindTouch" target="_blank"> CXone Expert提供 <span class="mt-registered">®</span> </a></li> </ol> </div> </div> <div class="grape-footer-custom"> <div class="mt-custom-footer-container"><div class="mt-custom-footer-left"><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a target="_blank" href="https://www.linkedin.com/company/procore-technologies" rel="external noopener nofollow" class="mt-icon-linkedin2 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.facebook.com/procore.tech" rel="external noopener nofollow" class="mt-icon-facebook5 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.twitter.com/procoretech" rel="external noopener nofollow" class="mt-icon-twitter4 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.instagram.com/procoretech" rel="external noopener nofollow" class="mt-icon-instagram3 link-https"></a></li><li class="mt-custom-footer-link"><a target="_blank" href="https://www.youtube.com/user/ProcoreVideo" rel="external noopener nofollow" class="mt-icon-youtube link-https"></a></li></ul></div><div class="mt-custom-footer-right"><div class="mt-custom-footer-copyright"><span>© 2024 Procore Technologies, Inc.</span></div><ul class="mt-custom-footer-links"><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/privacy" target="_blank" rel="external noopener nofollow" class="link-https">隐私声明</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/legal/terms-of-service" target="_blank" rel="external noopener nofollow" class="link-https">服务条款</a></li><li class="mt-custom-footer-link"><a href="https://www.procore.com/en-sg" target="_blank" rel="external noopener nofollow" class="link-https">procore.com</a></li><li class="mt-custom-footer-link" id="last-item"><a href="https://app.procore.com/mindtouch/auth" target="_blank" rel="external noopener nofollow" class="link-https">登录</a></li></ul></div></div> <script type="text/javascript">/*<![CDATA[*/ <!-- Change default from Draft to Live in Edit and New screens. Added by Dean May 13, 2020 --> $("a.mt-icon-new-page").click(function () { setTimeout( function () { $("label[for='mt-new-templates-create-live']").click(); }, 10000); });/*]]>*/</script> </div> <script type="text/javascript" data-mindtouch-module="true" src="https://a.mtstatic.com/deki/javascript/out/standalone/ui.widget.helpWidget.js?_=aae9f894b8b9c897d72439fee4980c96b51ba5ff:site_13854"></script><!-- Scroll to Top Button --> <div><button id="back-to-top-button" onclick="scrollToTop()"><i class="fa fa-angle-up">‌‍​</i></button></div> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NWZQ5W6" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> </body> </html>