From c90cdf76789851b337f183abba71a66bbc006fb1 Mon Sep 17 00:00:00 2001 From: yanran200730 Date: Wed, 17 May 2023 15:12:17 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E5=AD=97=E5=B9=B3=E6=98=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/AppDynamic/AppDynamic.vue | 64 ++ .../app/AppDynamic/components/Detail.vue | 110 +++ .../app/AppDynamic/components/List.vue | 144 ++++ .../shuzipingchang/app/AppHelp/AppHelp.vue | 76 ++ .../app/AppHelp/components/Add.vue | 177 +++++ .../app/AppHelp/components/Detail.vue | 294 +++++++ .../app/AppHelp/components/GagList.vue | 109 +++ .../app/AppHelp/components/List.vue | 181 +++++ .../AppIntegralStatistics.vue | 647 ++++++++++++++++ .../AppIntegratingAudit.vue | 68 ++ .../AppIntegratingAudit/components/Detail.vue | 270 +++++++ .../AppIntegratingAudit/components/List.vue | 293 +++++++ .../AppIntegratingDjust.vue | 62 ++ .../AppIntegratingDjust/components/List.vue | 357 +++++++++ .../AppIntegratingOrder.vue | 116 +++ .../components/GirdDetail.vue | 172 +++++ .../components/GirdList.vue | 223 ++++++ .../components/ResidentDetail.vue | 172 +++++ .../components/ResidentList.vue | 256 +++++++ .../AppIntegratingPublic.vue | 63 ++ .../AppIntegratingPublic/components/Add.vue | 138 ++++ .../AppIntegratingPublic/components/List.vue | 192 +++++ .../AppIntegratingRules.vue | 43 ++ .../AppIntegratingRules/components/List.vue | 611 +++++++++++++++ .../AppIntegratingSupermarket.vue | 106 +++ .../components/AddStore.vue | 507 +++++++++++++ .../components/GoodsList.vue | 214 ++++++ .../components/StoreList.vue | 159 ++++ .../components/addGoods.vue | 220 ++++++ .../AppIntegratingTask/AppIntegratingTask.vue | 70 ++ .../app/AppIntegratingTask/components/Add.vue | 433 +++++++++++ .../AppIntegratingTask/components/Detail.vue | 192 +++++ .../AppIntegratingTask/components/List.vue | 223 ++++++ .../app/AppPageSet/AppPageSet.vue | 202 +++++ .../app/AppResidentInfo/AppResidentInfo.vue | 69 ++ .../app/AppResidentInfo/components/Add.vue | 717 ++++++++++++++++++ .../app/AppResidentInfo/components/Detail.vue | 122 +++ .../app/AppResidentInfo/components/List.vue | 156 ++++ .../AppResidentIntegrating.vue | 64 ++ .../components/Detail.vue | 181 +++++ .../components/List.vue | 277 +++++++ .../app/AppSubjectSet/AppSubjectSet.vue | 70 ++ .../app/AppSubjectSet/components/Add.vue | 128 ++++ .../app/AppSubjectSet/components/List.vue | 144 ++++ 44 files changed, 9092 insertions(+) create mode 100644 project/shuzipingchang/app/AppDynamic/AppDynamic.vue create mode 100644 project/shuzipingchang/app/AppDynamic/components/Detail.vue create mode 100644 project/shuzipingchang/app/AppDynamic/components/List.vue create mode 100644 project/shuzipingchang/app/AppHelp/AppHelp.vue create mode 100644 project/shuzipingchang/app/AppHelp/components/Add.vue create mode 100644 project/shuzipingchang/app/AppHelp/components/Detail.vue create mode 100644 project/shuzipingchang/app/AppHelp/components/GagList.vue create mode 100644 project/shuzipingchang/app/AppHelp/components/List.vue create mode 100644 project/shuzipingchang/app/AppIntegralStatistics/AppIntegralStatistics.vue create mode 100644 project/shuzipingchang/app/AppIntegratingAudit/AppIntegratingAudit.vue create mode 100644 project/shuzipingchang/app/AppIntegratingAudit/components/Detail.vue create mode 100644 project/shuzipingchang/app/AppIntegratingAudit/components/List.vue create mode 100644 project/shuzipingchang/app/AppIntegratingDjust/AppIntegratingDjust.vue create mode 100644 project/shuzipingchang/app/AppIntegratingDjust/components/List.vue create mode 100644 project/shuzipingchang/app/AppIntegratingOrder/AppIntegratingOrder.vue create mode 100644 project/shuzipingchang/app/AppIntegratingOrder/components/GirdDetail.vue create mode 100644 project/shuzipingchang/app/AppIntegratingOrder/components/GirdList.vue create mode 100644 project/shuzipingchang/app/AppIntegratingOrder/components/ResidentDetail.vue create mode 100644 project/shuzipingchang/app/AppIntegratingOrder/components/ResidentList.vue create mode 100644 project/shuzipingchang/app/AppIntegratingPublic/AppIntegratingPublic.vue create mode 100644 project/shuzipingchang/app/AppIntegratingPublic/components/Add.vue create mode 100644 project/shuzipingchang/app/AppIntegratingPublic/components/List.vue create mode 100644 project/shuzipingchang/app/AppIntegratingRules/AppIntegratingRules.vue create mode 100644 project/shuzipingchang/app/AppIntegratingRules/components/List.vue create mode 100644 project/shuzipingchang/app/AppIntegratingSupermarket/AppIntegratingSupermarket.vue create mode 100644 project/shuzipingchang/app/AppIntegratingSupermarket/components/AddStore.vue create mode 100644 project/shuzipingchang/app/AppIntegratingSupermarket/components/GoodsList.vue create mode 100644 project/shuzipingchang/app/AppIntegratingSupermarket/components/StoreList.vue create mode 100644 project/shuzipingchang/app/AppIntegratingSupermarket/components/addGoods.vue create mode 100644 project/shuzipingchang/app/AppIntegratingTask/AppIntegratingTask.vue create mode 100644 project/shuzipingchang/app/AppIntegratingTask/components/Add.vue create mode 100644 project/shuzipingchang/app/AppIntegratingTask/components/Detail.vue create mode 100644 project/shuzipingchang/app/AppIntegratingTask/components/List.vue create mode 100644 project/shuzipingchang/app/AppPageSet/AppPageSet.vue create mode 100644 project/shuzipingchang/app/AppResidentInfo/AppResidentInfo.vue create mode 100644 project/shuzipingchang/app/AppResidentInfo/components/Add.vue create mode 100644 project/shuzipingchang/app/AppResidentInfo/components/Detail.vue create mode 100644 project/shuzipingchang/app/AppResidentInfo/components/List.vue create mode 100644 project/shuzipingchang/app/AppResidentIntegrating/AppResidentIntegrating.vue create mode 100644 project/shuzipingchang/app/AppResidentIntegrating/components/Detail.vue create mode 100644 project/shuzipingchang/app/AppResidentIntegrating/components/List.vue create mode 100644 project/shuzipingchang/app/AppSubjectSet/AppSubjectSet.vue create mode 100644 project/shuzipingchang/app/AppSubjectSet/components/Add.vue create mode 100644 project/shuzipingchang/app/AppSubjectSet/components/List.vue diff --git a/project/shuzipingchang/app/AppDynamic/AppDynamic.vue b/project/shuzipingchang/app/AppDynamic/AppDynamic.vue new file mode 100644 index 00000000..69e2fb43 --- /dev/null +++ b/project/shuzipingchang/app/AppDynamic/AppDynamic.vue @@ -0,0 +1,64 @@ + + + + + diff --git a/project/shuzipingchang/app/AppDynamic/components/Detail.vue b/project/shuzipingchang/app/AppDynamic/components/Detail.vue new file mode 100644 index 00000000..6fe1e8ef --- /dev/null +++ b/project/shuzipingchang/app/AppDynamic/components/Detail.vue @@ -0,0 +1,110 @@ + + + + + diff --git a/project/shuzipingchang/app/AppDynamic/components/List.vue b/project/shuzipingchang/app/AppDynamic/components/List.vue new file mode 100644 index 00000000..6b2917a8 --- /dev/null +++ b/project/shuzipingchang/app/AppDynamic/components/List.vue @@ -0,0 +1,144 @@ + + + + + diff --git a/project/shuzipingchang/app/AppHelp/AppHelp.vue b/project/shuzipingchang/app/AppHelp/AppHelp.vue new file mode 100644 index 00000000..7a70e60c --- /dev/null +++ b/project/shuzipingchang/app/AppHelp/AppHelp.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/project/shuzipingchang/app/AppHelp/components/Add.vue b/project/shuzipingchang/app/AppHelp/components/Add.vue new file mode 100644 index 00000000..fb6f39f1 --- /dev/null +++ b/project/shuzipingchang/app/AppHelp/components/Add.vue @@ -0,0 +1,177 @@ + + + + + diff --git a/project/shuzipingchang/app/AppHelp/components/Detail.vue b/project/shuzipingchang/app/AppHelp/components/Detail.vue new file mode 100644 index 00000000..dc485f13 --- /dev/null +++ b/project/shuzipingchang/app/AppHelp/components/Detail.vue @@ -0,0 +1,294 @@ + + + + + diff --git a/project/shuzipingchang/app/AppHelp/components/GagList.vue b/project/shuzipingchang/app/AppHelp/components/GagList.vue new file mode 100644 index 00000000..5f8d8859 --- /dev/null +++ b/project/shuzipingchang/app/AppHelp/components/GagList.vue @@ -0,0 +1,109 @@ + + + + + diff --git a/project/shuzipingchang/app/AppHelp/components/List.vue b/project/shuzipingchang/app/AppHelp/components/List.vue new file mode 100644 index 00000000..4e1cbdd1 --- /dev/null +++ b/project/shuzipingchang/app/AppHelp/components/List.vue @@ -0,0 +1,181 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegralStatistics/AppIntegralStatistics.vue b/project/shuzipingchang/app/AppIntegralStatistics/AppIntegralStatistics.vue new file mode 100644 index 00000000..9ed37454 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegralStatistics/AppIntegralStatistics.vue @@ -0,0 +1,647 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingAudit/AppIntegratingAudit.vue b/project/shuzipingchang/app/AppIntegratingAudit/AppIntegratingAudit.vue new file mode 100644 index 00000000..86218f6c --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingAudit/AppIntegratingAudit.vue @@ -0,0 +1,68 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingAudit/components/Detail.vue b/project/shuzipingchang/app/AppIntegratingAudit/components/Detail.vue new file mode 100644 index 00000000..67901e44 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingAudit/components/Detail.vue @@ -0,0 +1,270 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingAudit/components/List.vue b/project/shuzipingchang/app/AppIntegratingAudit/components/List.vue new file mode 100644 index 00000000..50b5834b --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingAudit/components/List.vue @@ -0,0 +1,293 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingDjust/AppIntegratingDjust.vue b/project/shuzipingchang/app/AppIntegratingDjust/AppIntegratingDjust.vue new file mode 100644 index 00000000..4bd4363c --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingDjust/AppIntegratingDjust.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingDjust/components/List.vue b/project/shuzipingchang/app/AppIntegratingDjust/components/List.vue new file mode 100644 index 00000000..f762ce3c --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingDjust/components/List.vue @@ -0,0 +1,357 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingOrder/AppIntegratingOrder.vue b/project/shuzipingchang/app/AppIntegratingOrder/AppIntegratingOrder.vue new file mode 100644 index 00000000..ffed4121 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingOrder/AppIntegratingOrder.vue @@ -0,0 +1,116 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingOrder/components/GirdDetail.vue b/project/shuzipingchang/app/AppIntegratingOrder/components/GirdDetail.vue new file mode 100644 index 00000000..166e84f7 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingOrder/components/GirdDetail.vue @@ -0,0 +1,172 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingOrder/components/GirdList.vue b/project/shuzipingchang/app/AppIntegratingOrder/components/GirdList.vue new file mode 100644 index 00000000..47686ce6 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingOrder/components/GirdList.vue @@ -0,0 +1,223 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingOrder/components/ResidentDetail.vue b/project/shuzipingchang/app/AppIntegratingOrder/components/ResidentDetail.vue new file mode 100644 index 00000000..6e9b044c --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingOrder/components/ResidentDetail.vue @@ -0,0 +1,172 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingOrder/components/ResidentList.vue b/project/shuzipingchang/app/AppIntegratingOrder/components/ResidentList.vue new file mode 100644 index 00000000..f275860e --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingOrder/components/ResidentList.vue @@ -0,0 +1,256 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingPublic/AppIntegratingPublic.vue b/project/shuzipingchang/app/AppIntegratingPublic/AppIntegratingPublic.vue new file mode 100644 index 00000000..407106a5 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingPublic/AppIntegratingPublic.vue @@ -0,0 +1,63 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingPublic/components/Add.vue b/project/shuzipingchang/app/AppIntegratingPublic/components/Add.vue new file mode 100644 index 00000000..39c90c06 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingPublic/components/Add.vue @@ -0,0 +1,138 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingPublic/components/List.vue b/project/shuzipingchang/app/AppIntegratingPublic/components/List.vue new file mode 100644 index 00000000..5b54fb3f --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingPublic/components/List.vue @@ -0,0 +1,192 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingRules/AppIntegratingRules.vue b/project/shuzipingchang/app/AppIntegratingRules/AppIntegratingRules.vue new file mode 100644 index 00000000..004417a9 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingRules/AppIntegratingRules.vue @@ -0,0 +1,43 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingRules/components/List.vue b/project/shuzipingchang/app/AppIntegratingRules/components/List.vue new file mode 100644 index 00000000..f3c50e4d --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingRules/components/List.vue @@ -0,0 +1,611 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingSupermarket/AppIntegratingSupermarket.vue b/project/shuzipingchang/app/AppIntegratingSupermarket/AppIntegratingSupermarket.vue new file mode 100644 index 00000000..1b5c55a8 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingSupermarket/AppIntegratingSupermarket.vue @@ -0,0 +1,106 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingSupermarket/components/AddStore.vue b/project/shuzipingchang/app/AppIntegratingSupermarket/components/AddStore.vue new file mode 100644 index 00000000..1f70a6ce --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingSupermarket/components/AddStore.vue @@ -0,0 +1,507 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingSupermarket/components/GoodsList.vue b/project/shuzipingchang/app/AppIntegratingSupermarket/components/GoodsList.vue new file mode 100644 index 00000000..18fad76d --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingSupermarket/components/GoodsList.vue @@ -0,0 +1,214 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingSupermarket/components/StoreList.vue b/project/shuzipingchang/app/AppIntegratingSupermarket/components/StoreList.vue new file mode 100644 index 00000000..b99c5aca --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingSupermarket/components/StoreList.vue @@ -0,0 +1,159 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingSupermarket/components/addGoods.vue b/project/shuzipingchang/app/AppIntegratingSupermarket/components/addGoods.vue new file mode 100644 index 00000000..60e14936 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingSupermarket/components/addGoods.vue @@ -0,0 +1,220 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingTask/AppIntegratingTask.vue b/project/shuzipingchang/app/AppIntegratingTask/AppIntegratingTask.vue new file mode 100644 index 00000000..7e858122 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingTask/AppIntegratingTask.vue @@ -0,0 +1,70 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingTask/components/Add.vue b/project/shuzipingchang/app/AppIntegratingTask/components/Add.vue new file mode 100644 index 00000000..3911a2da --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingTask/components/Add.vue @@ -0,0 +1,433 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingTask/components/Detail.vue b/project/shuzipingchang/app/AppIntegratingTask/components/Detail.vue new file mode 100644 index 00000000..a27e8f77 --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingTask/components/Detail.vue @@ -0,0 +1,192 @@ + + + + + diff --git a/project/shuzipingchang/app/AppIntegratingTask/components/List.vue b/project/shuzipingchang/app/AppIntegratingTask/components/List.vue new file mode 100644 index 00000000..bb9e69dc --- /dev/null +++ b/project/shuzipingchang/app/AppIntegratingTask/components/List.vue @@ -0,0 +1,223 @@ + + + + + diff --git a/project/shuzipingchang/app/AppPageSet/AppPageSet.vue b/project/shuzipingchang/app/AppPageSet/AppPageSet.vue new file mode 100644 index 00000000..9dcc990f --- /dev/null +++ b/project/shuzipingchang/app/AppPageSet/AppPageSet.vue @@ -0,0 +1,202 @@ + + + + + diff --git a/project/shuzipingchang/app/AppResidentInfo/AppResidentInfo.vue b/project/shuzipingchang/app/AppResidentInfo/AppResidentInfo.vue new file mode 100644 index 00000000..e85a04a0 --- /dev/null +++ b/project/shuzipingchang/app/AppResidentInfo/AppResidentInfo.vue @@ -0,0 +1,69 @@ + + + + + diff --git a/project/shuzipingchang/app/AppResidentInfo/components/Add.vue b/project/shuzipingchang/app/AppResidentInfo/components/Add.vue new file mode 100644 index 00000000..36fed955 --- /dev/null +++ b/project/shuzipingchang/app/AppResidentInfo/components/Add.vue @@ -0,0 +1,717 @@ + + + diff --git a/project/shuzipingchang/app/AppResidentInfo/components/Detail.vue b/project/shuzipingchang/app/AppResidentInfo/components/Detail.vue new file mode 100644 index 00000000..c824b6e3 --- /dev/null +++ b/project/shuzipingchang/app/AppResidentInfo/components/Detail.vue @@ -0,0 +1,122 @@ + + + + + diff --git a/project/shuzipingchang/app/AppResidentInfo/components/List.vue b/project/shuzipingchang/app/AppResidentInfo/components/List.vue new file mode 100644 index 00000000..512d95de --- /dev/null +++ b/project/shuzipingchang/app/AppResidentInfo/components/List.vue @@ -0,0 +1,156 @@ + + + + + diff --git a/project/shuzipingchang/app/AppResidentIntegrating/AppResidentIntegrating.vue b/project/shuzipingchang/app/AppResidentIntegrating/AppResidentIntegrating.vue new file mode 100644 index 00000000..269fea5e --- /dev/null +++ b/project/shuzipingchang/app/AppResidentIntegrating/AppResidentIntegrating.vue @@ -0,0 +1,64 @@ + + + + + diff --git a/project/shuzipingchang/app/AppResidentIntegrating/components/Detail.vue b/project/shuzipingchang/app/AppResidentIntegrating/components/Detail.vue new file mode 100644 index 00000000..3736ece9 --- /dev/null +++ b/project/shuzipingchang/app/AppResidentIntegrating/components/Detail.vue @@ -0,0 +1,181 @@ + + + + + diff --git a/project/shuzipingchang/app/AppResidentIntegrating/components/List.vue b/project/shuzipingchang/app/AppResidentIntegrating/components/List.vue new file mode 100644 index 00000000..8649d327 --- /dev/null +++ b/project/shuzipingchang/app/AppResidentIntegrating/components/List.vue @@ -0,0 +1,277 @@ + + + + + diff --git a/project/shuzipingchang/app/AppSubjectSet/AppSubjectSet.vue b/project/shuzipingchang/app/AppSubjectSet/AppSubjectSet.vue new file mode 100644 index 00000000..5124d1ac --- /dev/null +++ b/project/shuzipingchang/app/AppSubjectSet/AppSubjectSet.vue @@ -0,0 +1,70 @@ + + + + + diff --git a/project/shuzipingchang/app/AppSubjectSet/components/Add.vue b/project/shuzipingchang/app/AppSubjectSet/components/Add.vue new file mode 100644 index 00000000..40766486 --- /dev/null +++ b/project/shuzipingchang/app/AppSubjectSet/components/Add.vue @@ -0,0 +1,128 @@ + + + + + diff --git a/project/shuzipingchang/app/AppSubjectSet/components/List.vue b/project/shuzipingchang/app/AppSubjectSet/components/List.vue new file mode 100644 index 00000000..44a15ebc --- /dev/null +++ b/project/shuzipingchang/app/AppSubjectSet/components/List.vue @@ -0,0 +1,144 @@ + + + + +