123456789101112131415161718192021222324252627282930313233 |
- {layout name="admin:layout" /}
- <div class="tipbox tipbox-message">
- <span class="fn-fb">友情提示:</span>
- <p class="gray">
- 1、本平台很多服务接口都是用的阿里云市场的接口,</a><br />
- 2、打开阿里云市场官网:<a href="https://market.aliyun.com/products" target="_blank" class="gray">https://market.aliyun.com/products</a> 申请开通自己的服务<br />
- 3、例如Gps定位服务、Ip定位等服务,开发者自己开发应用请查看官网<a href="https://www.sapixx.com" target="_blank" class="gray">https://www.sapixx.com</a>的开发文档</a>
- </p>
- </div>
- <form id="form" action="{url('sysyte/admin.setting/aliApi')}">
- <table class="formtable">
- <tr>
- <th>APPCODE:</th>
- <td><input class="input w300" datatype="*" type="text" name="appcode" value="{$info.appcode}" /></td>
- </tr>
- <tr>
- <th>价格/次:</th>
- <td><input class="input w300" datatype="*" type="text" name="price" value="{$info.price ? $info.price : 0}"/></td>
- </tr>
- <tr>
- <th></th>
- <td>
- <input type="submit" value="确定" class="button submit" />
- <input type="reset" value="重置" class="button button-blank" />
- </td>
- </tr>
- </table>
- </form>
- <script type="text/javascript">
- Do('base', 'layer', 'form', function () {
- $('#form').isForm();
- })
- </script>
|