Init Repo

This commit is contained in:
root
2019-09-06 23:53:10 +08:00
commit f0ef89dfbb
7905 changed files with 914138 additions and 0 deletions

View File

@ -0,0 +1,88 @@
{extend name="default/base" /}
{block name="title"}入驻人联系方式 - 商家入驻 - {:WSTConf('CONF.mallName')}{__block__}{/block}
{block name="main"}
<link href="__STATIC__/plugins/validator/jquery.validator.css?v={$v}" rel="stylesheet">
<link href="__STYLE__/css/shopapply.css?v={$v}" rel="stylesheet">
<div class="wst-container">
<div id="stepflex" class="stepflex">
<dl class="first doing">
<dt class="s-num">1</dt>
<dd class="s-text">签订入驻协议</dd>
<dd></dd>
</dl>
<dl class="normal doing">
<dt class="s-num">2</dt>
<dd class="s-text">入驻人联系方式</dd>
<dd></dd>
</dl>
<dl class="normal">
<dt class="s-num1">3</dt>
<dd class="s-text1">公司信息</dd>
</dl>
<dl class="normal">
<dt class="s-num1">4</dt>
<dd class="s-text1">税务及银行信息</dd>
</dl>
<dl class="normal">
<dt class="s-num1">5</dt>
<dd class="s-text1">店铺信息</dd>
</dl>
<dl class="last">
<dt class="s-num1">6</dt>
<dd class="s-text1">入驻审核</dd>
</dl>
</div>
<div class='wst-clear'></div>
<div class='main-head'>入驻人联系方式</div>
<div class='apply-box'>
<form id='applyFrom' autocomplete='off'>
<table class='agreement-table' style='margin-top:10px;margin-bottom:10px;'>
<tr>
<th>联系人姓名<font color='red'>*</font></th>
<td><input type='text' id='applyLinkMan' class='a-ipt' data-rule='联系人姓名:required;' value="{$apply['applyLinkMan']}"/></td>
</tr>
<tr>
<th>联系人手机<font color='red'>*</font></th>
<td><input type='text' class='a-ipt' id='applyLinkTel' data-rule='联系人手机:required;mobile' value="{$apply['applyLinkTel']}"/></td>
</tr>
<!--
<tr>
<th>联系人电子邮箱<font color='red'>*</font></th>
<td>
<input type='text' name='applyLinkEmail' class='a-ipt' id='applyLinkEmail' data-rule='联系人电子邮箱:required;email' value="{$apply['applyLinkEmail']}"/>
<br/><span class='tip'>用于入驻过程中接收商城审核结果,请务必正确填写。</span>
</td>
</tr>
-->
<tr>
<th>对接商城招商人员<font color='red'>*</font></th>
<td>
<label>
<input type='radio' name='isInvestment' id='isInvestment1' class='a-ipt' value='1' onclick='javascript:WST.showHide(1,"#investmentStaffTr")' {if $apply['isInvestment']==1}checked{/if}/>
</label>
<label>
<input type='radio' name='isInvestment' id='isInvestment0' class='a-ipt' value='0' onclick='javascript:WST.showHide(0,"#investmentStaffTr")' {if $apply['isInvestment']==0}checked{/if}/>
</label>
如果没有联系过商城招商人员请选择“无”。
</td>
</tr>
<tr id='investmentStaffTr' {if $apply['isInvestment']==0}style='display:none'{/if}>
<th>姓名<font color='red'>*</font></th>
<td>
<input type='text' name='investmentStaff' id='investmentStaff' class='a-ipt' data-rule="商城招商人员姓名:required(#isInvestment1:checked)" value="{$apply['investmentStaff']}"/>
</td>
</tr>
</table>
</form>
</div>
<div class='agreement-bottom'>
<a href='{:Url("home/shops/joinstep1")}' class='btn-cancel'>上一步</a>
<a href='javascript:saveStep2()' class='btn-submit' style='margin-left:10px;'>下一步</a>
<div class='wst-clear'></div>
</div>
</div>
{/block}
{block name="js"}
<script type="text/javascript" src="__STATIC__/plugins/validator/jquery.validator.min.js?v={$v}"></script>
<script type='text/javascript' src='__STYLE__/js/apply.js?v={$v}'></script>
{/block}