CINXE.COM
联系支持团队 - 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>联系支持团队 - Procore</title> <link media="screen" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/legacy.css?_=814adc7572602bc7c2a39e3e9899638a_emgtc2cuc3VwcG9ydC5wcm9jb3JlLmNvbQ==:site_13854" id="mt-screen-css" /> <link media="print" type="text/css" rel="stylesheet" href="https://a.mtstatic.com/@cache/layout/print.css?_=a87985e947b3b92ebec6cfe4689bceb3:site_13854" id="mt-print-css" /> <script type="text/javascript" nonce="3006660492ede1b9163743edd39cbaa1e841f3c67b9e147d430d21a5ce03ebe6" src="https://a.mtstatic.com/deki/javascript/out/grape.min.js?_=76f77a33377b2f0da26a22ff3a2c3345f92f980b:site_13854"></script><script type="application/json" id="mt-global-settings" nonce="3006660492ede1b9163743edd39cbaa1e841f3c67b9e147d430d21a5ce03ebe6">{"apiToken":"xhr_2_1732825205_4d5c96972ac5783d6583570f3a5d258e4829c8af70c23f664a2d96126ec15bc1","pageId":4845,"pageViewId":"e4723b08-c149-4d68-b012-bbdbef011888"}</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-breadcrumb-home-references-contact-support 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_%3D76f77a33377b2f0da26a22ff3a2c3345f92f980b: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=references%2Fcontact-support" 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/references"> <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;"> 联系支持团队 </h1> <div class="mt-last-updated"> <strong>Last updated:</strong> <span class="modified mt-last-updated-timestamp" data-timestamp="2024-10-14T17:14:57Z"></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="#Search_results_based_on_your_subject" rel="internal">Search results based on your subject</a></li><li><a href="#.E6.9C.89.E7.94.A8.E7.9A.84.E7.BD.91.E5.9D.80" rel="internal">有用的网址</a><ol><li><a href="#.E5.AE.A2.E6.88.B7.E6.94.AF.E6.8C.81" rel="internal">客户支持</a></li></ol></li><li><a href="#.E6.9C.89.E7.94.A8.E7.9A.84.E7.BD.91.E5.9D.80_2" rel="internal">有用的网址</a><ol><li><a href="#.E5.AE.A2.E6.88.B7.E6.94.AF.E6.8C.81_2" rel="internal">客户支持</a></li></ol></li></ol> </div> </div> <div id="page-top"> <div id="topic"> <div id="pageText"><div id="recaptcha-container"> <div class="g-recaptcha" data-sitekey="6LehdeUpAAAAACIQFGEcEJpPYS9-Oh4IuXaP5BA6"> </div> <br /> <input name="submit" style="background-color:#ff5200; color: #ffffff; border: 0px; padding: .4em; margin: 5px;" type="submit" value="Submit"></input></div> <p>要向 Procore 的客户支持团队提交工单,请填写以下表格。谢谢!</p> <div class="mt-contentreuse-widget" data-page="Media_Library/Generic_Media/Site_Banner_Source" data-section="" data-show="false"> <div class="mt-include" id="s5544"> </div> </div> <table style="width: 1200px; table-layout: fixed;"> <tbody> <tr> <td style="width:430px;"> <script type="text/javascript">/*<![CDATA[*/ // FORM FIELD VALIDATION function validateForm() { console.log("VALIDATING FORM"); var x = document.forms["salesforce-form"]["subject"].value; if ((x == "") || (x == (" ")>=1)) { alert("Subject is required"); return false; } var x = document.forms["salesforce-form"]["00N34000005gaBm"].value; if ((x == "") || (x == (" ")>=1)) { alert("First Name is required"); return false; } var x = document.forms["salesforce-form"]["00N34000005gaBr"].value; if ((x == "") || (x == (" ")>=1)) { alert("Last Name is required"); return false; } var x = document.forms["salesforce-form"]["00N34000005gaBw"].value; if ((x == "") || (x == (" ")>=1)) { alert("Your Company Name is required"); return false; } var x = document.forms["salesforce-form"]["email"].value; if ((x == "") || (x == (" ")>=1)) { alert("Email is required"); return false; } var x = document.forms["salesforce-form"]["description"].value; if ((x == "") || (x == (" ")>=1)) { alert("Description is required"); return false; } } function chooseCaseType(e) { console.log("chose case type") console.log(event.target.value) switch(event.target.value) { case "general": $('.erp-selector').css("display", "none"); //$('.pfcp-input').css("display", "none"); $('.pfcp-input').attr('name', ''); $('.erp-selector > select').prop( "disabled", true ); break; case "erp": $('.erp-selector').css("display", "block"); // $('.pfcp-input').css("display", "none"); $('.pfcp-input').attr('name', ''); $('.erp-selector > select').prop( "disabled", false ); break; case "pfcp": // $('.pfcp-input').css("display", "block"); $('.pfcp-input').attr('name', '00N2T000004pM6H'); $('.erp-selector').css("display", "none"); $('.erp-selector > select').prop( "disabled", true ); break; default: console.log('no case type selected'); } } // Code added for MindTouch EAP and Self-Service analytics. document.addEventListener('mindtouch-web:analytics:form-activity-logger-ready', function(ev) { var logger = ev.data.logger; // hook an example support ticket case form submit button and track support ticket submission var button = document.querySelector('input[name="submit"]'); button.addEventListener('click', function() { logger.submit(); }); }); document.addEventListener('mindtouch-web:loaded', function(ev) { var analytics = ev.data.analytics; analytics.initFormActivityLogger('case'); }); window.addEventListener('load', function() { const recaptcha = document.querySelector("#recaptcha-container"); const fieldset = document.querySelector(".ui-dform-fieldset2"); fieldset.appendChild(recaptcha); setInterval(timestamp, 500); }); function timestamp() { var response = document.getElementById("g-recaptcha-response") ? document.getElementById("g-recaptcha-response") : null; if (response == null || response.value.trim() == "") { var elems = JSON.parse( document.getElementsByName("captcha_settings")[0].value ); elems["ts"] = JSON.stringify(new Date().getTime()); document.getElementsByName("captcha_settings")[0].value = JSON.stringify(elems); } }/*]]>*/</script> <div class="left"><div class="mt-support-email"><form action="https://webto.salesforce.com/servlet/servlet.WebToCase?encoding=UTF-8&orgId=00D300000000QCK" method="POST" class="mt-support-form ui-dform-form general-support-form" id="ticket_form" name="salesforce-form" onsubmit="return validateForm()"><input type="hidden" name="captcha_settings" value="{"keyname":"APIKey","fallback":"true","orgId":"00D300000000QCK","ts":""}"></input><input name="orgid" type="hidden" value="00D300000000QCK"></input><input name="00N34000005ghGt" type="hidden" value="English"></input><input name="retURL" type="hidden" value="https://zh-sg.support.procore.com/references/contact-support/support-ticket-confirmation"></input><input class="pfcp-input" style="display:none" name="" type="hidden" value="PFCP"></input><fieldset class="ui-dform-fieldset2" style="max-width:375px; box-shadow: 5px 5px 5px #DDDDDD; background-color:#FFFFFF;"><fieldset><legend>What can we help you with today?</legend><script></script></fieldset><div class="mt-field clear"><div style="display:flex;"><label class="ui-dform-label" for="subject">Subject *</label></div><input class="mt-email-field required field full" type="text" id="subject" name="subject" maxlength="300" value=""></input></div><span id="Search_results_based_on_your_subject"></span><h5>Search results based on your subject</h5><ul id="submit-issue-search-results" style="padding-left: 5px; list-style:none;"><script async="async" src="https://zh-sg.support.procore.com/@embed/a9417b11f6463976141fbdc7a23ed7f2bccad79a01bca2ee249715995be63d24.js"></script><script type="mindtouch/embed" id="mindtouch-embed-a9417b11f6463976141fbdc7a23ed7f2bccad79a01bca2ee249715995be63d24"></script></ul><div class="mt-field"><label class="ui-dform-label" for="firstName">First Name *</label><input class="mt-email-field field" type="text" id="00N34000005gaBm" name="First Name" maxlength="80"></input></div><div class="mt-field"><label class="ui-dform-label" for="lastName">Last Name *</label><input class="mt-email-field field" type="text" id="00N34000005gaBr" name="Last Name" maxlength="80"></input></div><div class="mt-field"><div style="display:inline;"><label class="ui-dform-label" for="companyName">Your Company Name *</label></div><input class="mt-email-field field" type="text" id="00N34000005gaBw" name="Company" maxlength="80"></input></div><div class="mt-field clear"><label class="ui-dform-label" for="email">Email *</label><input class="mt-email-field required field" type="email" id="email" name="email" maxlength="80"></input></div><div class="mt-field clear"><div style="display:flex;"><label class="ui-dform-label" for="description">Description *</label></div><i>Please describe your issue.</i><textarea class="mt-email-field field" placeholder="" id="description" name="description"></textarea></div><div class="mt-field clear"><input class="mt-account-field required field" type="hidden" id="account" name="Account" maxlength="80"></input></div><div class="mt-field clear"><div style="display:flex;"><label class="ui-dform-label" for="projectURL">Related Procore URL</label></div><i>Please copy and paste the link to the Procore page where you are experiencing the problem.</i><input class="mt-email-field required field" type="text" placeholder="" id="00N34000005Xbg2" name="00N34000005Xbg2" maxlength="255"></input></div><input type="hidden" class="mt-email-field field" name="_search" value=""></input><input type="hidden" class="mt-email-field field" name="_path" value="/"></input><input type="hidden" id="priority" name="priority" value="Low"></input><input type="hidden" name="00N8V00000OwzVV" title="Secondary Routing Priority" value="Standard"></input><input id="external" name="external" type="hidden" value="1"></input></fieldset></form></div></div> </td> <td style="width:770px;"> <div class="desktop-display"> <div mt-section-origin="references/contact-support" class="mt-section"><span id=".E6.9C.89.E7.94.A8.E7.9A.84.E7.BD.91.E5.9D.80"></span><h4 class="editable">有用的网址</h4> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Reusable_Snippets/Reusable_Text_Snippets" data-section="有用链接 - 其他" data-show="false"> <div class="mt-include" id="s4825"> <ul> <li><a title="开始使用 Procore" href="https://zh-sg.support.procore.com/getting-started-with-procore" rel="internal">开始使用 Procore</a></li> <li><a title="常见问题" href="https://zh-sg.support.procore.com/faq" rel="internal">常见问题</a></li> <li><a title="为什么无法登录 Procore?" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore" rel="internal">为什么无法登录 Procore?</a></li> <li><a title="用户权限矩阵 - Web" href="https://zh-sg.support.procore.com/references/user-permissions-matrix-web" rel="internal">用户权限矩阵 - Web</a></li> <li><a title="用户权限矩阵 - 移动版" href="https://zh-sg.support.procore.com/references/user-permission-matrix-mobile" rel="internal">用户权限矩阵 - 移动版</a></li> <li><a title="词汇表" href="https://zh-sg.support.procore.com/references/construction-management/glossary-of-terms" rel="internal">词汇表</a></li> </ul> </div> </div> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Reusable_Snippets/Reusable_Text_Snippets" data-section="客户支持(zh-SG)" data-show="false"> <div class="mt-include" id="s4825"> <div mt-section-origin="Media_Library/Language_Specific_Media/Reusable_Snippets/Reusable_Text_Snippets" class="mt-section" id="section_120"><span id=".E5.AE.A2.E6.88.B7.E6.94.AF.E6.8C.81"></span><h5 id=".E5.AE.A2.E6.88.B7.E6.94.AF.E6.8C.81-4825"><span class="mt-icons-display mt-icon-bubble">客户支持</span></h5> <p>如果你需要其他故障排除或技术帮助,我们专门的客户支持团队会以提供世界一流的支持而自豪。 使用此页面上的 Web 表单向团队提交你的问题或使用我们的实时聊天选项 <text onclick="window.location.href='https://support.procore.com/references/contact-support';" onmouseover="this.style.cursor='pointer';" title="https://support.procore.com/参考资料/contact-support"><span style="color:#ff5200;">在这里</span></text>(提供英语和西班牙语)寻求紧急帮助。</p> <p>有关其他英语支持选项,请点击 <text onclick="window.location.href='https://support.procore.com/references/contact-support';" onmouseover="this.style.cursor='pointer';" title="https://support.procore.com/参考资料/contact-support"><span style="color:#ff5200;">在这里</span></text>。</p> </div></div> </div> </div></div> </td> </tr> </tbody> </table> <p> </p> <div class="mobile-display"> <div mt-section-origin="references/contact-support" class="mt-section"><span id=".E6.9C.89.E7.94.A8.E7.9A.84.E7.BD.91.E5.9D.80_2"></span><h4 class="editable">有用的网址</h4> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Reusable_Snippets/Reusable_Text_Snippets" data-section="有用链接 - 其他" data-show="false"> <div class="mt-include" id="s4825"> <ul> <li><a title="开始使用 Procore" href="https://zh-sg.support.procore.com/getting-started-with-procore" rel="internal">开始使用 Procore</a></li> <li><a title="常见问题" href="https://zh-sg.support.procore.com/faq" rel="internal">常见问题</a></li> <li><a title="为什么无法登录 Procore?" href="https://zh-sg.support.procore.com/faq/trouble-logging-in-to-procore" rel="internal">为什么无法登录 Procore?</a></li> <li><a title="用户权限矩阵 - Web" href="https://zh-sg.support.procore.com/references/user-permissions-matrix-web" rel="internal">用户权限矩阵 - Web</a></li> <li><a title="用户权限矩阵 - 移动版" href="https://zh-sg.support.procore.com/references/user-permission-matrix-mobile" rel="internal">用户权限矩阵 - 移动版</a></li> <li><a title="词汇表" href="https://zh-sg.support.procore.com/references/construction-management/glossary-of-terms" rel="internal">词汇表</a></li> </ul> </div> </div> <div class="mt-contentreuse-widget" data-page="Media_Library/Language_Specific_Media/Reusable_Snippets/Reusable_Text_Snippets" data-section="客户支持(zh-SG)" data-show="false"> <div class="mt-include" id="s4825"> <div mt-section-origin="Media_Library/Language_Specific_Media/Reusable_Snippets/Reusable_Text_Snippets" class="mt-section" id="section_120"><span id=".E5.AE.A2.E6.88.B7.E6.94.AF.E6.8C.81_2"></span><h5 id=".E5.AE.A2.E6.88.B7.E6.94.AF.E6.8C.81-4825"><span class="mt-icons-display mt-icon-bubble">客户支持</span></h5> <p>如果你需要其他故障排除或技术帮助,我们专门的客户支持团队会以提供世界一流的支持而自豪。 使用此页面上的 Web 表单向团队提交你的问题或使用我们的实时聊天选项 <text onclick="window.location.href='https://support.procore.com/references/contact-support';" onmouseover="this.style.cursor='pointer';" title="https://support.procore.com/参考资料/contact-support"><span style="color:#ff5200;">在这里</span></text>(提供英语和西班牙语)寻求紧急帮助。</p> <p>有关其他英语支持选项,请点击 <text onclick="window.location.href='https://support.procore.com/references/contact-support';" onmouseover="this.style.cursor='pointer';" title="https://support.procore.com/参考资料/contact-support"><span style="color:#ff5200;">在这里</span></text>。</p> </div></div> </div> </div></div> <style>/*<![CDATA[*/body #deki-page-title::before {content: url("/@api/deki/pages/:ccaec8e887044385a1dfc2a3a0f71434/files/=tool-icon_procore-logo.png");}/*]]>*/</style> </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/references/construction-management/glossary-of-terms" title="词汇表"><span>词汇表</span></a> </li> <li class="mt-pagination-next"> <a class="mt-icon-next-article" href="https://zh-sg.support.procore.com/references/information-security-and-privacy" 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?_=76f77a33377b2f0da26a22ff3a2c3345f92f980b: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>