|
|
|
@ -93,6 +93,17 @@
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<template v-slot:send_data>
|
|
|
|
|
|
|
|
<el-table-column align='center' label="请求第三方接口入参" width="200" header-align="center">
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<div v-if="scope.row.send_data">
|
|
|
|
|
|
|
|
<!-- {{JSON.parse(scope.row.response_data).resMsg}} -->
|
|
|
|
|
|
|
|
{{JSON.parse(scope.row.send_data)}}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<template v-slot:response_data>
|
|
|
|
<template v-slot:response_data>
|
|
|
|
<el-table-column align='center' label="第三方返回数据" width="200" header-align="center">
|
|
|
|
<el-table-column align='center' label="第三方返回数据" width="200" header-align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -173,6 +184,12 @@
|
|
|
|
prop: 'finally',
|
|
|
|
prop: 'finally',
|
|
|
|
label: '预约结果',
|
|
|
|
label: '预约结果',
|
|
|
|
width: 200
|
|
|
|
width: 200
|
|
|
|
|
|
|
|
}, {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prop: 'send_data',
|
|
|
|
|
|
|
|
label: '请求第三方接口入参',
|
|
|
|
|
|
|
|
width: 200
|
|
|
|
|
|
|
|
|
|
|
|
},{
|
|
|
|
},{
|
|
|
|
prop: 'response_data',
|
|
|
|
prop: 'response_data',
|
|
|
|
label: '第三方返回数据',
|
|
|
|
label: '第三方返回数据',
|
|
|
|
|