bug783
This commit is contained in:
parent
ce6163621d
commit
5673d88047
|
@ -7,13 +7,19 @@
|
||||||
@keyup.enter.native="dataFormSubmitHandle()"
|
@keyup.enter.native="dataFormSubmitHandle()"
|
||||||
:label-width="$i18n.locale === 'en-US' ? '120px' : 'auto'"
|
:label-width="$i18n.locale === 'en-US' ? '120px' : 'auto'"
|
||||||
>
|
>
|
||||||
<el-form-item label="评论内容">
|
<el-tooltip placement="bottom" :content="dataForm.comment">
|
||||||
<el-input
|
<template #title>
|
||||||
v-model="dataForm.comment"
|
<span>{{ dataForm.comment }}</span>
|
||||||
:disabled="fieldDisabled"
|
</template>
|
||||||
placeholder="评论内容"
|
<el-form-item label="评论内容">
|
||||||
></el-input>
|
<el-input
|
||||||
</el-form-item>
|
type="textarea"
|
||||||
|
v-model="dataForm.comment"
|
||||||
|
:disabled="fieldDisabled"
|
||||||
|
placeholder="评论内容"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
</el-tooltip>
|
||||||
</el-form>
|
</el-form>
|
||||||
</div>
|
</div>
|
||||||
<!-- 流程综合组件 -->
|
<!-- 流程综合组件 -->
|
||||||
|
@ -106,10 +112,9 @@ export default {
|
||||||
mounted () {}
|
mounted () {}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss">
|
<style lang="scss" scoped>
|
||||||
.kuandukuandukuandu{
|
::v-deep .el-textarea__inner {
|
||||||
max-width:1500px;
|
height: 100px;
|
||||||
}
|
resize: none;
|
||||||
.wrapper {
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue