作业计划页面搭建
This commit is contained in:
parent
42ca3ba518
commit
f5ae7a0d84
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
<scroll-view scroll-y="true">
|
||||
<!-- 轮播图区域 -->
|
||||
<swiper class="swiper-container" interval="3000" circular indicator-dots>
|
||||
<swiper class="swiper-container" autoplay interval="3000" circular indicator-dots>
|
||||
<!-- 轮播图 1 -->
|
||||
<swiper-item class="item_1 swiper-item-container">
|
||||
<view>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,11 @@
|
|||
<template>
|
||||
<view>
|
||||
<text>风险日历</text>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {}
|
||||
</script>
|
||||
|
||||
<style></style>
|
||||
|
|
@ -15,6 +15,8 @@
|
|||
<DayRiskView />
|
||||
<!-- 滚动提示 -->
|
||||
<HomeNoticeBar />
|
||||
<!-- 风险日历 -->
|
||||
<RiskCalendar />
|
||||
</scroll-view>
|
||||
|
||||
<m-tabbar fixed fill :current="0" :tabbar="tabbar"></m-tabbar>
|
||||
|
|
@ -26,10 +28,12 @@ import TabbarConfig from '../util/tabbar'
|
|||
|
||||
import DayRiskView from './components/day-risk-view'
|
||||
import HomeNoticeBar from './components/home-notice-bar'
|
||||
import RiskCalendar from './components/risk-calendar.vue'
|
||||
export default {
|
||||
components: {
|
||||
DayRiskView,
|
||||
HomeNoticeBar
|
||||
HomeNoticeBar,
|
||||
RiskCalendar
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in New Issue