表单内容过多时,用户编辑表单,编辑到一半,返回时询问保存编辑信息,保存后下次进来自动填写保存的表单内容。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| onBackPress(e) { const that = this; if (e.from == "backbutton") { if (!that.isEdit) { uni.showModal({ title: "提示", content: "是否保留此次编辑?", success(res) { if (res.confirm) { that.createDataStorageSync() uni.navigateBack() } else { uni.navigateBack() } } }) } else { uni.navigateBack() } return true; } },
|