88d65747 by renchao@pashanhoo.com

style:登记薄

1 parent 6f3e3b30
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-01-18 11:21:59
* @LastEditTime: 2024-01-18 11:23:08
-->
<template>
<div class="tableBox">
......@@ -160,12 +160,11 @@
};
const strategy = strategies[prop] || strategies.default;
if (prop == 'bdbzzqse') {
console.log(row);
let title = ''
let title = strategy(label)
if (row.jedw == 2) {
title = strategy(label) + '万元'
title = title + '万元'
} else if (row.jedw == 1) {
title = strategy(label) + '元'
title = title + '元'
}
return title
} else {
......