撤销提交

This commit is contained in:
杨丹华
2025-06-04 14:25:24 +08:00
parent 6cc0d79779
commit c81e217f80
28 changed files with 329 additions and 566 deletions

View File

@@ -108,17 +108,17 @@
{volist name="product_purchase_links" id="ppp" key="k"}
<a class="thebt bttype{$k}" href="{$ppp.link}">{$ppp.platform_name}</a>
{/volist}
<a class="thebt bttype3" id="open_form_modal">{:lang('product_detail.display_form')}</a>
<a class="thebt bttype3" id="open_form_modal">{:lang_i18n('发送查询')}</a>
</div>
</div>
</div>
<!-- 产品介绍详情-->
<div class="oriprInfo">
<div class="titleprinfo">
<a href="#detail" class="checkshow">{:lang('product_detail.detail_section_title')}</a>
<a href="#detail" class="checkshow">{:lang_i18n('产品详情')}</a>
{notempty name="product_related"}
<span>|</span>
<a href="#related">{:lang('product_detail.related_products')}</a>
<a href="#related">{:lang_i18n('相关产品')}</a>
{/notempty}
</div>
<!-- 富文本渲染-->
@@ -129,7 +129,7 @@
<!-- 关联产品 -->
{notempty name="product_related"}
<div class="glcpmain" id="related">
<div class="glcptitle">{:lang('product_detail.related_products')}</div>
<div class="glcptitle">{:lang_i18n('相关产品')}</div>
<div class="swiper-container glcpswiper">
<div class="swiper-wrapper">
{volist name="product_related" id="rel"}
@@ -152,21 +152,21 @@
<div id="form_modal" class="XJmodal">
<div class="XJmodal-content">
<span class="close">&times;</span>
<h2>{:lang('product_detail.display_form')}</h2>
<h2>{:lang_i18n('发送查询')}</h2>
<form action="" method="post" autocomplete="off">
<div class="tkitem">
<div class="form-group">
<label for="firstName">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> {:lang('product_detail.form_name')}</label>
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> {:lang_i18n('姓名')}</label>
<div>
<input type="text" name="first_name" id="firstName" placeholder="{:lang('product_detail.form_first_name_placeholder')}" class="detail-w">
<input type="text" name="last_name" id="lastName" placeholder="{:lang('product_detail.form_last_name_placeholder')}" class="detail-w">
<input type="text" name="first_name" id="firstName" placeholder="{:lang_i18n('请输入您的名')}" class="detail-w">
<input type="text" name="last_name" id="lastName" placeholder="{:lang_i18n('请输入您的姓')}" class="detail-w">
</div>
</div>
<div class="form-group">
<label for="corp">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang('product_detail.form_corp')}
{:lang_i18n('公司/组织')}
</label>
<input type="text" name="corp_name" id="corp" class="detail-w01">
</div>
@@ -174,15 +174,15 @@
<div class="tkitem">
<div class="form-group">
<label for="email">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> Email
{:lang('product_detail.form_email')}
<strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang_i18n('电子邮箱')}
</label>
<input type="text" name="email" id="email" class="detail-w01">
</div>
<div class="form-group">
<label for="phone">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong> Phone
{:lang('product_detail.form_phone')}
<strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang_i18n('电话号码')}
</label>
<input type="text" name="phone" id="phone" class="detail-w01">
</div>
@@ -191,10 +191,10 @@
<div class="form-group">
<label for="country">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang('product_detail.form_country')}
{:lang_i18n('国家')}
</label>
<select name="country_name" id="country">
<option value="">{:lang('product_detail.form_country_placeholder')}</option>
<option value="">{:lang_i18n('请选择所属国家')}</option>
{volist name="country_list" id="country"}
<option value="{$country}">{$country}</option>
{/volist}
@@ -203,7 +203,7 @@
<div class="form-group">
<label for="industry">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang('product_detail.form_industry')}
{:lang_i18n('行业')}
</label>
<input type="text" name="industry" id="industry" class="detail-w01">
</div>
@@ -212,12 +212,12 @@
<div class="form-group" style="width: 100%;margin-right: 0px;">
<label for="message">
<strong style="color: red; margin-right: 0.3125rem;"> * </strong>
{:lang('product_detail.form_inquiry')}
{:lang_i18n('询问内容')}
</label>
<textarea name="message" id="message"></textarea>
</div>
</div>
<button type="button" id="send" class="submit-btn">{:lang('product_detail.form_submit')}</button>
<button type="button" id="send" class="submit-btn">{:lang_i18n('提交')}</button>
</form>
</div>
</div>