1234567891011121314151617181920212223242526272829 |
- <template>
- <!-- 应用 -->
- <view class="application">
- <c-navbar :leftIconSize="0" title="应用"> </c-navbar>
- <oftenModular :icon="rsgl" title="人事管理"></oftenModular>
- </view>
- </template>
- <script>
- import oftenModular from '@/pages/home/oftenModular.vue';
- import rsgl from '@/static/images/application/rsgl.png';
- export default {
- name: 'application',
- components: {
- oftenModular,
- },
- data() {
- return {
- rsgl,
- };
- },
- };
- </script>
- <style scoped lang="scss">
- .application {
- padding: 28rpx;
- }
- </style>
|