From dda6806b0bc6d80cfdaa61380bab1d6435a36238 Mon Sep 17 00:00:00 2001 From: 23688nl <329261568@qq.com> Date: Wed, 12 Oct 2022 16:03:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=EF=BC=9A=E7=94=B5=E4=BB=B7?= =?UTF-8?q?=E5=90=88=E5=90=8C=20=E7=A7=BB=E5=85=A5=20=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E4=B8=8B>>=E8=83=BD=E6=BA=90=E7=AE=A1?= =?UTF-8?q?=E7=90=86>>=E7=94=B5=E4=BB=B7=E5=90=88=E5=90=8C=20=E5=89=8D?= =?UTF-8?q?=E7=AB=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../project/profileV2/ENavLayout/index.vue | 4 +- .../iot/project/profileV2/EPrice/index.vue | 522 ++++++++++++++++++ .../profileV2/EPrice/profile/timePicker.vue | 223 ++++++++ src/views/iot/project/profileV2/details.vue | 9 +- 4 files changed, 755 insertions(+), 3 deletions(-) create mode 100644 src/views/iot/project/profileV2/EPrice/index.vue create mode 100644 src/views/iot/project/profileV2/EPrice/profile/timePicker.vue diff --git a/src/views/iot/project/profileV2/ENavLayout/index.vue b/src/views/iot/project/profileV2/ENavLayout/index.vue index ee959a67..c23edd1f 100644 --- a/src/views/iot/project/profileV2/ENavLayout/index.vue +++ b/src/views/iot/project/profileV2/ENavLayout/index.vue @@ -38,6 +38,7 @@ import EEnergyLoad from "../EnergyManage/EEnergyLoad"; import ENavMenuButton from '../ENavMenuButton/index'; import ShopLocation from "@/components/Amap/components/shopLocation/index"; import ESceneManage from '../ESceneManage/index' +import EPrice from '../EPrice/index' export default { name: 'EProjectNavLayout', components: { @@ -61,7 +62,8 @@ export default { EEnergyLoad, ShopLocation, ESceneManage, - ENavMenuButton + ENavMenuButton, + EPrice }, props: { tabs: { diff --git a/src/views/iot/project/profileV2/EPrice/index.vue b/src/views/iot/project/profileV2/EPrice/index.vue new file mode 100644 index 00000000..4f8c4774 --- /dev/null +++ b/src/views/iot/project/profileV2/EPrice/index.vue @@ -0,0 +1,522 @@ + + + + diff --git a/src/views/iot/project/profileV2/EPrice/profile/timePicker.vue b/src/views/iot/project/profileV2/EPrice/profile/timePicker.vue new file mode 100644 index 00000000..5679a4a9 --- /dev/null +++ b/src/views/iot/project/profileV2/EPrice/profile/timePicker.vue @@ -0,0 +1,223 @@ + + + diff --git a/src/views/iot/project/profileV2/details.vue b/src/views/iot/project/profileV2/details.vue index f378d3fa..4759a8f7 100644 --- a/src/views/iot/project/profileV2/details.vue +++ b/src/views/iot/project/profileV2/details.vue @@ -376,12 +376,17 @@ export default { template: 'ENavLayout', children: [ { - label: "电 量", + label: "电 量", key: "electricity", template: "EElectricity", }, { - label: "负 载", + label: "电价合同", + key: "eprice", + template: "EPrice", + }, + { + label: "负 载", key: "energyLoad", template: "EEnergyLoad", },