| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view class='safetyEducationExamination-workbench'>
- <user-info-card></user-info-card>
- <Workbench-stats-cards></Workbench-stats-cards>
- </view>
- </template>
- <script>
- import {
- userInfoCard
- } from '@/pages_safetyEducationExamination/component/workbench/userInfoCard'
- import {
- workbenchStatsCards
- } from '@/pages_safetyEducationExamination/component/workbench/workbenchStatsCards.vue'
- export default {
- components: {
- userInfoCard,
- workbenchStatsCards,
- },
- data() {
- return {
-
- }
- },
- created() {
-
- },
- methods: {
-
- }
- }
- </script>
- <style lang="stylus" scoped>
- .safetyEducationExamination-workbench {
- flex:1;
- display: flex;
- flex-direction: column;
- overflow-y:scroll;
- }
- </style>
|