|
@@ -32,9 +32,9 @@
|
|
|
:placeholder="i.placeholder || '请输入'"
|
|
|
@input="(e) => commonsEmit(e, i)"
|
|
|
@change="(e) => commonsEmitChange(e, i)"
|
|
|
- @keydown.native="inputLimit"
|
|
|
:type="i.itemType ? i.itemType : 'text'"
|
|
|
:disabled="i.disabled ? i.disabled : false"
|
|
|
+ v-mousewheel
|
|
|
:max="i.max"
|
|
|
:min="i.min"
|
|
|
:maxlength="i.maxlength"
|
|
@@ -308,9 +308,6 @@ const handleSuccess = (res, file, files) => {
|
|
|
emit("update:modelValue", formData.value);
|
|
|
};
|
|
|
|
|
|
-const inputLimit = (e, i) => {
|
|
|
- console.log(e,i)
|
|
|
-};
|
|
|
|
|
|
const handleRemove = (file) => {
|
|
|
const index = fileListCopy.value.findIndex(
|