t***@163.com
t***@163.com
  • 发布:2023-06-27 15:24
  • 更新:2023-06-27 16:48
  • 阅读:238

【报Bug】uniAdmin后台页面统计 修改页面名称不生效

分类:uniCloud

产品分类: uniCloud/App

操作步骤:

【报Bug】uniAdmin后台 -- uni统计 -- 受访页面 -- 修改页面名称 -- 提示修改成功

预期结果:

修改生效

实际结果:

没生效

bug描述:

【报Bug】uniAdmin后台页面统计 修改页面提示修改成功但是不生效

2023-06-27 15:24 负责人:无 分享
已邀请:
DCloud_uniCloud_VK

DCloud_uniCloud_VK

bug已确认

DCloud_uniCloud_VK

DCloud_uniCloud_VK

278行, url 改成 path 即可

editName(value) {  
                // 使用 clientDB 提交数据  
                const db = uniCloud.database()  
                db.collection('uni-stat-pages')  
                    .where({  
                        path: this.queryId  
                    })  
                    .update({  
                        title: value  
                    })  
                    .then((res) => {  
                        if (res.result.updated) {  
                            uni.showToast({  
                                title: '修改成功'  
                            })  
                            this.getTableData()  
                        } else {  
                            uni.showToast({  
                                title: '修改失败',  
                                icon: "none"  
                            })  
                        }  
                    }).catch((err) => {  
                        uni.showModal({  
                            content: err.message || '请求服务失败',  
                            showCancel: false  
                        })  
                    }).finally(() => {  
                        uni.hideLoading()  
                    })  
            },
  • t***@163.com (作者)

    这是在项目里面用代码改对吧 这样的话是不是每个页面都要调用一次

    2023-06-27 18:18

  • DCloud_uniCloud_VK

    回复 t***@163.com: 只改受访页面即可

    2023-06-27 19:38

要回复问题请先登录注册