fix (接口定义): 操作日志设置只读状态
--bug=1007348 --user=赵勇 查看接口变更历史时,输入框不是只读状态 https://www.tapd.cn/55049933/s/1057750
This commit is contained in:
parent
9ecf80958f
commit
7e2ce1865d
|
@ -20,6 +20,7 @@
|
|||
<el-col class="item" v-if="showDesc">
|
||||
<input class="el-input el-input__inner" v-model="item.description" size="small" maxlength="200"
|
||||
:style="item.style"
|
||||
:disabled="isReadOnly"
|
||||
:placeholder="$t('commons.description')" show-word-limit/>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
@ -43,7 +44,7 @@ export default {
|
|||
items: Array,
|
||||
isReadOnly: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
default: true
|
||||
},
|
||||
suggestions: Array,
|
||||
needMock: {
|
||||
|
|
Loading…
Reference in New Issue