version-entrance.html 952 B

123456789101112131415161718192021222324252627
  1. {template 'common/header'}
  2. <div id="js-weentrance-display" ng-controller="WxappEntranceCtrl">
  3. <table class="table we7-table table-hover site-list">
  4. <col width="100px"/>
  5. <col width="40px"/>
  6. <col width="180px"/>
  7. <tr>
  8. <th colspan="3">名称</th>
  9. <th colspan="3">小程序入口标识</th>
  10. <th colspan="3">操作</th>
  11. </tr>
  12. <tr ng-repeat="module_info in moduleList">
  13. <td colspan="3">{{module_info.title}}</td>
  14. <td colspan="3">{{module_info.do}}</td>
  15. <td colspan="3">
  16. <a href="javascript:;" id="copy-{{module_info.eid}}" class="color-default" clipboard supported="supported" text="module_info.do" on-copied="success(module_info.eid)">点击复制</a>
  17. </td>
  18. </tr>
  19. </table>
  20. </div>
  21. <script>
  22. angular.module('wxApp').value('config', {
  23. moduleList: {php echo !empty($module_info) ? json_encode($module_info) : 'null'},
  24. });
  25. angular.bootstrap($('#js-weentrance-display'), ['wxApp']);
  26. </script>
  27. {template 'common/footer'}