【功能优化】PAY:回调内容过长,折行展示

pull/487/MERGE
YunaiV 2024-07-28 14:39:36 +08:00
parent 3fec45b5b4
commit 8bbe9ad424
3 changed files with 6 additions and 3 deletions

View File

@ -131,7 +131,6 @@ import * as FileConfigApi from '@/api/infra/fileConfig'
import FileConfigForm from './FileConfigForm.vue'
import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
import { dateFormatter } from '@/utils/formatTime'
import {ElMessageBox} from 'element-plus';
defineOptions({ name: 'InfraFileConfig' })

View File

@ -62,7 +62,9 @@
<el-divider />
<el-descriptions :column="1" label-class-name="desc-label" direction="vertical" border>
<el-descriptions-item label="支付通道异步回调内容">
<el-text>{{ detailData.extension.channelNotifyData }}</el-text>
<el-text style="white-space: pre-wrap; word-break: break-word">
{{ detailData.extension.channelNotifyData }}
</el-text>
</el-descriptions-item>
</el-descriptions>
</Dialog>

View File

@ -62,7 +62,9 @@
</el-descriptions>
<el-descriptions :column="1" label-class-name="desc-label" direction="vertical" border>
<el-descriptions-item label="支付通道异步回调内容">
{{ refundDetail.channelNotifyData }}
<el-text style="white-space: pre-wrap; word-break: break-word">
{{ refundDetail.channelNotifyData }}
</el-text>
</el-descriptions-item>
</el-descriptions>
</Dialog>