|
|
@@ -105,6 +105,9 @@
|
|
|
<template v-if="field.prop==='expand'">
|
|
|
<p style="padding-left: 2em;" v-html="row[field.prop]"></p>
|
|
|
</template>
|
|
|
+ <template v-if="field.prop==='rechargeAmount'">
|
|
|
+ {{u.fmt.fmtMoney(row[field.prop])}}
|
|
|
+ </template>
|
|
|
<template v-else>
|
|
|
<div>{{ row[field.prop] }}</div>
|
|
|
</template>
|
|
|
@@ -122,6 +125,7 @@
|
|
|
import {nextTick, onBeforeMount, onBeforeUnmount, onMounted, reactive, ref} from 'vue';
|
|
|
import {$get} from "/@/utils/request";
|
|
|
import {Msg} from "/@/utils/message";
|
|
|
+import u from "/@/utils/u"
|
|
|
|
|
|
import {useRoute} from "vue-router";
|
|
|
import ExtPage from '/@/components/form/ExtPage.vue'
|