fix(接口测试): 接口测试参数表格修改
修改form-data的参数表格中参数类型下拉框样式,并不允许最后一行空行上下移动
This commit is contained in:
parent
644ae85771
commit
8650503286
|
@ -31,6 +31,7 @@
|
|||
v-if="type === 'body'"
|
||||
:disabled="isReadOnly"
|
||||
v-model="scope.row.type"
|
||||
size="mini"
|
||||
@change="typeChange(item)">
|
||||
<el-option value="text" />
|
||||
<el-option value="file" />
|
||||
|
@ -150,8 +151,16 @@
|
|||
circle
|
||||
@click="remove(scope.$index)"
|
||||
:disabled="isDisable(scope.$index) || isReadOnly" />
|
||||
<i class="el-icon-top" style="cursor: pointer" @click="moveTop(scope.$index)" />
|
||||
<i class="el-icon-bottom" style="cursor: pointer" @click="moveBottom(scope.$index)" />
|
||||
<i
|
||||
class="el-icon-top"
|
||||
v-show="!(isDisable(scope.$index) || isReadOnly)"
|
||||
style="cursor: pointer"
|
||||
@click="moveTop(scope.$index)" />
|
||||
<i
|
||||
class="el-icon-bottom"
|
||||
v-show="!(isDisable(scope.$index) || isReadOnly)"
|
||||
style="cursor: pointer"
|
||||
@click="moveBottom(scope.$index)" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
|
Loading…
Reference in New Issue