|
@@ -143,7 +143,7 @@
|
|
</div>
|
|
</div>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="盲票组名称" prop="title" min-width="80" />
|
|
<el-table-column label="盲票组名称" prop="title" min-width="80" />
|
|
- <el-table-column v-if="JSON.parse(row.type).value == 1 " label="采购单价(元/包)" min-width="100">
|
|
|
|
|
|
+ <el-table-column v-if="row.type && JSON.parse(row.type).value == 1 " label="采购单价(元/包)" min-width="100">
|
|
<template slot-scope="{ row }">
|
|
<template slot-scope="{ row }">
|
|
<div>{{ $numberFormat(row.pkgSalePrice) }}</div>
|
|
<div>{{ $numberFormat(row.pkgSalePrice) }}</div>
|
|
</template>
|
|
</template>
|
|
@@ -165,9 +165,9 @@
|
|
<el-table-column label="订单类型" prop="orderId" min-width="80" align="center">
|
|
<el-table-column label="订单类型" prop="orderId" min-width="80" align="center">
|
|
<template slot-scope="{ row }">
|
|
<template slot-scope="{ row }">
|
|
<div>
|
|
<div>
|
|
- <div v-if="JSON.parse(row.type).value == 1">普通票</div>
|
|
|
|
- <div v-if="JSON.parse(row.type).value == 2" style="color: red">线下预付票</div>
|
|
|
|
- <div v-if="JSON.parse(row.type).value == 3">线上预付票</div>
|
|
|
|
|
|
+ <div v-if="row.type && JSON.parse(row.type).value == 1">普通票</div>
|
|
|
|
+ <div v-if="row.type && JSON.parse(row.type).value == 2" style="color: red">线下预付票</div>
|
|
|
|
+ <div v-if="row.type && JSON.parse(row.type).value == 3">线上预付票</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|