|
@@ -53,7 +53,7 @@
|
|
|
<!-- <el-table-column type="selection" width="55" /> -->
|
|
|
<el-table-column label="序号" type="index" align="center" width="50px"/>
|
|
|
<el-table-column show-overflow-tooltip label="标题" align="center" prop="docSubject"/>
|
|
|
- <el-table-column show-overflow-tooltip label="创建人" align="center" prop="docCreate"/>
|
|
|
+ <el-table-column show-overflow-tooltip label="创建人" align="center" prop="docCreate" width="100px"/>
|
|
|
<el-table-column
|
|
|
fixed="right"
|
|
|
label="操作"
|
|
@@ -270,7 +270,7 @@ export default {
|
|
|
{label: '生产厂家/代理人', prop: 'manufacturerName', width: 150},
|
|
|
{label: '含税单价', prop: 'taxPrice', width: 80,
|
|
|
formatter: function(row, column, cellValue, index) {
|
|
|
- return row.taxPrice ? parseFloat(row.taxPrice).toFixed(2) : '0.00'
|
|
|
+ return row.taxPrice ? parseFloat(row.taxPrice).toFixed(3) : '0.000'
|
|
|
},
|
|
|
},
|
|
|
{label: '最近价格', prop: 'recentlyPrice', width: 80},
|