|
- <template>
- <div class="app-container" >
- <van-nav-bar
- title="我的竞价"
- left-arrow
- fixed
- placeholder
- @click-left="onClickLeft"
- />
- <van-list
- v-model="loading"
- :finished="finished"
- finished-text="没有更多了"
- @load="onLoad"
- class="biddingList"
- >
- <van-row>
- <van-col span="11" style="font-size: 0.4rem;line-height: 0.65rem">管家堡乡张村张三丰500亩水田出租出</van-col>
- <van-col span="13">
- <van-row class="row">
- <van-col span="9">距竞价结束</van-col>
- <van-col span="15" class="col"><van-count-down :time="time" format="DD天HH时mm分ss秒" style="font-size: 0.2rem;color: #C21F3A" /></van-col>
- </van-row>
- <van-row class="row">
- <van-col span="9">当前价格</van-col>
- <van-col span="15" class="col"><span>500</span>元/亩/年</van-col>
- </van-row>
- <van-row class="row" style="margin: 0;">
- <van-col span="9">我的出价</van-col>
- <van-col span="15" class="col"><span>500</span>元/亩/年</van-col>
- </van-row>
- </van-col>
- </van-row>
- <van-divider :style="{borderColor:'#B4B4B4'}"/>
-
- </van-list>
- </div>
- </template>
-
- <script>
- export default {
- name: "notice",
- data() {
- return {
- loading: false,
- finished: true,
- time: 30 * 60 * 60 * 1000,
- };
- },
- created() {
- },
- methods: {},
- };
- </script>
-
- <style scoped lang="scss">
- .app-container {
-
- }
- .biddingList{
- padding: 0.5rem 2% 0;
- .van-row{
- padding: 0 3%;
- }
- }
- .row{
- color: #666666;
- margin-bottom: 5px;
- }
- .col{
- color: #C21F3A;
- span{
- font-weight: bold;
- }
- }
- </style>
|