Browse Source

修改

jiangcheng/feature-20260402142510-现金四期
ZhangYong 1 week ago
parent
commit
718ad7c915
  1. 1
      src/components/locales/lang/en.js
  2. 1
      src/components/locales/lang/zh-CN.js
  3. 4
      src/utils/menuUtils.js
  4. 3
      src/views/moneyManage/financialAccount/performanceAttribution.vue
  5. 2
      src/views/walletManage/WalletBalance.vue
  6. 1
      src/views/walletManage/components/WalletDetailTemplate.vue
  7. 2
      src/views/walletManage/walletDetail/BJWallet.vue

1
src/components/locales/lang/en.js

@ -934,6 +934,7 @@ export default {
other: "Other",
currentBalance: "Current Balance",
transactionType: "Type",
transactionCurrency: "Currency",
transactionDesc: "Desc",
transactionOrderNo: "Order No.",
transactionStatus: "Status",

1
src/components/locales/lang/zh-CN.js

@ -941,6 +941,7 @@ export default {
other: "其他",
currentBalance: "当前余额",
transactionType: "交易类型",
transactionCurrency: "交易币种",
transactionDesc: "交易说明",
transactionOrderNo: "交易单号",
transactionStatus: "交易状态",

4
src/utils/menuUtils.js

@ -92,8 +92,8 @@ export const getRoutePath = (menu) => {
"152": "/walletManage/walletDetail", // 钱包明细
"153": "/walletManage/walletDetail/hkWallet", // 香港钱包
"154": "/walletManage/walletDetail/sgWalletHC", // 新加坡HC钱包
"155": "/walletManage/walletDetail/sgWalletCM", // 新加坡CM钱包
"156": "/walletManage/walletDetail/myWallet", // 马来西亚钱包
"156": "/walletManage/walletDetail/sgWalletCM", // 新加坡CM钱包
"155": "/walletManage/walletDetail/myWallet", // 马来西亚钱包
"157": "/walletManage/walletDetail/caWallet", // 加拿大钱包
"158": "/walletManage/walletDetail/thWalletHS", // 泰国HS钱包
"159": "/walletManage/walletDetail/thWalletHA", // 泰国HA钱包

3
src/views/moneyManage/financialAccount/performanceAttribution.vue

@ -622,6 +622,7 @@ onMounted( async() => {
cursor: pointer;
border: none;
background-color: #7349ad;
margin-left: auto;
}
.table-card {
@ -662,7 +663,7 @@ onMounted( async() => {
position: relative;
width: 100%;
height: 50px; /* Set a fixed height to make diagonal line work well */
background: linear-gradient(to bottom right, transparent 49.5%, #dcdfe6 49.5%, #dcdfe6 50.5%, transparent 50.5%);
background: linear-gradient(to top right, transparent 49.5%, #dcdfe6 49.5%, #dcdfe6 50.5%, transparent 50.5%);
}
.diagonal-header .top-right {
position: absolute;

2
src/views/walletManage/WalletBalance.vue

@ -646,7 +646,7 @@ const format3 = (num) => {
<el-button type="primary" @click="search()">{{ $t('common.search') }}</el-button>
<el-button @click="reset" type="success">{{ $t('common.reset') }}</el-button>
<el-button type="primary" @click="exportExcel()">{{ $t('common.exportExcel') }}</el-button>
<el-button type="primary" @click="selectWallet()">{{ $t('common.exportCompanyWalletDetail') }}</el-button>
<!-- <el-button type="primary" @click="selectWallet()">{{ $t('common.exportCompanyWalletDetail') }}</el-button> -->
<el-button type="primary" @click="openExportList">{{ $t('common.viewExportList') }}</el-button>
</div>
<!-- </div> -->

1
src/views/walletManage/components/WalletDetailTemplate.vue

@ -297,6 +297,7 @@ onMounted(() => {
<template #default="scope">{{ scope.row.time }}</template>
</el-table-column>
<el-table-column prop="typeText" :label="$t('clientCount.transactionType')" align="center" width="120" />
<el-table-column prop="transactionCurrency" :label="$t('clientCount.transactionCurrency')" align="center" width="120" />
<el-table-column prop="amount" :label="$t('common_list.money')" align="center" width="120">
<template #default="scope">
<span :style="{ color: scope.row.amount >= 0 ? '#67C23A' : '#F56C6C', fontWeight: 'bold' }">

2
src/views/walletManage/walletDetail/BJWallet.vue

@ -1,7 +1,7 @@
<!-- 北京钱包界面 -->
<template>
<div>
<WalletDetailTemplate :type="1" />
<WalletDetailTemplate :type="10" />
</div>
</template>
<script setup>

Loading…
Cancel
Save