This commit is contained in:
2023-09-01 17:00:33 +08:00
parent f6769f754b
commit 4eb53058ca
5 changed files with 51 additions and 26 deletions

View File

@@ -11,9 +11,10 @@ Page({
data: {
albumArr : [], //商品轮播图
experienceId : '', //活动id
signDayNumber: '', //累计打卡天数-携带
etciData : '', //打卡心得
etciCursor : 0, //字数统计
bidData : '', //产品建议
bidCursor : 0,
refertoStatus: false,//打卡成功弹出
signDayNumber: '', //累计打卡天数-最新
signWaterNumber: '',//累计打卡水滴
@@ -108,8 +109,10 @@ Page({
* 心得
*/
etcinput(e) {
let { value, cursor } = e.detail
this.setData({
etciData: e.detail.value
etciData: value,
etciCursor: cursor
})
},
@@ -117,8 +120,10 @@ Page({
* 产品建议
*/
bidinput(e) {
let { value, cursor } = e.detail
this.setData({
bidData: e.detail.value
bidData: value,
bidCursor: cursor
})
},