|
@@ -64,7 +64,7 @@
|
|
|
</el-row>
|
|
|
|
|
|
<el-table :data="dataList" height="500px">
|
|
|
- <el-table-column label="保税区" align="center" prop="cbName">
|
|
|
+ <el-table-column label="保税区名称" align="center" prop="cbName" width="150px">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.cbName }}
|
|
|
</template>
|
|
@@ -101,7 +101,7 @@
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
{{ timeValue[0]?timeValue[0]:'月份' }}
|
|
|
</template>
|
|
|
- <el-table-column label="对比值" align="center" prop="colName">
|
|
|
+ <el-table-column label="对比值(去年)" align="center" prop="colName" width="120px">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.datails[0].oldValue }}
|
|
|
</template>
|
|
@@ -111,9 +111,9 @@
|
|
|
{{ scope.row.datails[0].nowValue }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="浮动" align="center" prop="colName">
|
|
|
+ <el-table-column label="同比%" align="center" prop="colName">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.datails[0].redio }}
|
|
|
+ {{ scope.row.datails[0].redio==0?'持平':scope.row.datails[0].redio+'%'}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table-column>
|
|
@@ -122,7 +122,7 @@
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
{{ timeValue[1]?timeValue[1] + '季度':'季度' }}
|
|
|
</template>
|
|
|
- <el-table-column label="对比值" align="center" prop="colName">
|
|
|
+ <el-table-column label="对比值(去年)" align="center" prop="colName" width="120px">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.datails[1].oldValue }}
|
|
|
</template>
|
|
@@ -143,7 +143,7 @@
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
{{ timeValue[2]?timeValue[2] + '年度':'年度' }}
|
|
|
</template>
|
|
|
- <el-table-column label="对比值" align="center" prop="colName">
|
|
|
+ <el-table-column label="对比值(去年)" align="center" prop="colName" width="120px">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.datails[2].oldValue }}
|
|
|
</template>
|