ali_api.html 1.4 KB

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