2 Commits

Author SHA1 Message Date
ZhangYong 4a5cd54897 业绩调整提示词 5 days ago
ZhangYong a1b7e6fb9d 表格高度问题 5 days ago
  1. 2
      src/views/moneyManage/financialAccount/performanceAttribution.vue
  2. 4
      src/views/walletManage/WalletBalance.vue
  3. 4
      src/views/walletManage/components/WalletDetailTemplate.vue

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

@ -378,7 +378,7 @@ const submitAdjustment = async () => {
console.log('提交的封装数据:', JSON.stringify(payload, null, 2)) console.log('提交的封装数据:', JSON.stringify(payload, null, 2))
await adjustment(payload) await adjustment(payload)
ElMessage.success(t('common.submitSuccess'))
ElMessage.success(t('elmessage.submitSuccess'))
adjustVisible.value = false adjustVisible.value = false
fetchData() fetchData()
} }

4
src/views/walletManage/WalletBalance.vue

@ -655,8 +655,8 @@ const format3 = (num) => {
</el-card> </el-card>
<el-card class="card2"> <el-card class="card2">
<!-- 设置表格容器的高度和滚动样式 --> <!-- 设置表格容器的高度和滚动样式 -->
<div style="height: 85vh; overflow-y: auto">
<el-table ref="tableRef" :data="tableData" @cellClick="cellClick" style="width: 100%; height: 85vh"
<div style="flex: 1; overflow: hidden; display: flex; flex-direction: column;">
<el-table ref="tableRef" :data="tableData" @cellClick="cellClick" style="width: 100%; flex: 1"
@sort-change="handleSortChange" :row-style="{ height: '50px' }"> @sort-change="handleSortChange" :row-style="{ height: '50px' }">
<el-table-column type="index" :label="$t('common_list.id')" width="100px" fixed="left"> <el-table-column type="index" :label="$t('common_list.id')" width="100px" fixed="left">
<template #default="scope"> <template #default="scope">

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

@ -333,8 +333,8 @@ onMounted(() => {
</el-card> </el-card>
<el-card class="card2"> <el-card class="card2">
<div style="height: 85vh; overflow-y: auto">
<el-table ref="tableRef" :data="tableData" v-loading="loading" style="width: 100%; height: 85vh"
<div style="flex: 1; overflow: hidden; display: flex; flex-direction: column;">
<el-table ref="tableRef" :data="tableData" v-loading="loading" style="width: 100%; flex: 1"
:row-style="{ height: '50px' }"> :row-style="{ height: '50px' }">
<el-table-column type="index" :label="$t('common_list.id')" width="80px" fixed="left"> <el-table-column type="index" :label="$t('common_list.id')" width="80px" fixed="left">
<template #default="scope"> <template #default="scope">

Loading…
Cancel
Save