123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <template>
- <view style="padding: 30rpx;">
- <view v-for="(item, index) in list" :key="index" style="margin-bottom: 30rpx;">
- <navigator url="/pages2/bank/detail">
- <view class="class_item">
- <image src="/static/login_bg.jpg" style="height: 316rpx;width: 100%;border-radius: 24rpx;"></image>
- <view style="color: #333333;font-weight: bold;font-size: 32rpx;">
- 2020年二建建筑工程管理与实务(实务专题
- 班)
- </view>
- <view class=".content_box">
- <image src="/static/icon/wk_icon2.png" class="wk_icon"></image>
- 学习有效期:<text class="content"> 2020.11.20 - 2021.12.19 </text>
- </view>
- </view>
- </navigator>
- <view class="bottomBox">
- <view class="box_progress">
- <view style="width: 60%;">
- <u-line-progress active-color="#007AFF" :percent="70"></u-line-progress>
- </view>
- <view>
- <u-button type="primary" size="mini">进入刷题</u-button>
- </view>
- </view>
- </view>
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- list:[
- 1,2,3
- ]
-
- }
- },
- onLoad(option) {
- // this.getDict()
- },
- onShow(){
-
- },
- methods: {
- studyIn(){
- this.$navTo.togo('/pages2/verify/input');
- },
- appointment(){
- this.$navTo.togo('/pages2/appointment/index');
- }
- },
-
- }
- </script>
- <style >
- page {
- background: #EAEEF1;
- }
- </style>
- <style scope>
-
- .box_progress{
- display: flex;
- justify-content:space-between;
- align-items: center;
- margin-top: 20rpx;
- }
- .bottomBox{
- background: #FFFFFF;
- width: 94%;
- border-bottom-left-radius: 24rpx;
- border-bottom-right-radius: 24rpx;
- margin: 0 auto;
- padding: 20rpx;
- }
- .content_box{
- display: flex;
- align-items: center;
- color: #999999;
- margin-top: 8rpx;
- }
- .content{
- color: #000000;
- margin: 0 8rpx;
- }
- .wk_icon{
- width: 24rpx;
- height: 24rpx;
- margin-right: 8rpx;
- }
- .class_item{
- width: 100%;
- height: 514rpx;
- background: #FFFFFF;
- box-shadow: 0rpx 10rpx 9rpx 1rpx rgba(165, 196, 239, 0.1);
- border-radius: 24rpx;
- padding: 20rpx;
- z-index: 999;
- position: relative;
- }
- </style>
|