From 7d4d357931d43798f3beea2d97711cc4f3956381 Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期四, 11 七月 2024 17:58:57 +0800
Subject: [PATCH] Merge branch 'master' of http://139.186.142.91:10010/r/productDev/zbomyoujia

---
 wechat_jiaxuan/components/disCase/index.js |   34 ++++++++++++++++++++++++++++++++++
 1 files changed, 34 insertions(+), 0 deletions(-)

diff --git a/wechat_jiaxuan/components/disCase/index.js b/wechat_jiaxuan/components/disCase/index.js
new file mode 100644
index 0000000..a76c4eb
--- /dev/null
+++ b/wechat_jiaxuan/components/disCase/index.js
@@ -0,0 +1,34 @@
+// components/disCase/index.js
+Component({
+  /**
+   * 缁勪欢鐨勫睘鎬у垪琛�
+   */
+  properties: {
+
+  },
+  data: {
+    showParams: false,
+    activeStatus: '0'
+  },
+  methods: {
+    handleDetail(e) {
+      wx.navigateTo({
+        url: '/pages/detailDis/case',
+      })
+    },
+    changeShowParams(){
+      const showParams = !this.data.showParams
+      this.setData({showParams})
+      // this.setData({showTwo: false})
+    },
+    changeTwo(){
+      const showTwo = !this.data.showTwo
+      this.setData({showTwo})
+      this.setData({showOne: false})
+    },
+    statusChange(e) {
+      const activeStatus = e.currentTarget.dataset.status
+      this.setData({activeStatus})
+    }
+  }
+})

--
Gitblit v1.9.3