|
@@ -9,7 +9,7 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="进度描述">
|
|
|
- <el-input type="textarea" v-model="sumbitForm.recordDetail" />
|
|
|
+ <el-input class="no-scrollbar" type="textarea" v-model="sumbitForm.recordDetail" />
|
|
|
</el-form-item>
|
|
|
<div style="display: flex;
|
|
|
justify-content: flex-end;
|
|
@@ -39,7 +39,7 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column property="recordDetail" label="工作详情" width="300" >
|
|
|
<template #default="scope">
|
|
|
- <el-input type="textarea" v-model="scope.row.recordDetail" :disabled="scope.row.inputdisabled"/>
|
|
|
+ <el-input type="textarea" class="no-scrollbar" v-model="scope.row.recordDetail" :disabled="scope.row.inputdisabled"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column property="userName" label="操作人" width="120" >
|
|
@@ -209,5 +209,15 @@ defineExpose({
|
|
|
.clearButton>.el-form-item__content{
|
|
|
flex:none !important;
|
|
|
}
|
|
|
+.no-scrollbar ::-webkit-scrollbar {
|
|
|
+ display: none; /* 针对WebKit浏览器 */
|
|
|
+}
|
|
|
|
|
|
+.no-scrollbar {
|
|
|
+ .el-textarea__inner{
|
|
|
+ min-height: 100px !important;
|
|
|
+ }
|
|
|
+ -ms-overflow-style: none; /* 针对IE、Edge浏览器 */
|
|
|
+ scrollbar-width: none; /* 针对火狐浏览器 */
|
|
|
+}
|
|
|
</style>
|