修改物料界面
parent
3502897458
commit
d30c9e90d6
|
@ -169,9 +169,10 @@
|
||||||
deleteMaterialsClassify,
|
deleteMaterialsClassify,
|
||||||
listMaterialsClassify,
|
listMaterialsClassify,
|
||||||
} from "/@/api/main/materialClassify";
|
} from "/@/api/main/materialClassify";
|
||||||
|
import {ref} from "vue";
|
||||||
|
|
||||||
const currentRow = ref()
|
const currentRow = ref();
|
||||||
const singleTableRef = ref<InstanceType<typeof ElTable>>()
|
const singleTableRef = ref<InstanceType<typeof ElTable>>();
|
||||||
const showAdvanceQueryUI = ref(false);
|
const showAdvanceQueryUI = ref(false);
|
||||||
const editDialogRef = ref();
|
const editDialogRef = ref();
|
||||||
const editDialogClassifyRef = ref();
|
const editDialogClassifyRef = ref();
|
||||||
|
@ -187,7 +188,7 @@
|
||||||
|
|
||||||
//单选
|
//单选
|
||||||
const radioChangeEvent = (val: undefined) => {
|
const radioChangeEvent = (val: undefined) => {
|
||||||
if(val.id) {
|
if(val) {
|
||||||
currentRow.value = val.id
|
currentRow.value = val.id
|
||||||
queryParams.value.classify = val.id;
|
queryParams.value.classify = val.id;
|
||||||
handleQuery();
|
handleQuery();
|
||||||
|
|
Loading…
Reference in New Issue