taskCard.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <template>
  2. <view>
  3. <!--导航栏-->
  4. <view @tap="closeFrame">
  5. <cu-custom bgColor="bg-gradual-sisBlack" :isBack="true">
  6. <block slot="backText"><view style="height: 80rpx;line-height: 80rpx;color: silver;">返回</view></block>
  7. <block slot="content"><view style="color: silver;">任务详情</view></block>
  8. </cu-custom>
  9. </view>
  10. <!-- 导航栏 -->
  11. <scroll-view scroll-x class="bg-white nav">
  12. <view class="flex text-center">
  13. <view class="cu-item flex-sub" :class="index == TabCur ? 'text-orange cur' : ''" v-for="(item, index) in nameList" :key="index" @tap="tabSelect" :data-id="index">
  14. {{ item }}
  15. </view>
  16. </view>
  17. </scroll-view>
  18. <!-- 任务卡片 -->
  19. <view v-if="TabCur == 0">
  20. <view class="cu-card dynamic" >
  21. <view class="cu-item shadow">
  22. <view class="cu-list menu-avatar">
  23. <view class="cu-item">
  24. <view class="cu-avatar round lg" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big10006.jpg);"></view>
  25. <view class="content flex-sub">
  26. <view>凯尔</view>
  27. <view class="text-gray text-sm flex justify-between">2019年12月3日</view>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="text-content">未完成</view>
  32. </view>
  33. </view>
  34. <view class="cu-card dynamic" >
  35. <view class="cu-item shadow">
  36. <view class="cu-list menu-avatar">
  37. <view class="cu-item">
  38. <view class="cu-avatar round lg" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big10006.jpg);"></view>
  39. <view class="content flex-sub">
  40. <view>凯尔</view>
  41. <view class="text-gray text-sm flex justify-between">2019年12月3日</view>
  42. </view>
  43. </view>
  44. </view>
  45. <view class="text-content">未完成</view>
  46. </view>
  47. </view>
  48. </view>
  49. <view v-if="TabCur == 1">
  50. <view class="cu-card dynamic">
  51. <view class="cu-item shadow">
  52. <view class="cu-list menu-avatar">
  53. <view class="cu-item">
  54. <view class="cu-avatar round lg" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big10006.jpg);"></view>
  55. <view class="content flex-sub">
  56. <view>凯尔</view>
  57. <view class="text-gray text-sm flex justify-between">2019年12月3日</view>
  58. </view>
  59. </view>
  60. </view>
  61. <view class="text-content">已完成</view>
  62. </view>
  63. </view>
  64. </view>
  65. <view v-if="TabCur == 2">
  66. <view class="cu-card dynamic" >
  67. <view class="cu-item shadow">
  68. <view class="cu-list menu-avatar">
  69. <view class="cu-item">
  70. <view class="cu-avatar round lg" style="background-image:url(https://ossweb-img.qq.com/images/lol/web201310/skin/big10006.jpg);"></view>
  71. <view class="content flex-sub">
  72. <view>凯尔</view>
  73. <view class="text-gray text-sm flex justify-between">2019年12月3日</view>
  74. </view>
  75. </view>
  76. </view>
  77. <view class="text-content">分配我的</view>
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. </template>
  83. <script>
  84. export default {
  85. data() {
  86. return {
  87. nameList: ['未完成', '已完成', '分配我的'],
  88. TabCur: 0,
  89. scrollLeft: 0
  90. };
  91. },
  92. methods: {
  93. closeFrame: function() {
  94. this.count = this.count + 1;
  95. if (this.isFrameShow) {
  96. this.isFrameShow = false;
  97. this.sanJiao = 'sanJiaoDown';
  98. }
  99. },
  100. tabSelect(e) {
  101. this.TabCur = e.currentTarget.dataset.id;
  102. this.scrollLeft = (e.currentTarget.dataset.id - 1) * 60;
  103. }
  104. }
  105. };
  106. </script>
  107. <style></style>