Skip to content

弹窗

js
uni.showModal({
    title: '',
    content: '确认要退出吗?',
    showCancel: true,
    success: ({ confirm, cancel }) => {
        if(confirm){
            // this.asyncOutLogin();
            // uni.navigateTo({ url: '/pages/login/index?branch_shop_id='+this.branch_shop_id+'&table_code='+this.table_code+'' })
        }
    }
})