info.wxml 5.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
  2. <view slot="info" class="container main">
  3. <view class="one">
  4. <s-tab tabs="{{tabs}}" bind:tabsChange="tabsChange"></s-tab>
  5. </view>
  6. <view class="two">
  7. <view wx:if="{{tabs.active=='0'}}" class="a">
  8. <scroll-view scroll-y="true" class="scroll-view">
  9. <view class="list-scroll-view">
  10. <view class="one">
  11. <view class="one_1">
  12. <text class="text">课程标题:</text>
  13. <text class="text1">{{form.title||'暂无'}}</text>
  14. </view>
  15. <view class="one_1">
  16. <text class="text">学校名称:</text>
  17. <text class="text1">{{form.zhSchool||'暂无'}}</text>
  18. </view>
  19. <view class="one_1">
  20. <text class="text">人数上限:</text>
  21. <text class="text1">{{form.limit||'暂无'}}人</text>
  22. </view>
  23. <view class="one_1">
  24. <text class="text">开始时间:</text>
  25. <text class="text1">{{form.time_start||'暂无'}}</text>
  26. </view>
  27. <view class="one_1">
  28. <text class="text">结束时间:</text>
  29. <text class="text1">{{form.time_end||'暂无'}}</text>
  30. </view>
  31. <view class="one_1">
  32. <text class="text">状态:</text>
  33. <text class="text1">{{form.zhStatus||'暂无'}}</text>
  34. </view>
  35. <view class="one_1">
  36. <text class="text">课程费(元):</text>
  37. <text class="text1">{{form.money||'暂无'}}</text>
  38. </view>
  39. <view class="one_1">
  40. <text class="text">退款期限:</text>
  41. <text class="text1">{{form.refund_hour||'暂无'}}</text>
  42. </view>
  43. <view class="one_1">
  44. <text class="text">简介:</text>
  45. <text class="text1">{{form.brief||'暂无'}}</text>
  46. </view>
  47. </view>
  48. </view>
  49. </scroll-view>
  50. </view>
  51. <view wx:elif="{{tabs.active=='1'}}" class="b">
  52. <scroll-view scroll-y="true" class="scroll-view">
  53. <view class="list-scroll-view">
  54. <view class="list" wx:for="{{coach}}" wx:key="index">
  55. <view class="name">{{item.coach_id_name||'暂无'}}</view>
  56. <view class="other">
  57. <view class="other_1">
  58. <text>课程名称:</text>
  59. <text>{{item.lesson_id_title||'暂无'}}</text>
  60. </view>
  61. <view class="other_1">
  62. <text>所属学校:</text>
  63. <text>{{item.school_id_name||'暂无'}}</text>
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. </scroll-view>
  69. </view>
  70. <view wx:elif="{{tabs.active=='2'}}" class="b">
  71. <scroll-view scroll-y="true" class="scroll-view">
  72. <view class="list-scroll-view">
  73. <view class="list" wx:for="{{student}}" wx:key="index">
  74. <view class="name">{{item.student_id_name||'暂无'}}</view>
  75. <view class="other">
  76. <view class="other_1">
  77. <text>是否试课:</text>
  78. <text>{{item.is_try=='0'?'非试课':item.is_try=='1'?'试课':'暂无'}}</text>
  79. </view>
  80. <view class="other_1">
  81. <text>缴费金额:</text>
  82. <text>{{item.money||'暂无'}}元</text>
  83. </view>
  84. <view class="other_1">
  85. <text>所属学院:</text>
  86. <text>{{item.school_id_name||'暂无'}}</text>
  87. </view>
  88. </view>
  89. </view>
  90. </view>
  91. </scroll-view>
  92. </view>
  93. </view>
  94. </view>
  95. </mobile-main>