|
@@ -56,7 +56,7 @@
|
|
|
width="80"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <p><span>{{scope.row.marketprice?scope.row.marketprice:'--'}}</span></p>
|
|
|
+ <p><span>{{scope.row.marketprice?tool.formatAmount(scope.row.marketprice,2):'--'}}</span></p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -122,7 +122,7 @@
|
|
|
width="100"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- <p><span>{{scope.row.discountDifferenceAmount}}</span></p>
|
|
|
+ <p><span>{{tool.formatAmount(scope.row.discountDifferenceAmount)}}</span></p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -136,33 +136,27 @@
|
|
|
width="180">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
- label="型号"
|
|
|
+ prop="erpitemno"
|
|
|
+ label="品号"
|
|
|
width="180">
|
|
|
- <template slot-scope="scope">
|
|
|
- <p><span>{{scope.row.model}}</span></p>
|
|
|
- </template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
- label="规格"
|
|
|
- width="180">
|
|
|
- <template slot-scope="scope">
|
|
|
- <p><span>{{scope.row.spec}}</span></p>
|
|
|
- </template>
|
|
|
+ prop="standards"
|
|
|
+ label="标准"
|
|
|
+ width="100">
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
- prop="caliber"
|
|
|
- label="口径"
|
|
|
+ label="型号"
|
|
|
width="180">
|
|
|
<template slot-scope="scope">
|
|
|
- <p><span>{{scope.row.caliber?scope.row.caliber:'--'}}</span></p>
|
|
|
+ <p><span>{{scope.row.model}}</span></p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
- prop="pressure"
|
|
|
- label="压力"
|
|
|
+ label="规格"
|
|
|
width="180">
|
|
|
<template slot-scope="scope">
|
|
|
- <p><span>{{scope.row.pressure?scope.row.pressure:'--'}}</span></p>
|
|
|
+ <p><span>{{scope.row.spec}}</span></p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
@@ -283,17 +277,16 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
<div style="height: 35px;margin-top: 20px">
|
|
|
- <div style="float: left">总金额(元):{{ totalPrice }}</div>
|
|
|
+ <div style="float: left">总金额(元):{{ tool.formatAmount(totalPrice,2) }}</div>
|
|
|
<div style="float: right">
|
|
|
<el-pagination
|
|
|
background
|
|
|
- small
|
|
|
- style="text-align: right;"
|
|
|
@size-change="handleSizeChange"
|
|
|
@current-change="handleCurrentChange"
|
|
|
- :current-page="currentPage"
|
|
|
- :page-size="param.content.pageSize"
|
|
|
- layout="total, prev, pager, next, jumper"
|
|
|
+ :current-page="param.content.pageNumber"
|
|
|
+ :page-sizes="[20, 50, 100, 200]"
|
|
|
+ :page-size="100"
|
|
|
+ layout="total,sizes, prev, pager, next, jumper"
|
|
|
:total="total">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
@@ -334,7 +327,7 @@ export default {
|
|
|
"content": {
|
|
|
"sa_quotedpriceid":'',
|
|
|
"pageNumber": 1,
|
|
|
- "pageSize": 20,
|
|
|
+ "pageSize": 100,
|
|
|
"where": {
|
|
|
"condition": ""
|
|
|
}
|