Commit 740242ea authored by renjintao's avatar renjintao

on-change

parent 8e266be1
...@@ -26,11 +26,11 @@ ...@@ -26,11 +26,11 @@
:max="row.totalCount" :max="row.totalCount"
:min="0" :min="0"
v-model="row.count" v-model="row.count"
@on-blur="inputChange1(i,row,index)" @on-change="inputChange1(i,row,index)"
/> />
</template> </template>
<template slot-scope="{ row, index }" slot="remarks"> <template slot-scope="{ row, index }" slot="remarks">
<Input type="text" v-model="row.remark" @on-blur="inputChange1(i,row,index)" /> <Input type="text" v-model="row.remark" @on-change="inputChange1(i,row,index)" />
</template> </template>
</Table> </Table>
</div> </div>
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
:max="row.totalCount-row.applicationNumber" :max="row.totalCount-row.applicationNumber"
:min="0" :min="0"
v-model="row.count" v-model="row.count"
@on-blur="inputChange1(i,row,index)" @on-change="inputChange1(i,row,index)"
:disabled="row._disabled" :disabled="row._disabled"
/> />
</template> </template>
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
<Input <Input
type="text" type="text"
v-model="row.remark" v-model="row.remark"
@on-blur="inputChange1(i,row,index)" @on-change="inputChange1(i,row,index)"
:disabled="row._disabled" :disabled="row._disabled"
/> />
</template> </template>
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
:max="row.nowTotal" :max="row.nowTotal"
:min="0" :min="0"
v-model="row.count" v-model="row.count"
@on-blur="inputChange(row,index)" @on-change="inputChange(row,index)"
/> />
</template> </template>
</Table> </Table>
......
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