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