|
@@ -81,7 +81,11 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="盲票名称" prop="title" />
|
|
<el-table-column label="盲票名称" prop="title" />
|
|
- <el-table-column label="盲票面值" prop="facePrice" />
|
|
|
|
|
|
+ <el-table-column label="盲票面值" prop="facePrice" >
|
|
|
|
+ <template slot-scope="{row}">
|
|
|
|
+ ¥{{$numberFormat(row.facePrice)}}
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
<el-table-column label="盲票类型" prop="type">
|
|
<el-table-column label="盲票类型" prop="type">
|
|
<template slot-scope="{row}">
|
|
<template slot-scope="{row}">
|
|
{{ JSON.parse(row.type).desc }}
|
|
{{ JSON.parse(row.type).desc }}
|
|
@@ -189,7 +193,6 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
funSelectShow(){
|
|
funSelectShow(){
|
|
this.excludeBoxIds = this.addData.ticketBoxList.map(item => { return item.boxId })
|
|
this.excludeBoxIds = this.addData.ticketBoxList.map(item => { return item.boxId })
|
|
- console.log(this.excludeBoxIds)
|
|
|
|
this.selectShow = true
|
|
this.selectShow = true
|
|
},
|
|
},
|
|
selectTicket(select) {
|
|
selectTicket(select) {
|