123456789101112131415161718192021 |
- {template 'common/header'}
- <div class="we7-page-title">更新缓存</div>
- <ul class="we7-page-tab"></ul>
- <div class="form-group we7-form" id="js-system-updatecache" ng-controller="UpdateCacheCtrl" ng-cloak>
- <div class="col-sm-2">缓存类型</div>
- <div class="col-sm-10 we7-form">
- <input type="checkbox" name="type[]" value="data" id="type_data" checked="checked" />
- <label for="type_data" class="checkbox-inline">
- 数据缓存
- </label>
- <input type="checkbox" name="type[]" value="template" id="type_template" checked="checked" />
- <label for="type_template" class="checkbox-inline">
- 模板缓存
- </label>
- </div>
- <span class="btn btn-primary we7-padding-horizontal we7-margin-top" ng-click="updateCache()">提交</span>
- </div>
- <script>
- angular.bootstrap($("#js-system-updatecache"), ['systemApp']);
- </script>
- {template 'common/footer'}
|