fix(接口测试): 修复场景引用的case可以编辑其他设置内容的缺陷

--bug=1020853 --user=王孝刚 【接口测试】接口场景中引用的case,可以编辑其他设置
https://www.tapd.cn/55049933/s/1315730
This commit is contained in:
wxg0103 2022-12-14 16:59:01 +08:00 committed by fit2-zhao
parent 50942557c9
commit 0fc9f1c0b0
1 changed files with 3 additions and 3 deletions

View File

@ -25,17 +25,17 @@
<el-row style="margin: 20px">
<span style="margin-right: 10px"> {{ $t('api_test.request.cert_alias') }}: </span>
<span style="margin-right: 10px">
<el-input size="small" style="width: 350px" v-model="request.alias" />
<el-input size="small" style="width: 350px" v-model="request.alias" :disabled="isReadOnly"/>
</span>
</el-row>
<el-row style="margin: 20px">
<span style="margin-right: 10px">
<el-checkbox class="follow-redirects-item" v-model="request.followRedirects" @change="changeFollow">{{
<el-checkbox class="follow-redirects-item" v-model="request.followRedirects" @change="changeFollow" :disabled="isReadOnly">{{
$t('api_test.request.follow_redirects')
}}</el-checkbox>
</span>
<span style="margin-left: 10px; margin-right: 10px">
<el-checkbox class="follow-redirects-item" v-model="request.autoRedirects" @change="changeAuto">{{
<el-checkbox class="follow-redirects-item" v-model="request.autoRedirects" @change="changeAuto" :disabled="isReadOnly">{{
$t('api_definition.request.auto_redirects')
}}</el-checkbox>
</span>