index.vue 523 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <!-- 应用 -->
  3. <view class="application">
  4. <c-navbar :leftIconSize="0" title="应用"> </c-navbar>
  5. <oftenModular :icon="rsgl" title="人事管理"></oftenModular>
  6. </view>
  7. </template>
  8. <script>
  9. import oftenModular from '@/pages/home/oftenModular.vue';
  10. import rsgl from '@/static/images/application/rsgl.png';
  11. export default {
  12. name: 'application',
  13. components: {
  14. oftenModular,
  15. },
  16. data() {
  17. return {
  18. rsgl,
  19. };
  20. },
  21. };
  22. </script>
  23. <style scoped lang="scss">
  24. .application {
  25. padding: 28rpx;
  26. }
  27. </style>