fix(接口定义): #1006879 【接口测试-接口创建】TCP接口请求体无法拖动】

【【接口测试-接口创建】TCP接口请求体无法拖动】https://www.tapd.cn/55049933/bugtrace/bugs/view?bug_id=1155049933001006879
This commit is contained in:
song-tianyang 2021-09-24 18:14:40 +08:00 committed by song-tianyang
parent 1cd2bd6f9e
commit ec092e4038
1 changed files with 3 additions and 3 deletions

View File

@ -28,18 +28,18 @@
raw
</el-radio>
</el-radio-group>
<div style="min-width: 1200px;" v-if="request.reportType === 'xml'">
<div v-if="request.reportType === 'xml'">
<tcp-xml-table :table-data="request.xmlDataStruct" :show-options-button="true"
@xmlTablePushRow="xmlTablePushRow"
@initXmlTableData="initXmlTableData"
@saveTableData="saveXmlTableData" ref="treeTable"></tcp-xml-table>
</div>
<div style="min-width: 1200px;" v-if="request.reportType === 'json'">
<div v-if="request.reportType === 'json'">
<div class="send-request">
<ms-code-edit mode="json" :read-only="isReadOnly" :data.sync="request.jsonDataStruct" :modes="['text', 'json', 'xml', 'html']" theme="eclipse"/>
</div>
</div>
<div style="min-width: 1200px;" v-if="request.reportType === 'raw'">
<div v-if="request.reportType === 'raw'">
<div class="send-request">
<ms-code-edit mode="text" :read-only="isReadOnly" :data.sync="request.rawDataStruct" :modes="['text', 'json', 'xml', 'html']" theme="eclipse"/>
</div>