代码更新

This commit is contained in:
2022-07-13 18:16:55 +08:00
parent 254a14736b
commit b01d865f9f
5 changed files with 29 additions and 16 deletions

View File

@@ -132,6 +132,10 @@
<script>
const defaultForm = {
material_type_id: null,
device_bom_code: null,
material_name: null,
remark: null,
tableData: []
}

View File

@@ -16,10 +16,10 @@
>
<el-form-item label="模糊搜索">
<el-input
v-model="query.sparepart_only_id"
v-model="query.material_code"
clearable
size="mini"
placeholder="唯一标识"
placeholder="编码、名称"
@keyup.enter.native="crud.toQuery"
/>
</el-form-item>

View File

@@ -254,6 +254,7 @@ export default {
}
crudDevicerepairmst.submitReceive(data).then(res => {
this.crud.notify('操作成功', CRUD.NOTIFICATION_TYPE.SUCCESS)
this.dialogVisible = false
this.crud.toQuery()
})
}