刘洋 8 månader sedan
förälder
incheckning
134244a4f0

+ 1 - 1
src/render/views/CurExam/AddExamDialog.vue

@@ -36,7 +36,7 @@ const params = ref({
 });
 params.value = setValueFromObj(params.value, props.curRow);
 const fields = ref([
-  { prop: "name", label: "名称", colSpan: 24 },
+  { prop: "name", label: "名称", colSpan: 24, attrs: { maxlength: 100 } },
   { colSpan: 24, cell: "mode", label: "扫描模式" },
 ]);
 const handleOk = () => {

+ 1 - 1
src/render/views/DataCheck/ScanImage/RecogEditDialog.vue

@@ -60,7 +60,7 @@
               :key="option"
               :type="selectResult.includes(option) ? 'primary' : 'default'"
               @click="selectOption(option)"
-              >{{ option === "#" ? "" : option }}</a-button
+              >{{ option === "#" ? "" : option }}</a-button
             >
           </div>
         </div>