From f6482afcd2d5359fa2e9f81587160655c3554cd8 Mon Sep 17 00:00:00 2001 From: wangjiadong <1654135867@qq.com> Date: Mon, 12 Dec 2022 10:50:23 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=BE=E5=AE=A2=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../custom/CustomerInvoiceList.vue | 233 ++++++++++++++++ .../custom/modules/CustomerInvoiceForm.vue | 158 +++++++++++ .../custom/modules/CustomerInvoiceModal.vue | 60 ++++ .../CustomerInvoiceModal__Style#Drawer.vue | 84 ++++++ .../custo/CustomerMeasureList.vue | 258 ++++++++++++++++++ .../custo/modules/CustomerMeasureForm.vue | 199 ++++++++++++++ .../custo/modules/CustomerMeasureModal.vue | 60 ++++ .../CustomerMeasureModal__Style#Drawer.vue | 84 ++++++ .../custom/CustomerPaymentList.vue | 246 +++++++++++++++++ .../custom/modules/CustomerPaymentForm.vue | 119 ++++++++ .../custom/modules/CustomerPaymentModal.vue | 60 ++++ .../CustomerPaymentModal__Style#Drawer.vue | 84 ++++++ .../custom/CustomerReceivingAddressList.vue | 250 +++++++++++++++++ .../modules/CustomerReceivingAddressForm.vue | 143 ++++++++++ .../modules/CustomerReceivingAddressModal.vue | 60 ++++ ...merReceivingAddressModal__Style#Drawer.vue | 84 ++++++ .../custum/CustomerShoppingCartList.vue | 257 +++++++++++++++++ .../modules/CustomerShoppingCartForm.vue | 150 ++++++++++ .../modules/CustomerShoppingCartModal.vue | 60 ++++ ...ustomerShoppingCartModal__Style#Drawer.vue | 84 ++++++ 20 files changed, 2733 insertions(+) create mode 100644 ant-design-vue-jeecg/src/views/customerinvoice/custom/CustomerInvoiceList.vue create mode 100644 ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceForm.vue create mode 100644 ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceModal.vue create mode 100644 ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceModal__Style#Drawer.vue create mode 100644 ant-design-vue-jeecg/src/views/customermeasure/custo/CustomerMeasureList.vue create mode 100644 ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureForm.vue create mode 100644 ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureModal.vue create mode 100644 ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureModal__Style#Drawer.vue create mode 100644 ant-design-vue-jeecg/src/views/customerpayment/custom/CustomerPaymentList.vue create mode 100644 ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentForm.vue create mode 100644 ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentModal.vue create mode 100644 ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentModal__Style#Drawer.vue create mode 100644 ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/CustomerReceivingAddressList.vue create mode 100644 ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressForm.vue create mode 100644 ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressModal.vue create mode 100644 ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressModal__Style#Drawer.vue create mode 100644 ant-design-vue-jeecg/src/views/customershoppingcart/custum/CustomerShoppingCartList.vue create mode 100644 ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartForm.vue create mode 100644 ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartModal.vue create mode 100644 ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartModal__Style#Drawer.vue diff --git a/ant-design-vue-jeecg/src/views/customerinvoice/custom/CustomerInvoiceList.vue b/ant-design-vue-jeecg/src/views/customerinvoice/custom/CustomerInvoiceList.vue new file mode 100644 index 00000000..b349ef77 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerinvoice/custom/CustomerInvoiceList.vue @@ -0,0 +1,233 @@ + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceForm.vue b/ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceForm.vue new file mode 100644 index 00000000..b4cc1fdd --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceForm.vue @@ -0,0 +1,158 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceModal.vue b/ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceModal.vue new file mode 100644 index 00000000..cab496ec --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceModal__Style#Drawer.vue b/ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceModal__Style#Drawer.vue new file mode 100644 index 00000000..e354afe6 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerinvoice/custom/modules/CustomerInvoiceModal__Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customermeasure/custo/CustomerMeasureList.vue b/ant-design-vue-jeecg/src/views/customermeasure/custo/CustomerMeasureList.vue new file mode 100644 index 00000000..276cfa7b --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customermeasure/custo/CustomerMeasureList.vue @@ -0,0 +1,258 @@ + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureForm.vue b/ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureForm.vue new file mode 100644 index 00000000..c5d86e26 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureForm.vue @@ -0,0 +1,199 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureModal.vue b/ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureModal.vue new file mode 100644 index 00000000..9d99c79d --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureModal__Style#Drawer.vue b/ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureModal__Style#Drawer.vue new file mode 100644 index 00000000..c83433ad --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customermeasure/custo/modules/CustomerMeasureModal__Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerpayment/custom/CustomerPaymentList.vue b/ant-design-vue-jeecg/src/views/customerpayment/custom/CustomerPaymentList.vue new file mode 100644 index 00000000..84e5c579 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerpayment/custom/CustomerPaymentList.vue @@ -0,0 +1,246 @@ + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentForm.vue b/ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentForm.vue new file mode 100644 index 00000000..66ab7602 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentForm.vue @@ -0,0 +1,119 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentModal.vue b/ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentModal.vue new file mode 100644 index 00000000..23e63743 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentModal__Style#Drawer.vue b/ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentModal__Style#Drawer.vue new file mode 100644 index 00000000..1131f243 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerpayment/custom/modules/CustomerPaymentModal__Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/CustomerReceivingAddressList.vue b/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/CustomerReceivingAddressList.vue new file mode 100644 index 00000000..fc7e7b4a --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/CustomerReceivingAddressList.vue @@ -0,0 +1,250 @@ + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressForm.vue b/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressForm.vue new file mode 100644 index 00000000..64802266 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressForm.vue @@ -0,0 +1,143 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressModal.vue b/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressModal.vue new file mode 100644 index 00000000..40d6de4b --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressModal__Style#Drawer.vue b/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressModal__Style#Drawer.vue new file mode 100644 index 00000000..e7b8eaa1 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customerreceivingaddress/custom/modules/CustomerReceivingAddressModal__Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customershoppingcart/custum/CustomerShoppingCartList.vue b/ant-design-vue-jeecg/src/views/customershoppingcart/custum/CustomerShoppingCartList.vue new file mode 100644 index 00000000..937151f8 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customershoppingcart/custum/CustomerShoppingCartList.vue @@ -0,0 +1,257 @@ + + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartForm.vue b/ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartForm.vue new file mode 100644 index 00000000..7f9a42f6 --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartForm.vue @@ -0,0 +1,150 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartModal.vue b/ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartModal.vue new file mode 100644 index 00000000..cb2eca2b --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartModal__Style#Drawer.vue b/ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartModal__Style#Drawer.vue new file mode 100644 index 00000000..767f052a --- /dev/null +++ b/ant-design-vue-jeecg/src/views/customershoppingcart/custum/modules/CustomerShoppingCartModal__Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file