From 474d688ecc725316d507dbab5eb77894917bf040 Mon Sep 17 00:00:00 2001 From: dai <851733175@qq.com> Date: Thu, 25 Nov 2021 15:05:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=E6=9B=B4=E6=94=B9=E5=86=B2?= =?UTF-8?q?=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../communityService/dqfwzx/cpts/edit.vue | 468 ++++++++++++++++++ .../modules/communityService/dqfwzx/index.vue | 316 ++++++++++++ .../modules/communityService/sqzzz/index.vue | 12 +- 3 files changed, 790 insertions(+), 6 deletions(-) create mode 100644 src/views/modules/communityService/dqfwzx/cpts/edit.vue create mode 100644 src/views/modules/communityService/dqfwzx/index.vue diff --git a/src/views/modules/communityService/dqfwzx/cpts/edit.vue b/src/views/modules/communityService/dqfwzx/cpts/edit.vue new file mode 100644 index 00000000..df346a61 --- /dev/null +++ b/src/views/modules/communityService/dqfwzx/cpts/edit.vue @@ -0,0 +1,468 @@ + + + + + + + diff --git a/src/views/modules/communityService/dqfwzx/index.vue b/src/views/modules/communityService/dqfwzx/index.vue new file mode 100644 index 00000000..2afa5533 --- /dev/null +++ b/src/views/modules/communityService/dqfwzx/index.vue @@ -0,0 +1,316 @@ + + + + + diff --git a/src/views/modules/communityService/sqzzz/index.vue b/src/views/modules/communityService/sqzzz/index.vue index cfa8d72c..e0a6ec96 100644 --- a/src/views/modules/communityService/sqzzz/index.vue +++ b/src/views/modules/communityService/sqzzz/index.vue @@ -183,8 +183,8 @@ export default { fmData: { organizationName: "", - startDate: "", - endDate: "", + startTime: "", + endTime: "", createTime: ["", ""], }, @@ -201,11 +201,11 @@ export default { watch: { "fmData.createTime": function (val) { if (Array.isArray(val) && val.length == 2) { - this.fmData.startDate = val[0]; - this.fmData.endDate = val[1]; + this.fmData.startTime = val[0]; + this.fmData.endTime = val[1]; } else { - this.fmData.startDate = ""; - this.fmData.endDate = ""; + this.fmData.startTime = ""; + this.fmData.endTime = ""; } }, },