This commit is contained in:
851673013@qq.com 2022-08-03 10:32:08 +08:00
parent ce6163621d
commit 5673d88047
1 changed files with 17 additions and 12 deletions

View File

@ -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>