From f6efc465e8f5633313afc8da54c17988722073eb Mon Sep 17 00:00:00 2001
From: zhangyongtian <1181606322@qq.com>
Date: Sat, 14 Sep 2024 15:55:07 +0800
Subject: [PATCH] fix: 审核页面逻辑调整、滚动调整
---
gz-wxparty/pages/myRegisterList/index.js | 39 ++++++++++++++++++++++++---------------
1 files changed, 24 insertions(+), 15 deletions(-)
diff --git a/gz-wxparty/pages/myRegisterList/index.js b/gz-wxparty/pages/myRegisterList/index.js
index 847fb0c..cc3be1c 100644
--- a/gz-wxparty/pages/myRegisterList/index.js
+++ b/gz-wxparty/pages/myRegisterList/index.js
@@ -57,6 +57,7 @@
// 关闭筛选框
addClosePopup() {
+ console.log('111', 11);
this.setData({
showModal: false
})
@@ -158,29 +159,37 @@
})
},
- // 关闭AI弹窗
- addClosePopup() {
- this.setData({
- AiModal: false
- })
+ // 评价
+ evaluate(e) {
+ let id = e.currentTarget.dataset.id;
+ wx.navigateTo({
+ url: '../../pages/evaluate/index?id=' + id
+ });
},
+
+ // 关闭AI弹窗
+ // addClosePopup() {
+ // this.setData({
+ // AiModal: false
+ // })
+ // },
/**
* 生命周期函数--监听页面加载
*/
onLoad(options) {
- this.pageQuery(this.data.search)
},
onShow() {
- let AICase = wx.getStorageSync('AICase') || '';
- if (AICase) {
- this.setData({
- AiModal: AICase
- })
- wx.removeStorage({
- key: 'AICase'
- })
- }
+ this.pageQuery(this.data.search)
+ // let AICase = wx.getStorageSync('AICase') || '';
+ // if (AICase) {
+ // this.setData({
+ // AiModal: AICase
+ // })
+ // wx.removeStorage({
+ // key: 'AICase'
+ // })
+ // }
}
})
\ No newline at end of file
--
Gitblit v1.8.0