You've already forked qlg.tsgz.moe
							
							
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
| 
 | |
| {extend name="base" /}
 | |
| {block name="js"}
 | |
| <script src="__ADMIN__/payments/payments.js?v={$v}" type="text/javascript"></script>
 | |
| {/block}
 | |
| {block name="main"}
 | |
| <div class="l-loading" style="display: block" id="wst-loading"></div>
 | |
| 
 | |
| <form id="payForm" autocomplete="off">
 | |
| <table class='wst-form wst-box-top'>
 | |
|   <tr>
 | |
|       <th width='150'>支付名称<font color='red'>*</font>:</th>
 | |
|           <td>
 | |
|             <input type="text" id="payName" name="payName" value="{$object['payName']}" class="ipt" maxLength='100' />
 | |
|           </td>
 | |
|        </tr>
 | |
|        <tr>
 | |
|           <th>APPID<font color='red'>*</font>:</th>
 | |
|           <td>
 | |
|             <input type="text" id="appId" name="appId" value="{$object['appId'] ?? ''}" class="cfg" maxLength='100' />
 | |
|           </td>
 | |
|        </tr>
 | |
|        <tr>
 | |
|           <th>微信支付商户号<font color='red'>*</font>:(mch_id)    </th>
 | |
|           <td>
 | |
|               <input type="text" id="mchId" name="mchId" value="{$object['mchId']?? ''}" class="cfg" maxLength='100' />
 | |
|           </td>
 | |
|        </tr>
 | |
|        <tr>
 | |
|           <th>API密钥(key)<font color='red'>*</font>:</th>
 | |
|           <td>
 | |
|               <input type="text" id="apiKey" name="apiKey" value="{$object['apiKey']?? ''}" class="cfg" maxLength='100' />
 | |
|           </td>
 | |
|        </tr>
 | |
|        <tr>
 | |
|           <th>Appsecret<font color='red'>*</font>:</th>
 | |
|           <td>
 | |
|               <input type="text" id="appsecret" name="appsecret" value="{$object['appsecret']?? ''}" class="cfg" maxLength='100' />
 | |
|               <input type="hidden" id="payIcon"  class="cfg" maxLength='100' />
 | |
|           </td>
 | |
|        </tr>
 | |
|        <tr>
 | |
|           <th>支付方式描述<font color='red'>*</font>:</th>
 | |
|           <td> 
 | |
|               <textarea id="payDesc" name="payDesc" class="ipt" style="width:340px;height:100px;">{$object['payDesc']}</textarea>
 | |
|           </td>
 | |
|        </tr>
 | |
|        <tr>
 | |
|           <th>排序号<font color='red'>*</font>:</th>
 | |
|           <td> 
 | |
|               <input type="text" id="payOrder" name="payOrder" value="{$object['payOrder']}" class="ipt" maxLength='20' />
 | |
|           </td>
 | |
|        </tr>
 | |
|   
 | |
|   <tr>
 | |
|      <td colspan='2' align='center' class='wst-bottombar'>
 | |
|        <input type="hidden" id="id" value="{$object['id']}" />
 | |
|        <button type="submit" class="btn btn-primary btn-mright"><i class="fa fa-check"></i>提交</button> 
 | |
|         <button type="button" class="btn" onclick="javascript:history.go(-1)"><i class="fa fa-angle-double-left"></i>返回</button>
 | |
|      </td>
 | |
|   </tr>
 | |
| </table>
 | |
| </form>
 | |
| 
 | |
| 
 | |
| {/block}
 | |
| 
 |