|
|
@ -84,6 +84,7 @@ |
|
|
|
@inpuFocus="inpuFocus" |
|
|
|
@buttonOperationClick="buttonOperationClick" |
|
|
|
@inputStringBlur="inputStringBlur" |
|
|
|
@inputNumberChange="inputNumberChange" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
<div v-if="isBusiness && formType == 'create' && fromeWhere == 'countPlan'"> |
|
|
@ -466,7 +467,8 @@ const emit = defineEmits([ |
|
|
|
'tableFormChange', |
|
|
|
'buttonOperationClick', |
|
|
|
'inputStringBlur', |
|
|
|
'onChange' |
|
|
|
'onChange', |
|
|
|
'inputNumberChange' |
|
|
|
]) |
|
|
|
//普通下拉改变事件 |
|
|
|
const formSelectChange = (field, val, row) => { |
|
|
@ -483,6 +485,11 @@ const tableSelectionChange = (val) => { |
|
|
|
const tableSortChange = (column, prop, order) => { |
|
|
|
emit('tableSortChange', column, prop, order) |
|
|
|
} |
|
|
|
|
|
|
|
// 数字输入-改变事件 |
|
|
|
const inputNumberChange = (field, index, row, val) => { |
|
|
|
emit('inputNumberChange', field, index, row, val) |
|
|
|
} |
|
|
|
//下拉框回显方法 |
|
|
|
// const showSelect = (val, statusID) => { |
|
|
|
// return getDictForStatusID(val, statusID) |
|
|
|