Commit f6a45462 authored by youjie's avatar youjie

no message

parent 2d16f97c
......@@ -218,7 +218,7 @@
</div>
<div :style="{'height':tableHeight+'px'}" style="overflow: auto;" v-loading="loading">
<div v-if="ViewType==1" class="listone-box">
<div class="listone-form" v-for="(x,index) in tableData">
<div class="listone-form" v-for="(x,index) in tableData" :key="index">
<el-image v-if="x.ImageList" class="listone-img" :src="x.ImageList[0]" fit="contain">
<div slot="placeholder" class="image-slot">
<span>
......@@ -231,7 +231,11 @@
</el-image>
<div class="listone-list">
<div class="list-left">
<h6 @click="showCardHandler(x)">{{x.Name}}</h6>
<h6 @click="showCardHandler(x)">{{x.Name}}
<el-tag size="mini" type="warning"><template v-if="x.CarType==1">送机</template>
<template v-if="x.CarType==2">接机</template>
<template v-if="x.CarType==3">包车</template></el-tag>
</h6>
<div>
<el-tag v-if="x.FreeCancelDay>0" size="mini">{{x.FreeCancelDay+'天前可免費取消'}}</el-tag>
<el-tag v-if="x.TravelHours>0" size="mini" type="warning">{{'包车'+x.TravelHours+'小时'}}</el-tag>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment