Browse Source

特殊关闭至少5个字

seimin 5 days ago
parent
commit
27845810ee
2 changed files with 2 additions and 2 deletions
  1. 1 1
      components/showModel/showModel.vue
  2. 1 1
      pages/receipt_infopage/receipt_infopage.vue

+ 1 - 1
components/showModel/showModel.vue

@@ -21,7 +21,7 @@
21 21
         <view class="specialCloseFlag" v-if="textareaFlag">
22 22
           <textarea
23 23
             style="width: 100%"
24
-            placeholder="请输入10~100个文字方可提交!"
24
+            placeholder="请输入5~100个文字方可提交!"
25 25
             maxlength="100"
26 26
             @input="textareaInput"
27 27
           />

+ 1 - 1
pages/receipt_infopage/receipt_infopage.vue

@@ -1264,7 +1264,7 @@
1264 1264
       // 特殊情况输入文字
1265 1265
       textareaInput(value) {
1266 1266
         this.textareaText = value;
1267
-        if (value.trim().length >= 10) {
1267
+        if (value.trim().length >= 5) {
1268 1268
           this.models.operate = {
1269 1269
             ok: "确定",
1270 1270
             cancel: "取消",