123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <template>
- <view>
- <car-common :login="true" mytitle="消息" :noback="false" ref="common"></car-common>
-
- <view class="new-time">
- 03-30 12:33
- </view>
- <view class="new-item">
- <view class="new-head">
- <h4>补缴车票通知</h4>
- <p>已经过您的预定下车站点,请重新选择下车站点并补缴车票。</p>
- </view>
- <view class="new-main">
- <view class="new-main-row">
- <p>站点:</p><span>玉桥</span>
- </view>
- <view class="new-main-row">
- <p>线路:</p><span>玉桥</span>
- </view>
- <view class="new-main-row">
- <p>状态:</p><span>玉桥</span>
- </view>
- </view>
- <view class="new-foot">
- <p>查看详情</p>
- <u-icon name="arrow-right" color="#999" size="28"></u-icon>
- </view>
- </view>
- <view class="new-time">
- 03-30 12:33
- </view>
- <view class="new-item">
- <view class="new-head">
- <h4>补缴车票通知</h4>
- <p>已经过您的预定下车站点,请重新选择下车站点并补缴车票。</p>
- </view>
- <view class="new-main">
- <view class="new-main-row">
- <p>站点:</p><span>玉桥</span>
- </view>
- <view class="new-main-row">
- <p>线路:</p><span>玉桥</span>
- </view>
- <view class="new-main-row">
- <p>状态:</p><span>玉桥</span>
- </view>
- </view>
- <view class="new-foot">
- <p>查看详情</p>
- <u-icon name="arrow-right" color="#999" size="28"></u-icon>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style>
- page{
- background-color: #f7f7f7;
- }
- </style>
- <style scoped lang="scss">
- .new-time{
- text-align: center;
- margin-top:10px;
- color:#999;
- }
- .new-item{
- background-color: #fff;
- margin: 10px;
- border-radius: 10px;
- border: 1px solid #eee;
- .new-head{
- padding: 10px;
- h4{
- font-size: 16px;
- }
- p{
- color:#999;
- margin-top: 3px;
- }
- }
- .new-main{
- padding: 10px;
- .new-main-row{
- display: flex;
- align-items: center;
- margin-bottom: 10px;
- p{
- width: 60px;
- color:#999;
- }
- }
- }
- .new-foot{
- padding: 10px;
- border-top: 1px solid #eee;
- display: flex;
- justify-content: space-between;
- align-items: center;
-
- }
- }
- </style>
|