12345678910111213141516171819202122232425262728293031323334353637383940 |
- <view>
- <view class="headed"><view class="top"></view></view>
- <view class="head flex-box flex-center-center">
- <view class="{{tabIndex==1?'activeIndex':''}} flex-1" data-index="1" catchTap="tabActive">
- <view>{{month_total}}</view>
- <view>{{dateStr}}月奖票</view>
- </view>
- <view class="{{tabIndex==2?'activeIndex':''}} flex-1" data-index="2" catchTap="tabActive">
- <view>{{total}}</view>
- <view>累计奖票</view>
- </view>
- </view>
- <view class="main">
-
- <view class="title" style="padding-bottom:0rpx">
- <text style="position: relative;" class="{{showDate? 'activeView':''}} text" catchTap="openDate" a:if="{{tabIndex==1}}">{{date}}</text>
- <text a:else>累计奖票</text>
- </view>
- <scroll-view class="scroll" a:if="{{list.length>0}}" scroll-y="{{true}}" onScrollToLower="onScrollToLower">
- <view class="flex-box-ce li " a:for="{{list}}" catchTap="openDetail" data-item="{{item}}" key="{{item.id}}">
- <view class="flex-box-v flex-center-center" style="width:140rpx;background:#C3E0FD;height:160rpx">
- <image mode="scaleToFill" src="../../../image/pj.png" style="width:60rpx;height:60rpx;margin-bottom:0.1rem"/>
- <text style="font-size:28rpx">奖票</text>
- </view>
- <view class="flex-1" style="padding:16rpx 20rpx">
- <view class="context">
- 在本题中,读入一个无向图的邻接矩阵(即数组表示),建立无向图并按照以上描述中的算法遍历所有顶点,输出遍历
- 顶点的顺序。【输入形式】输入的第一行包含一个正整数n,表示图中共有n个顶点。其中n不超过50。以后的n行中每行有n个用空格隔
- </view>
- <view class="flex-box-ce fontColorC" style="font-size:28rpx">
- <text class="flex-1">某某某</text>
- <text class="">2024-08-04</text>
- </view>
- </view>
- </view>
- </scroll-view>
- <no-data a:if="{{list.length==0}}" content="没有奖票" />
- </view>
- </view>
|