Commit 8bbe9ad4 by YunaiV

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

parent 3fec45b5
......@@ -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' })
......
......@@ -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>
......
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment