Commit 32b14254 by liaoxing

Merge branch 'development-202206' of http://114.115.138.98:8900/fukai/vue-gjjs…

Merge branch 'development-202206' of http://114.115.138.98:8900/fukai/vue-gjjs into development-202206
parents 1df1c7ed 6a5f5673
......@@ -4,7 +4,7 @@
:rows="rows"
v-bind="attrs" v-bind:disabled="isDisable"
:value="value"
@input="onInput($event,value)"
@input="onInput"
>
<template v-slot:suffix>
<slot name="suffix"></slot>
......@@ -53,19 +53,7 @@ export default {
}
},
computed: {
model: {
get () {
return this.value
},
set (newVal) {
newVal = this.formatVal(newVal);
console.log(newVal)
this.$emit('input', newVal)
setTimeout(()=>{
this.setCursorPosition(this.$position)
},0)
}
},
mode () {
return this.$store.state.Status.mode
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment