1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="main">
- <view class="padding-lr">
- <view v-for="(item,index) in 4" :key="index" class="padding-lr-sm padding-tb-sm bg-white margin-top-sm" style="border-radius: 16rpx;box-shadow: 0 0 50rpx 0 rgba(0, 0, 0, 0.1);">
- <view class="flex justify-start align-center">
- <u-icon name="order"></u-icon>
- <text class="text-lg margin-left-xs">订单通知</text>
- <text class="flex-sub text-right">10:10</text>
- </view>
- <view class="margin-top-sm">
- 您接到一个新的图文咨询订单,请尽快确认 (点击查看订单详情)
- </view>
- <view class="text-right" style="position: relative">
- <u-badge size="mini" :absolute="false" type="error" :is-dot="true"></u-badge><text class="margin-left-xs">未读</text>
- </view>
- </view>
- </view>
- <view class="cu-tabbar-height"></view>
- <view class="cu-tabbar-height"></view>
- </view>
- </template>
- <script>
- export default {
- onLoad(options) {
- },
- mounted() {
- },
- data() {
- return {
- }
- },
- methods: {
-
- }
- };
- </script>
- <style scoped lang="scss">
- .main {}
- </style>
|