card.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <view class="card flex" @tap="goDetail(item)">
  3. <view class="card-left">
  4. <img mode="aspectFill" :src="item.image" alt="" />
  5. </view>
  6. <view class="card-right flex-sub">
  7. <view class="card-title flex justify-between"
  8. ><text>{{ item.attend_name }}</text
  9. ><text class="text-student text-light">¥{{ item.money }}</text></view
  10. >
  11. <view class="text-gray text-sm"
  12. ><text>{{ item.day }}</text></view
  13. >
  14. <view class="text-gray text-sm">{{ item.grade_desc }}</view>
  15. <view class="margin-top-sm">
  16. <button class="cu-btn round bg-student text-white button-hover" v-if="item.enable">报课</button>
  17. <button class="cu-btn round bg-grey button-hover text-white disabled" v-else>停止</button>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. props: {
  25. item: {
  26. type: Object,
  27. default() {
  28. return {}
  29. }
  30. }
  31. },
  32. data() {
  33. return {
  34. key: 1212
  35. }
  36. },
  37. methods: {
  38. goDetail(item) {
  39. if (!item.enable) {
  40. uni.showToast({ title: '课程已停止!', icon: 'none' })
  41. return false
  42. }
  43. this.globalNavigateTo('classDetail', { attend_id: this.item.class_attend_id })
  44. }
  45. }
  46. }
  47. </script>
  48. <style lang="scss" scoped>
  49. @import '~@/common/css/mixin.scss';
  50. .card {
  51. padding: 30rpx;
  52. width: 100%;
  53. &-title {
  54. @include title(10px, 14px);
  55. }
  56. &-left {
  57. margin-right: 20rpx;
  58. width: 240rpx;
  59. image {
  60. height: 96px;
  61. }
  62. }
  63. &-right {
  64. }
  65. }
  66. </style>