123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <template>
- <view class="content">
- <view class="main">
- <view class="main-item" v-for="(item,index) in 10">
- <view class="main-icon-box">
- <image class="main-icon"
- :src="index%2==0? '../../static/icon/rsyj.png':'../../static/icon/ysyj.png'" mode=""></image>
- </view>
- <view class="main-main">
- <view class="main-title flex">
- <view class="title">
- [XX订单]{{index%2==0? '红色预警':'黄色预警'}}
- </view>
- <view class="time">
- 2022/12/09 12:00:00
- </view>
- </view>
- <view class="main-tip flex">
- <view class="tip">
- [采购]时间即将到期,到期时间2022年02月30日
- </view>
- <view class="dian" v-if="index <= 2">
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- onLoad() {},
- onShow() {},
- onReachBottom() {},
- onReady() {},
- methods: {}
- };
- </script>
- <style lang="scss">
- page,
- .content {
- min-height: 100%;
- height: auto;
- }
- .main {
- margin-top: 20rpx;
- background: #ffffff;
- }
- .main-item {
- display: flex;
- align-items: center;
- padding: 32rpx 24rpx 0 34rpx;
- .main-icon-box {
- padding-bottom: 20rpx;
- }
- .main-icon {
- flex-shrink: 0;
- width: 60rpx;
- height: 60rpx;
- }
- .main-main {
- padding-bottom: 20rpx;
- width: 100%;
- margin-left: 24rpx;
- border-bottom: 1px solid #f0f0f0;
- .main-title {
- line-height: 1;
- .title {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .time {
- font-size: 20rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- }
- .main-tip {
- line-height: 1;
- margin-top: 18rpx;
- .tip {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- }
- .dian {
- width: 13rpx;
- height: 13rpx;
- background: #FB555C;
- border-radius: 50%;
- }
- }
- }
- }
- </style>
|