cuiqian2004
2025-06-06 08b2db8f26e6b508c7ed9a59006cff3005db5895
components/oi-form/list/input/index.vue
@@ -38,6 +38,11 @@
            default: false
         },
      },
      data() {
         return {
            largeMode: getApp().globalData?.largeMode || false,
         }
      },
      methods: {
         onChange(e) {
            this.$emit("on-change", e)
@@ -47,7 +52,7 @@
            this.onChange(e)
         },
         onClick(e) {
            this.$emit("click", e)
            this.$emit("on-click", e)
         },
         onFocus(e) {
            this.$emit("on-focus", e)
@@ -119,4 +124,19 @@
   .oi-form-input:hover {
      border: 1px solid rgb(41, 121, 255);
   }
   .large-mode {
      .oi-form-input {
         .oi-input {
            font-size: 24px;
            height: 36px;
         }
         .form-input-icon {
            font-size: 30px;
            height: 36px;
            width: 36px;
         }
      }
   }
</style>