26 lines
1.2 KiB
Plaintext
26 lines
1.2 KiB
Plaintext
|
|
<xiala class="xiala" z-index="10000">
|
|
<xiala-item value="{{ value1 }}" options="{{ option1 }}" bind:change="change"></xiala-item>
|
|
<xiala-item value="{{ value2 }}" options="{{ option2 }}" bind:change="change2"></xiala-item>
|
|
</xiala>
|
|
|
|
<scroll-view scroll-y="true" class="scroll" style=" width: 750rpx; height: 1250rpx; display: block; box-sizing: border-box">
|
|
<view class="top">
|
|
<view wx:for="{{['一','二','三','四','五']}}" class="top-text">星期{{item}}</view>
|
|
</view>
|
|
<view>
|
|
<view wx:for="{{[1,2,3,4,5,6,7,8,9,10]}}" class="left">
|
|
{{item}}
|
|
</view>
|
|
</view>
|
|
<view wx:for="{{[1,2,3,4,5,6,7,8,9,10]}}">
|
|
<view style="width: 750rpx; margin-top: {{(index+1)*100}}rpx; position: absolute; border-bottom: 1rpx solid {{index==3?'black':'lightgray'}}; left: 0rpx; top: 50rpx">
|
|
</view>
|
|
</view>
|
|
<view wx:for="{{reallist}}">
|
|
<view class="flex-item kcb-item" bindtap="showCardView" data-statu="open" data-index="{{index}}" style="margin-left: {{(item.week-1)*140}}rpx; margin-top: {{(item.lesson_start-1)*100+5}}rpx; height: {{item.lesson_end*100-5}}rpx; position: absolute; left: 55rpx; top: 50rpx ">
|
|
<view class="smalltext">{{item.course_name}}</view>
|
|
</view>
|
|
</view>
|
|
</scroll-view>
|