|
@@ -24,44 +24,44 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="visaCountry" label="国家" width="150">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="isVisaExemption" label="是否对美免签" width="50">
|
|
|
+ <el-table-column prop="isVisaExemption" label="是否对美免签">
|
|
|
<template slot-scope="is">
|
|
|
<span v-if="is.row.isVisaExemption == 1">否</span>
|
|
|
<span v-else>是</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="isVisaOnArrival" label="是否落地签" width="50">
|
|
|
+ <el-table-column prop="isVisaOnArrival" label="是否落地签">
|
|
|
<template slot-scope="is">
|
|
|
<span v-if="is.row.isVisaOnArrival == 1">否</span>
|
|
|
<span v-else>是</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="isElectronicSignature" label="是否电子签" width="50">
|
|
|
+ <el-table-column prop="isElectronicSignature" label="是否电子签">
|
|
|
<template slot-scope="is">
|
|
|
<span v-if="is.row.isElectronicSignature == 1">否</span>
|
|
|
<span v-else>是</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="visaTime" label="一般签证时间(天)" width="50">
|
|
|
+ <el-table-column prop="visaTime" label="一般签证时间(天)">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="visaPrice" label="费用" width="80">
|
|
|
+ <el-table-column prop="visaPrice" label="费用(元)" :formatter="rounding">
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="visaPriceDesc" label="费用描述" width="180">
|
|
|
+ <el-table-column prop="visaPriceDesc" label="费用描述">
|
|
|
<template slot-scope="visaPriceDesc">
|
|
|
- <el-popover placement="top-start" title="费用描述" width="200" trigger="hover"
|
|
|
+ <el-popover placement="top-start" title="费用描述" trigger="hover" width="200"
|
|
|
:content="visaPriceDesc.row.visaPriceDesc">
|
|
|
- <el-button slot="reference">移上查看</el-button>
|
|
|
+ <el-button slot="reference" size="mini">移上查看</el-button>
|
|
|
</el-popover>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="urgentTime" label="加急签证时间" width="50">
|
|
|
+ <!-- <el-table-column prop="urgentTime" label="加急签证时间" width="50">
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="urgentPrice" label="加急费用" width="80">
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="urgentPriceDesc" label="加急费用描述" width="180">
|
|
|
<template slot-scope="urgentPriceDesc">
|
|
|
<el-popover placement="top-start" title="加急费用描述" width="200" trigger="hover"
|
|
|
- :content="urgentPriceDesc.row.UrgentPrice">
|
|
|
+ :content="urgentPriceDesc.row.urgentPriceDesc">
|
|
|
<el-button slot="reference">移上查看</el-button>
|
|
|
</el-popover>
|
|
|
</template>
|
|
@@ -73,7 +73,7 @@
|
|
|
<el-button slot="reference">移上查看</el-button>
|
|
|
</el-popover>
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
+ </el-table-column> -->
|
|
|
<el-table-column label="操作">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button size="mini" @click="upDate(scope.$index, scope.row)">编辑</el-button>
|
|
@@ -164,6 +164,9 @@ export default {
|
|
|
this.tableDatas = newarr;
|
|
|
this.currentPage = 1;
|
|
|
},
|
|
|
+ rounding(row, column) {
|
|
|
+ return parseFloat(row[column.property]).toFixed(2)
|
|
|
+ },
|
|
|
|
|
|
upDate(index, row) {
|
|
|
this.$router.push({
|