@zscreate/zhxy-app-component 1.0.378 → 1.0.380
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
>
|
|
21
21
|
<view class="content-inner">
|
|
22
22
|
<!-- 输入框 - 始终显示 -->
|
|
23
|
-
<view class="form-item">
|
|
23
|
+
<view class="form-item" @touchmove.stop>
|
|
24
24
|
<view class="label">请输入或粘贴内容:</view>
|
|
25
25
|
<textarea
|
|
26
26
|
v-model="contentText"
|
|
@@ -30,7 +30,9 @@
|
|
|
30
30
|
:disabled="loading"
|
|
31
31
|
placeholder-class="textarea-placeholder"
|
|
32
32
|
:maxlength="-1"
|
|
33
|
-
|
|
33
|
+
:show-confirm-bar="false"
|
|
34
|
+
:fixed="true"
|
|
35
|
+
></textarea>
|
|
34
36
|
</view>
|
|
35
37
|
|
|
36
38
|
<!-- 进度条 -->
|
|
@@ -104,7 +106,7 @@
|
|
|
104
106
|
</template>
|
|
105
107
|
|
|
106
108
|
<script>
|
|
107
|
-
import hLoading from '
|
|
109
|
+
import hLoading from '../h-loading.vue';
|
|
108
110
|
|
|
109
111
|
export default {
|
|
110
112
|
name: "AIAutoFillForm",
|
|
@@ -394,8 +396,7 @@ export default {
|
|
|
394
396
|
|
|
395
397
|
.custom-textarea {
|
|
396
398
|
width: 100%;
|
|
397
|
-
height:
|
|
398
|
-
padding: 20rpx;
|
|
399
|
+
height: 250rpx;
|
|
399
400
|
background-color: #f5f7fa;
|
|
400
401
|
border-radius: 12rpx;
|
|
401
402
|
border: 1rpx solid #e4e7ed;
|
|
@@ -564,4 +565,7 @@ export default {
|
|
|
564
565
|
::v-deep .u-popup__content__close {
|
|
565
566
|
display: none !important;
|
|
566
567
|
}
|
|
568
|
+
::v-deep .uni-textarea-textarea, .uni-textarea-placeholder {
|
|
569
|
+
padding: 20rpx !important;
|
|
570
|
+
}
|
|
567
571
|
</style>
|