|
|
@ -73,7 +73,9 @@ |
|
|
|
@searchTableSuccess="searchTableSuccess" |
|
|
|
@submitForm="submitForm" |
|
|
|
@onEnter="onEnter" |
|
|
|
@onBlur="onEnter"> |
|
|
|
@onBlur="onEnter" |
|
|
|
@inputNumberChange="inputNumberChange" |
|
|
|
> |
|
|
|
|
|
|
|
<template #TableFormHead> |
|
|
|
<div style="border-top:1px solid #ebeef5;padding:10px 10px 0 10px ;margin-right:10px" v-if="clickType =='create'"> |
|
|
@ -1063,7 +1065,11 @@ const handleSelectionPublish = async ()=>{ |
|
|
|
clearTableDataSearch() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// 数字输入-改变事件 |
|
|
|
const inputNumberChange = (field, index, row, val) => { |
|
|
|
console.log('inputNumberChange', field, index, row, val) |
|
|
|
row.planQty = row.boxQty * row.purchaseStdQty |
|
|
|
} |
|
|
|
/** 初始化 **/ |
|
|
|
onMounted(async () => { |
|
|
|
getList() |
|
|
|