Commit 13731043 by wangshuangqing

修改单价与总金额绑定字段

parent 1f1b54cf
......@@ -216,11 +216,11 @@
>
<el-table-column
label="开单日期"
prop="iteM_CODE"
prop="chargeTime"
></el-table-column>
<el-table-column
label="项目编码"
prop="chargeTime"
prop="iteM_CODE"
></el-table-column>
<el-table-column
label="项目名称"
......@@ -228,13 +228,13 @@
></el-table-column>
<el-table-column label="单价" prop="unitprice">
<template slot-scope="scope">
{{ decimal(scope.row.fee) }}
{{ decimal(scope.row.unitprice) }}
</template>
</el-table-column>
<el-table-column label="数量" prop="quantity"></el-table-column>
<el-table-column label="总金额" prop="fee">
<template slot-scope="scope">
{{ decimal(scope.row.unitprice) }}
{{ decimal(scope.row.fee) }}
</template>
</el-table-column>
</el-table>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment