lxf il y a 1 an
Parent
commit
39703c9a8d
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. 4 1
      src/views/finance/fundManage/flow/index.vue

+ 4 - 1
src/views/finance/fundManage/flow/index.vue

@@ -22,7 +22,10 @@
         @get-list="getList">
         <template #amount="{ item }">
           <div :style="'color: ' + (item.status === '10' ? '#04cb04;' : 'red;')">
-            <span style="padding-right: 4px">{{ item.currency || "¥" }}</span>
+            <span style="padding-right: 4px" v-if="item.currency">{{ item.currency }}</span>
+            <span style="padding-right: 4px" v-else>
+              {{ accountCurrency[0].value }}
+            </span>
             <span v-if="item.status === '20'">-</span>
             <span>{{ moneyFormat(item.amount, 2) }}</span>
           </div>