myGrant.axml 2.0 KB

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