index.wxml 561 B

12345678910111213141516171819
  1. <cu-custom isBack bgColor="bg-gradual-blue">
  2. <view slot="backText">返回</view>
  3. <view slot="content">通知详情</view>
  4. </cu-custom>
  5. <view class="cu-card ">
  6. <view class="cu-item shadow">
  7. <view class="cu-item padding-tb">
  8. <view>
  9. <view class="text-center text-xl bold">{{value.value}}</view>
  10. <view class="text-center text-xl text-gray text-sm">
  11. {{value.create_time}}
  12. </view>
  13. </view>
  14. </view>
  15. <view class="text-content text-xl solid-top padding">
  16. {{value.detail}}
  17. </view>
  18. </view>
  19. </view>