12345678910111213141516171819 |
- <cu-custom isBack bgColor="bg-gradual-blue">
- <view slot="backText">返回</view>
- <view slot="content">通知详情</view>
- </cu-custom>
- <view class="cu-card ">
- <view class="cu-item shadow">
- <view class="cu-item padding-tb">
- <view>
- <view class="text-center text-xl bold">{{value.value}}</view>
- <view class="text-center text-xl text-gray text-sm">
- {{value.create_time}}
- </view>
- </view>
- </view>
- <view class="text-content text-xl solid-top padding">
- {{value.detail}}
- </view>
- </view>
- </view>
|