fix(接口测试): 参数排序

--bug=1037127 --user=王旭 【接口调试】请求中请求体是x-www-form-urlencoded的参数不能排序 https://www.tapd.cn/55049933/s/1487538
This commit is contained in:
WangXu10 2024-04-03 16:55:45 +08:00 committed by 刘瑞斌
parent cca6ddfb50
commit be05fc414a
3 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,7 @@
:disabled-param-value="props.disabledParamValue" :disabled-param-value="props.disabledParamValue"
:disabled-except-param="props.disabledExceptParam" :disabled-except-param="props.disabledExceptParam"
:params="currentTableParams" :params="currentTableParams"
:draggable="!props.disabledExceptParam"
:scroll="{ minWidth: 1160 }" :scroll="{ minWidth: 1160 }"
:columns="columns" :columns="columns"
:height-used="heightUsed" :height-used="heightUsed"
@ -46,6 +47,7 @@
:disabled-param-value="props.disabledParamValue" :disabled-param-value="props.disabledParamValue"
:disabled-except-param="props.disabledExceptParam" :disabled-except-param="props.disabledExceptParam"
:params="currentTableParams" :params="currentTableParams"
:draggable="!props.disabledExceptParam"
:scroll="{ minWidth: 1160 }" :scroll="{ minWidth: 1160 }"
:columns="columns" :columns="columns"
:height-used="heightUsed" :height-used="heightUsed"

View File

@ -19,6 +19,7 @@
<paramTable <paramTable
:params="innerParams" :params="innerParams"
:columns="columns" :columns="columns"
:draggable="!props.disabledExceptParam"
:disabled-param-value="props.disabledParamValue" :disabled-param-value="props.disabledParamValue"
:disabled-except-param="props.disabledExceptParam" :disabled-except-param="props.disabledExceptParam"
:height-used="heightUsed" :height-used="heightUsed"

View File

@ -25,6 +25,7 @@
v-model:params="innerParams" v-model:params="innerParams"
:table-key="props.tableKey" :table-key="props.tableKey"
:columns="columns" :columns="columns"
:draggable="true"
show-setting show-setting
:selectable="true" :selectable="true"
:default-param-item="defaultParamItem" :default-param-item="defaultParamItem"