采购计量

This commit is contained in:
‘huanghaiixia’
2026-03-10 11:21:08 +08:00
parent 61a01d6d77
commit b576044b95
9 changed files with 594 additions and 190 deletions

View File

@ -49,7 +49,7 @@
const selectedKeys = ref<string[]>([]);
const selectedValues = ref([]);
const props = defineProps({
selectType: { type: String, default: 'checkbox' },
selectType: { type: String, default: 'radio' },
});
const [registerModal, { setModalProps, closeModal }] = useModalInner(async (data) => {
@ -93,7 +93,7 @@
selectedKeys.value = rowKeys;
selectedValues.value = e
}
const getTitle = computed(() => (!unref(isUpdate) ? t('船期计划列表列表') : t('')));
const getTitle = computed(() => (!unref(isUpdate) ? t('船期计划列表') : t('')));
async function handleSubmit() {
if (!selectedValues.value.length) {