gemercheung hace 2 años
padre
commit
b4d78c758b

+ 1 - 1
packages/qjkankan-editor/src/lang/_zh.json

@@ -866,7 +866,7 @@
     "title_left": "左",
     "title_right": "右",
     "title_custom": "自定义拖动标题",
-    "title_placeholder": "请输入标题,限15字",
+    "title_placeholder": "请输入标题,限50字",
     "effect_settings": "效果设置",
     "cancel": "取消",
     "finish": "完成",

+ 3 - 2
packages/qjkankan-editor/src/views/hotspot/EditPanel.vue

@@ -54,10 +54,10 @@
             <input
               v-model.trim="hotspot.hotspotTitle"
               type="text"
-              maxlength="15"
+              maxlength="50"
               :placeholder="$i18n.t('hotspot.title_placeholder')"
             />
-            <span class="count">{{ hotspot.hotspotTitle.length }}/15</span>
+            <span class="count">{{ hotspot.hotspotTitle.length }}/50</span>
           </div>
           <div class="remark">
             {{ $i18n.t("hotspot.title_show_mode") }}
@@ -130,6 +130,7 @@
             :scene="hotspot.secne"
             @imageChange="
               (data) => {
+
                 hotspot.image = data;
               }
             "