|
@@ -75,7 +75,7 @@
|
|
|
<div class="label">工程差价总额</div>
|
|
|
<div class="value">{{ details.depositDiffAmount }}</div>
|
|
|
</el-col>
|
|
|
- <el-col :xs="24" :sm="24" :lg="24" class="item" v-if="!isCustomer">
|
|
|
+ <el-col :xs="24" :sm="24" :lg="24" class="item" v-if="!isCustomer">
|
|
|
<div class="label">格力备注</div>
|
|
|
<div class="value">{{ details.geLiInerNote }}</div>
|
|
|
</el-col>
|
|
@@ -206,7 +206,11 @@
|
|
|
prop="price"
|
|
|
min-width="160"
|
|
|
show-overflow-tooltip
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.price | numToFixed}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
align="right"
|
|
|
label="数量"
|
|
@@ -220,7 +224,11 @@
|
|
|
prop="totalAmount"
|
|
|
min-width="160"
|
|
|
show-overflow-tooltip
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.totalAmount | numToFixed}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
align="right"
|
|
|
label="发货数量"
|
|
@@ -234,7 +242,11 @@
|
|
|
prop="depositAmount"
|
|
|
min-width="160"
|
|
|
show-overflow-tooltip
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.depositAmount | numToFixed}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
align="right"
|
|
|
label="上交资料"
|
|
@@ -248,7 +260,11 @@
|
|
|
prop="diffAmount"
|
|
|
min-width="160"
|
|
|
show-overflow-tooltip
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.diffAmount | numToFixed}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -513,7 +529,11 @@
|
|
|
prop="price"
|
|
|
min-width="160"
|
|
|
show-overflow-tooltip
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.price | numToFixed}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
align="right"
|
|
|
label="数量"
|
|
@@ -527,7 +547,11 @@
|
|
|
prop="totalDepositAmount"
|
|
|
min-width="160"
|
|
|
show-overflow-tooltip
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.totalDepositAmount | numToFixed}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -596,7 +620,12 @@
|
|
|
prop="price"
|
|
|
min-width="160"
|
|
|
show-overflow-tooltip
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.price | numToFixed}}
|
|
|
+ </template>
|
|
|
+
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
align="right"
|
|
|
label="数量"
|
|
@@ -614,7 +643,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
{{
|
|
|
(scope.row.refundableQty || 0) *
|
|
|
- (scope.row.singleDepositAmount || 0)
|
|
|
+ (scope.row.singleDepositAmount || 0) | numToFixed
|
|
|
}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -681,7 +710,11 @@
|
|
|
prop="price"
|
|
|
min-width="160"
|
|
|
show-overflow-tooltip
|
|
|
- />
|
|
|
+ >
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{ scope.row.price | numToFixed}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column
|
|
|
align="right"
|
|
|
label="数量"
|
|
@@ -699,7 +732,7 @@
|
|
|
<template slot-scope="scope">
|
|
|
{{
|
|
|
(scope.row.qty || 0) *
|
|
|
- (scope.row.singleDepositAmount || 0)
|
|
|
+ (scope.row.singleDepositAmount || 0) | numToFixed
|
|
|
}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -752,17 +785,17 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- computed:{
|
|
|
+ created() {
|
|
|
+ this.getDetail()
|
|
|
+ },
|
|
|
+ computed:{
|
|
|
isCustomer(){
|
|
|
return this.$store.getters.customerId && this.$store.getters.customerNumber
|
|
|
}
|
|
|
},
|
|
|
- created() {
|
|
|
- this.getDetail()
|
|
|
- },
|
|
|
-
|
|
|
methods: {
|
|
|
getDetail() {
|
|
|
+
|
|
|
if (this.engineering == '工程押金信息') {
|
|
|
geDetail({ id: this.$parent.depositManageId }).then((res) => {
|
|
|
this.details = res.data
|