|
@@ -304,7 +304,7 @@
|
|
|
<el-input v-model="scope.row.billNumber" :placeholder="$t('peaseenterthe')" clearable size="small"></el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="pendingAmounts" label="待付款金额(元)" width="210">
|
|
|
+ <el-table-column v-if="contractForm.isAmountFixed" prop="pendingAmounts" label="待付款金额(元)" width="210">
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.pendingAmounts }}
|
|
|
</template>
|
|
@@ -497,7 +497,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="billNumber" label="凭证号" width="210"></el-table-column>
|
|
|
- <el-table-column prop="pendingAmounts" label="待付款金额(元)" width="180"></el-table-column>
|
|
|
+ <el-table-column prop="pendingAmounts" v-if="contractForm.isAmountFixed" label="待付款金额(元" width="180"></el-table-column>
|
|
|
</el-table>
|
|
|
</el-form-item>
|
|
|
|