diff --git a/src/components/charge/AssociationIdCode.vue b/src/components/charge/AssociationIdCode.vue new file mode 100644 index 0000000..0d5ef18 --- /dev/null +++ b/src/components/charge/AssociationIdCode.vue @@ -0,0 +1,218 @@ + + + \ No newline at end of file diff --git a/src/components/charge/CheckoutDetail.vue b/src/components/charge/CheckoutDetail.vue new file mode 100644 index 0000000..67ba9aa --- /dev/null +++ b/src/components/charge/CheckoutDetail.vue @@ -0,0 +1,177 @@ + + + \ No newline at end of file diff --git a/src/components/charge/IdCodeListShow.vue b/src/components/charge/IdCodeListShow.vue new file mode 100644 index 0000000..051d33a --- /dev/null +++ b/src/components/charge/IdCodeListShow.vue @@ -0,0 +1,47 @@ + + + + + \ No newline at end of file diff --git a/src/components/charge/TotalPrice.vue b/src/components/charge/TotalPrice.vue index 7dacb83..bae6619 100644 --- a/src/components/charge/TotalPrice.vue +++ b/src/components/charge/TotalPrice.vue @@ -2,26 +2,27 @@ import Panel from '../common/Panel.vue'; import {defineEmits, defineModel,defineProps} from 'vue' const {status}=defineProps(['status']) -const emit = defineEmits(['save','deleteItem','edit']); +const emit = defineEmits(['save','deleteItem','edit','openCheckOut']); const save = () => { emit('save'); }; +const openCheckOut= () => { + emit('openCheckOut'); +}; const deleteItem = () => { emit('deleteItem'); }; const totalAmount = defineModel() -const editItem= () => { - emit('edit'); -}; +