fix : 修复提交按钮旁边的返回页面细节

This commit is contained in:
2024-06-10 00:25:00 +08:00
parent bf0cb73946
commit d3fe46f0bc
9 changed files with 59 additions and 14 deletions

View File

@@ -9,6 +9,7 @@
<script setup lang="jsx">
import fvSelect from '@/fvcomponents/fvSelect/index.vue'
import {toThousands} from '@/utils/changePrice.js'
const router = useRouter()
const route = useRoute()
@@ -125,7 +126,10 @@ const tableConfig = reactive({
{
prop: 'afterTax',
label: '税后余额(元)',
align: 'center'
align: 'center',
currentRender:({row})=>{
return <span>{toThousands(row.afterTax)}</span>
}
}
],
api: '/workflow/mosr/expense/ledger',