This commit is contained in:
2021-07-27 18:46:14 -05:00
parent 600358d640
commit f84c170832
6 changed files with 249 additions and 10 deletions

View File

@@ -82,7 +82,7 @@
<el-TableColumn prop="detalle" label="Detalle" sortable>
</el-TableColumn>
<el-TableColumn prop="valor" label="Valor" sortable>
<el-TableColumn prop="valor" label="Valor" sortable :formatter="cell">
</el-TableColumn>
<el-TableColumn prop="tipo" label="Tipo" sortable> </el-TableColumn>
@@ -193,6 +193,9 @@ export default {
};
},
methods: {
cell(row, column, cellValue, index) {
return this.formatMoneda(cellValue);
},
saveCredito() {
const axiosHeader = {
headers: {