From 1ed3d03e5bfd6da16ea0259557d80e6f2713b853 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Fri, 1 Apr 2022 09:30:35 +0800 Subject: [PATCH 1/7] =?UTF-8?q?=E8=A1=8C=E6=94=BF=E8=AE=B8=E5=8F=AF?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppAdministrativeLicense.vue | 179 ++++++++++++++++++ .../apps/AppAdministrativeLicense/detial.vue | 68 +++++++ 2 files changed, 247 insertions(+) create mode 100644 project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue create mode 100644 project/xiushan/apps/AppAdministrativeLicense/detial.vue diff --git a/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue b/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue new file mode 100644 index 00000000..81c68262 --- /dev/null +++ b/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue @@ -0,0 +1,179 @@ + + + + + \ No newline at end of file diff --git a/project/xiushan/apps/AppAdministrativeLicense/detial.vue b/project/xiushan/apps/AppAdministrativeLicense/detial.vue new file mode 100644 index 00000000..1f66bee8 --- /dev/null +++ b/project/xiushan/apps/AppAdministrativeLicense/detial.vue @@ -0,0 +1,68 @@ + + + + + \ No newline at end of file From 1bfcccaaecb51866d2422e2f081f47baaef6c3ed Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Fri, 1 Apr 2022 11:03:06 +0800 Subject: [PATCH 2/7] =?UTF-8?q?=E5=A4=B1=E4=BF=A1=E8=A2=AB=E6=89=A7?= =?UTF-8?q?=E8=A1=8C=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppAdministrativeLicense.vue | 42 +---- .../AppDishonestExecutee.vue | 57 +++++++ .../AppDishonestExecutee/components/Add.vue | 159 ++++++++++++++++++ .../AppDishonestExecutee/components/List.vue | 76 +++++++++ 4 files changed, 298 insertions(+), 36 deletions(-) create mode 100644 project/xiushan/apps/AppDishonestExecutee/AppDishonestExecutee.vue create mode 100644 project/xiushan/apps/AppDishonestExecutee/components/Add.vue create mode 100644 project/xiushan/apps/AppDishonestExecutee/components/List.vue diff --git a/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue b/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue index 81c68262..1b2df0e5 100644 --- a/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue +++ b/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue @@ -102,42 +102,12 @@ export default { computed: { colConfigs() { return [ - { - label: "许可文书号", - prop: "position", - align: "center", - width: "260px", - }, - { - label: "许可有效期至", - prop: "position", - align: "center", - width: "200px", - }, - { - label: "许可机关", - prop: "position", - align: "center", - width: "200px", - }, - { - label: "许可对象", - prop: "position", - align: "center", - width: "200px", - }, - { - label: "统一信用代码", - prop: "position", - align: "center", - width: "200px", - }, - { - label: "更新时间", - prop: "position", - align: "center", - width: "120px", - }, + { label: "许可文书号", prop: "position", align: "center", width: "260px",}, + { label: "许可有效期至", prop: "position", align: "center", width: "200px",}, + { label: "许可机关", prop: "position", align: "center", width: "200px",}, + { label: "许可对象", prop: "position", align: "center", width: "200px",}, + { label: "统一信用代码", prop: "position", align: "center", width: "200px",}, + { label: "更新时间", prop: "position", align: "center", width: "120px",}, { label: "操作人", prop: "position", align: "center", width: "150px" }, { slot: "options" }, ]; diff --git a/project/xiushan/apps/AppDishonestExecutee/AppDishonestExecutee.vue b/project/xiushan/apps/AppDishonestExecutee/AppDishonestExecutee.vue new file mode 100644 index 00000000..5b407d10 --- /dev/null +++ b/project/xiushan/apps/AppDishonestExecutee/AppDishonestExecutee.vue @@ -0,0 +1,57 @@ + + + + + diff --git a/project/xiushan/apps/AppDishonestExecutee/components/Add.vue b/project/xiushan/apps/AppDishonestExecutee/components/Add.vue new file mode 100644 index 00000000..252b5352 --- /dev/null +++ b/project/xiushan/apps/AppDishonestExecutee/components/Add.vue @@ -0,0 +1,159 @@ + + + + + \ No newline at end of file diff --git a/project/xiushan/apps/AppDishonestExecutee/components/List.vue b/project/xiushan/apps/AppDishonestExecutee/components/List.vue new file mode 100644 index 00000000..791328a3 --- /dev/null +++ b/project/xiushan/apps/AppDishonestExecutee/components/List.vue @@ -0,0 +1,76 @@ + + + + + \ No newline at end of file From 71ca1ebd4b59b79bc5f507a5561788e2635d2561 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Fri, 1 Apr 2022 11:26:35 +0800 Subject: [PATCH 3/7] =?UTF-8?q?=E8=A1=8C=E6=94=BF=E5=A4=84=E7=BD=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppAdministrativePenalty.vue | 57 ++++++ .../components/Add.vue | 171 ++++++++++++++++++ .../components/List.vue | 76 ++++++++ 3 files changed, 304 insertions(+) create mode 100644 project/xiushan/apps/AppAdministrativePenalty/AppAdministrativePenalty.vue create mode 100644 project/xiushan/apps/AppAdministrativePenalty/components/Add.vue create mode 100644 project/xiushan/apps/AppAdministrativePenalty/components/List.vue diff --git a/project/xiushan/apps/AppAdministrativePenalty/AppAdministrativePenalty.vue b/project/xiushan/apps/AppAdministrativePenalty/AppAdministrativePenalty.vue new file mode 100644 index 00000000..cfb4060e --- /dev/null +++ b/project/xiushan/apps/AppAdministrativePenalty/AppAdministrativePenalty.vue @@ -0,0 +1,57 @@ + + + + + diff --git a/project/xiushan/apps/AppAdministrativePenalty/components/Add.vue b/project/xiushan/apps/AppAdministrativePenalty/components/Add.vue new file mode 100644 index 00000000..4ab498b5 --- /dev/null +++ b/project/xiushan/apps/AppAdministrativePenalty/components/Add.vue @@ -0,0 +1,171 @@ + + + + + \ No newline at end of file diff --git a/project/xiushan/apps/AppAdministrativePenalty/components/List.vue b/project/xiushan/apps/AppAdministrativePenalty/components/List.vue new file mode 100644 index 00000000..ea9531f6 --- /dev/null +++ b/project/xiushan/apps/AppAdministrativePenalty/components/List.vue @@ -0,0 +1,76 @@ + + + + + \ No newline at end of file From 8962d5c1ad40bdd5c01c52a997d4a1762da1420c Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Fri, 1 Apr 2022 11:48:01 +0800 Subject: [PATCH 4/7] =?UTF-8?q?=E7=BA=B3=E7=A8=8E=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppRatepayingInfo/AppRatepayingInfo.vue | 57 +++++++ .../apps/AppRatepayingInfo/components/Add.vue | 156 ++++++++++++++++++ .../AppRatepayingInfo/components/List.vue | 76 +++++++++ 3 files changed, 289 insertions(+) create mode 100644 project/xiushan/apps/AppRatepayingInfo/AppRatepayingInfo.vue create mode 100644 project/xiushan/apps/AppRatepayingInfo/components/Add.vue create mode 100644 project/xiushan/apps/AppRatepayingInfo/components/List.vue diff --git a/project/xiushan/apps/AppRatepayingInfo/AppRatepayingInfo.vue b/project/xiushan/apps/AppRatepayingInfo/AppRatepayingInfo.vue new file mode 100644 index 00000000..c38030f8 --- /dev/null +++ b/project/xiushan/apps/AppRatepayingInfo/AppRatepayingInfo.vue @@ -0,0 +1,57 @@ + + + + + diff --git a/project/xiushan/apps/AppRatepayingInfo/components/Add.vue b/project/xiushan/apps/AppRatepayingInfo/components/Add.vue new file mode 100644 index 00000000..ecb2dfb6 --- /dev/null +++ b/project/xiushan/apps/AppRatepayingInfo/components/Add.vue @@ -0,0 +1,156 @@ + + + + + \ No newline at end of file diff --git a/project/xiushan/apps/AppRatepayingInfo/components/List.vue b/project/xiushan/apps/AppRatepayingInfo/components/List.vue new file mode 100644 index 00000000..1c6c8e85 --- /dev/null +++ b/project/xiushan/apps/AppRatepayingInfo/components/List.vue @@ -0,0 +1,76 @@ + + + + + \ No newline at end of file From c181c821c138c6e0559473263e5ca32f4a893cbf Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Fri, 1 Apr 2022 13:37:56 +0800 Subject: [PATCH 5/7] =?UTF-8?q?=E8=A1=8C=E6=94=BF=E8=AE=B8=E5=8F=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppAdministrativeLicense.vue | 162 ++++------------- .../components/Add.vue | 165 ++++++++++++++++++ .../components/List.vue | 148 ++++++++++++++++ .../apps/AppAdministrativeLicense/detial.vue | 68 -------- 4 files changed, 348 insertions(+), 195 deletions(-) create mode 100644 project/xiushan/apps/AppAdministrativeLicense/components/Add.vue create mode 100644 project/xiushan/apps/AppAdministrativeLicense/components/List.vue delete mode 100644 project/xiushan/apps/AppAdministrativeLicense/detial.vue diff --git a/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue b/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue index 1b2df0e5..c78d73ec 100644 --- a/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue +++ b/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue @@ -1,149 +1,57 @@ \ No newline at end of file + diff --git a/project/xiushan/apps/AppAdministrativeLicense/components/Add.vue b/project/xiushan/apps/AppAdministrativeLicense/components/Add.vue new file mode 100644 index 00000000..cc6ad2cf --- /dev/null +++ b/project/xiushan/apps/AppAdministrativeLicense/components/Add.vue @@ -0,0 +1,165 @@ + + + + + \ No newline at end of file diff --git a/project/xiushan/apps/AppAdministrativeLicense/components/List.vue b/project/xiushan/apps/AppAdministrativeLicense/components/List.vue new file mode 100644 index 00000000..2b6e194b --- /dev/null +++ b/project/xiushan/apps/AppAdministrativeLicense/components/List.vue @@ -0,0 +1,148 @@ + + + + + \ No newline at end of file diff --git a/project/xiushan/apps/AppAdministrativeLicense/detial.vue b/project/xiushan/apps/AppAdministrativeLicense/detial.vue deleted file mode 100644 index 1f66bee8..00000000 --- a/project/xiushan/apps/AppAdministrativeLicense/detial.vue +++ /dev/null @@ -1,68 +0,0 @@ - - - - - \ No newline at end of file From f831af9f8832161a88c1b3262ea4d8935f4114b7 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Fri, 1 Apr 2022 14:04:05 +0800 Subject: [PATCH 6/7] =?UTF-8?q?=E8=AF=A6=E6=83=85=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppAdministrativeLicense.vue | 3 +- .../components/Detail.vue | 140 +++++++++++++++ .../components/List.vue | 10 +- .../components/Detail.vue | 167 ++++++++++++++++++ .../components/List.vue | 17 +- .../components/Detail.vue | 155 ++++++++++++++++ .../AppDishonestExecutee/components/List.vue | 17 +- .../AppRatepayingInfo/components/Detail.vue | 152 ++++++++++++++++ .../AppRatepayingInfo/components/List.vue | 17 +- 9 files changed, 664 insertions(+), 14 deletions(-) create mode 100644 project/xiushan/apps/AppAdministrativeLicense/components/Detail.vue create mode 100644 project/xiushan/apps/AppAdministrativePenalty/components/Detail.vue create mode 100644 project/xiushan/apps/AppDishonestExecutee/components/Detail.vue create mode 100644 project/xiushan/apps/AppRatepayingInfo/components/Detail.vue diff --git a/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue b/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue index c78d73ec..0e778e60 100644 --- a/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue +++ b/project/xiushan/apps/AppAdministrativeLicense/AppAdministrativeLicense.vue @@ -9,6 +9,7 @@ + + \ No newline at end of file diff --git a/project/xiushan/apps/AppAdministrativeLicense/components/List.vue b/project/xiushan/apps/AppAdministrativeLicense/components/List.vue index 2b6e194b..bf57da9c 100644 --- a/project/xiushan/apps/AppAdministrativeLicense/components/List.vue +++ b/project/xiushan/apps/AppAdministrativeLicense/components/List.vue @@ -16,7 +16,7 @@