Commit 4ea05d26 authored by caimeng's avatar caimeng

APP账号注销需求完成

parent cb551012
...@@ -11,8 +11,15 @@ export default { ...@@ -11,8 +11,15 @@ export default {
const appStart = uni.getStorageSync('appStart') const appStart = uni.getStorageSync('appStart')
if (appStart) { if (appStart) {
uni.switchTab({ // uni.switchTab({
url: "/pages/index/index", // url: "/pages/index/index",
// success: function () {
// plus.navigator.closeSplashscreen()
// }
// })
uni.navigateTo({
url: "/subPackage/setting/setting",
success: function () { success: function () {
plus.navigator.closeSplashscreen() plus.navigator.closeSplashscreen()
} }
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
// 开发环境 // 开发环境
const BASE = { const BASE = {
development: { development: {
common: "http://192.168.2.8:8080", common: "http://192.168.1.2:8080",
event: 'http://118.31.124.88:21111', event: 'http://118.31.124.88:21111',
h5: 'http://192.168.0.23:8080/index.html' h5: 'http://192.168.0.23:8080/index.html'
}, },
......
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
"name" : "多典花", "name" : "多典花",
"appid" : "__UNI__DE04B13", "appid" : "__UNI__DE04B13",
"description" : "", "description" : "",
"versionName" : "1.0.9", "versionName" : "1.1.1",
"versionCode" : 109, "versionCode" : 111,
"transformPx" : false, "transformPx" : false,
/* 5+App特有相关 */ /* 5+App特有相关 */
"app-plus" : { "app-plus" : {
......
...@@ -106,4 +106,21 @@ export default { ...@@ -106,4 +106,21 @@ export default {
async getfaceResult(data) { async getfaceResult(data) {
return request('/app/v1/resultByUni', 'POST', data); return request('/app/v1/resultByUni', 'POST', data);
}, },
/** 设置页面
* 注销前校验
*/
async userLogoffPreCheck(data) {
return request('/app/user/userCancelPreCheck', 'POST', data);
},
/** 注销 */
async userLogoff(data) {
return request('/app/user/userCancellation', 'POST', data);
},
/** 退出登录 */
async userLogout(data) {
return request('/app/user/loginOut', 'POST', data);
},
} }
<template> <template>
<view class='pro-page'> <view class="pro-page">
<view class='pro-mian'> <view class="pro-mian">
<view class='main-lien' v-for="item in proList" :key="item.protocolName" @click='goIndex(item)'> <view
<view class="line-left">{{item.protocolName}}</view> class="main-lien"
v-for="item in proList"
:key="item.protocolName"
@click="jump(item)"
>
<view class="line-left">{{ item.protocolName }}</view>
<view class="line-right"></view> <view class="line-right"></view>
</view> </view>
</view> </view>
...@@ -10,31 +15,27 @@ ...@@ -10,31 +15,27 @@
</template> </template>
<script> <script>
export default { export default {
data() { data() {
return { return {
proList:[] proList: [],
} };
}, },
onLoad(options){ onLoad(options) {
console.log(options,'65') this.buryingPoint("app:prolist_pageView");
if(options){ if (options) {
this.proList=JSON.parse(options.mydata) this.proList = JSON.parse(options.mydata);
} else {
this.proList = JSON.parse(uni.getStorageSync("APP-SETTING").protocol);
} }
this.buryingPoint('app:prolist_pageView')
}, },
methods: { methods: {
// 参考链接:https://blog.csdn.net/cscj2010/article/details/128236662 // 参考链接:https://blog.csdn.net/cscj2010/article/details/128236662
goIndex(item){ jump(item) {
plus.runtime.openWeb(item.protocolUrl) plus.runtime.openWeb(item.protocolUrl);
}
}, },
onShow(){ },
};
}
}
</script> </script>
<style src='./index.less' lang="less" scoped></style> <style src="./index.less" lang="less" scoped></style>
\ No newline at end of file
.set-page { .set-page {
width: 100%; width: 100%;
height: 100vh; height: 100vh;
// min-height: 1624rpx;
background: #F7FAFF; background: #F7FAFF;
.set-main { .set-main {
...@@ -207,4 +206,18 @@ ...@@ -207,4 +206,18 @@
} }
} }
// uni-popup 样式
:deep(.uni-popup-dialog) {
.uni-dialog-title {
display: none;
}
.uni-dialog-content {
text-align: center;
}
}
} }
\ No newline at end of file
<template> <template>
<view class='set-page'> <view class="set-page">
<view class='set-main'> <view class="set-main">
<view class='main-line'> <view class="main-line">
<view class='line-item' @click='getProtol'> <view class="line-item" @click="getProtol">
<view class='item-text'>相关协议</view> <view class="item-text">相关协议</view>
<view class='item-icon'></view> <view class="item-icon"></view>
</view>
<view class='line-item' @click='cancelSize'>
<view class='item-text'>清除缓存</view>
<view class='item-r'>
<view class='r-text'>{{ cacheSize }}</view>
<i class='r-icon'></i>
</view>
</view>
<view class='line-item'>
<view class='item-text'>当前版本</view>
<view class='item-version'>{{ versionNumber }}</view>
</view>
</view>
<view v-show="token != ''">
<view class='line-des'>
如果您今后不打算使用APP,您可以选择
<view class='des-x' @click='goCancel'>注销账号</view>
</view>
<view class='line-tips'>注:该操作不可恢复</view>
</view> </view>
</view> <view class="line-item" @click="cancelSize">
<view v-show="token != ''" class='set-footer' @click='goOut'>退出登录</view> <view class="item-text">清除缓存</view>
<!-- 注销 --> <view class="item-r">
<view :hidden="userFeedbackHidden" class="popup_content"> <view class="r-text">{{ cacheSize }}</view>
<view class="popup_title">提示</view> <i class="r-icon"></i>
<view class='popup_main'>
您一旦确认注销,您所有信息都会被清除,您确认注销账号?
</view>
<view class='btn-main'>
<view class='btn-confirm' @click='cancelAccount()'>
确认
</view>
<view class='btn-cel' @click="hideDiv()">
取消
</view> </view>
</view> </view>
</view>
<view class="popup_overlay" :hidden="userFeedbackHidden"></view>
<!-- 退出 --> <view class="line-item">
<view :hidden="outHidden" class="popup_content"> <view class="item-text">当前版本</view>
<view class="popup_title">提示</view> <view class="item-version">{{ versionNumber }}</view>
<view class='popup_main'>
您确定退出登录吗?
</view>
<view class='btn-main'>
<view class='btn-confirm' @click='loginOut()'>
确认
</view> </view>
<view class='btn-cel' @click="loginCel()">
取消
</view> </view>
<!-- 注销账号 -->
<view class="line-des">
<text>如果您今后不打算使用APP,您可以选择</text
><text class="des-x" @click="handleLogoffCheck">注销账号</text>
</view> </view>
<view class="line-tips">注:该操作不可恢复</view>
</view> </view>
<view class="popup_overlay" :hidden="outHidden"></view>
<view class="set-footer" @click="handleLogout">退出登录</view>
<page-meta
:page-style="'overflow:' + (visible ? 'hidden' : 'visible')"
></page-meta>
<!-- 注销弹框 -->
<uni-popup
class="logoff-dialog"
ref="logoffDialog"
@change="handlePopupChange"
type="dialog"
>
<uni-popup-dialog
type="info"
:cancelText="confirmText"
:confirmText="cancelText"
:content="message"
@confirm="logoffCancel"
@close="logoffConfirm"
></uni-popup-dialog>
</uni-popup>
<!-- 退出 -->
<uni-popup
class="logout-dialog"
ref="logoutDialog"
@change="handlePopupChange"
type="dialog"
>
<uni-popup-dialog
type="info"
cancelText="取消"
confirmText="确认"
title="提示"
content="您确定退出登录吗?"
@confirm="loginOut"
@close="logoutCancel"
></uni-popup-dialog>
</uni-popup>
</view> </view>
</template> </template>
<script> <script>
import { loadVersion } from "@/utils";
import API from "@/server/common.js";
export default { export default {
data() { data() {
return { return {
userFeedbackHidden: true,//弹窗 versionNumber: "",
outHidden: true, cacheSize: "",
protocolList: [],
versionNumber: '', visible: false,
cacheSize: '', message: "您一旦确认注销,您所有信息都会被清除,您确认注销账号?",
token: '' cancelText: "确认",
confirmText: "取消",
allowCancel: false,
result: null,
};
},
onShow() {
this.init();
},
methods: {
// 页面初始化
async init() {
try {
// 埋点
this.buryingPoint("app:setting_pageView");
// 获取设备版本号
this.versionNumber = await loadVersion();
// 初始化缓存
this.cacheSize = await this.getDeviceCache();
console.log(
this.versionNumber,
this.cacheSize,
"初始化信息000000000000"
);
} catch (err) {
console.log(err, "页面初始化报错");
} }
}, },
onLoad() { toJSON() {},
let self = this; // 获取设备缓存
self.init() getDeviceCache() {
self.buryingPoint('app:setting_pageView') let cacheSize;
self.token = uni.getStorageSync('token') return new Promise((resolve) => {
plus.cache.calculate(size => { plus.cache.calculate((size) => {
if (size < 1024) { if (size < 1024) {
self.cacheSize = size + 'B'; cacheSize = size + "B";
} else if (size / 1024 >= 1 && size / 1024 / 1024 < 1) { } else if (size / 1024 >= 1 && size / 1024 / 1024 < 1) {
self.cacheSize = Math.floor((size / 1024) * 100) / 100 + 'KB'; cacheSize = Math.floor((size / 1024) * 100) / 100 + "KB";
} else if (size / 1024 / 1024 >= 1) { } else if (size / 1024 / 1024 >= 1) {
self.cacheSize = Math.floor((size / 1024 / 1024) * 100) / 100 + 'M'; cacheSize = Math.floor((size / 1024 / 1024) * 100) / 100 + "M";
} }
console.log(self.cacheSize, 'size') resolve(cacheSize);
}); });
plus.runtime.getProperty(plus.runtime.appid, function (wgtinfo) {
if (wgtinfo.version) {
self.versionNumber = wgtinfo.version;
} else {
self.versionNumber = plus.runtime.version;
}
console.log(self.versionNumber, 'version')
}); });
}, },
methods: { // 清除缓存
toJSON() { },
init() {
const self = this
self.$request('/app/version/getSetting', 'POST').then(res => {
const { protocol, phone } = res.result
console.log(protocol, typeof (protocol), 'setting')
if (protocol) {
console.log(typeof (protocol), '8888')
self.protocolList = JSON.parse(protocol)
}
}).catch(err => {
console.log(err, '请求出错')
})
},
cancelSize() { cancelSize() {
try {
let self = this; let self = this;
plus.cache.clear(res => { plus.cache.clear(() => {
uni.showToast({ uni.showToast({
title: '清除成功!', title: "清除成功!",
icon: 'none', icon: "none",
success() { success() {
self.cacheSize = '0B'; self.cacheSize = "0B";
} },
});
}); });
}) } catch (error) {
console.log(error, "清除缓存出错");
}
}, },
// 跳转到协议列表页面
getProtol() { getProtol() {
uni.navigateTo({ uni.navigateTo({
url: '/subPackage/prolist/prolist?mydata=' + encodeURIComponent(JSON.stringify(this.protocolList)) url: "/subPackage/prolist/prolist",
}) });
}, },
goCancel() {
this.userFeedbackHidden = false handlePopupChange(e) {
console.log(e, "弹窗变化");
this.visible = e.show;
}, },
goOut() { // 账户注销前校验
// this.userHidden=false async handleLogoffCheck() {
this.outHidden = false try {
const res = await API.userLogoffPreCheck();
if (res.success) {
const pages = getCurrentPages(); // res.result.status = "APPLY_LOAN";
console.log(pages.length, '写') const { tips, status } = res.result;
pages.forEach(page => { this.result = res.result;
console.log(page.route, '路由信息') this.message = tips;
})
}, switch (status) {
cancelAccount() { case "APPLY_LOAN":
//注销账号 this.cancelText = "查看进度";
const self = this this.confirmText = "取消";
self.$request('/app/user/userCancellation', 'POST').then(res => { break;
console.log(res, 'myinit'); case "NEED_REPAYMENT":
const { die } = res.result this.cancelText = "查看账单";
console.log(die, 'die') this.confirmText = "取消";
if (die == true) { break;
console.log(die, 'die2') default:
self.userFeedbackHidden = false this.cancelText = "取消";
uni.removeStorageSync('token') this.confirmText = "确认";
this.Go('uni:/pages/index/index', 'tab') break;
}
this.$refs.logoffDialog.open();
} else {
uni.showToast({
title: res.message,
icon: "none",
});
}
} catch (err) {
console.log(err, "注销前校验报错");
} }
})
}, },
// 注销账号确认
async logoffConfirm() {
try {
const { status } = this.result;
switch (status) {
case "APPLY_LOAN":
case "NEED_REPAYMENT":
this.$refs.logoffDialog.close();
break;
default:
const res = await API.userLogoff();
if (res.success) {
uni.setTabBarItem({
index: 1,
visible: false,
});
uni.removeStorageSync("token");
this.$refs.logoffDialog.close();
this.Go("uni:/pages/index/index", "tab");
}
break;
}
} catch (err) {
console.log(err, "注销账号报错");
}
},
loginOut() { // 注销账号取消
logoffCancel() {
const pages = getCurrentPages(); try {
this.result.jumpPath = "bill";
const { status, jumpPath } = this.result;
switch (status) {
case "APPLY_LOAN":
case "NEED_REPAYMENT":
const config = JSON.parse(uni.getStorageSync("APP-SETTING"));
const timestamp = new Date().getTime();
const token = uni.getStorageSync("tokenFinance");
const mobile = uni.getStorageSync("l-mobile");
const $src =
config["h5Url"] +
`?token=${token}&mobile=${mobile}&timestamp=${timestamp}#/${jumpPath}`;
const newSrc = $src.split("?");
const targetSrc = `${newSrc[0]}?${encodeURIComponent(newSrc[1])}`;
pages.forEach(page => { uni.navigateTo({
console.log(page, '页面') url: `/pages/web/websrc?url=${targetSrc}`,
const isWebView = page.$getAppWebview(); });
if (isWebView) { break;
let currentPages = page.$getAppWebview() default:
let children = isWebView.children() this.$refs.logoffDialog.close();
if (children.length) { break;
children[0].close()
} }
} catch (err) {
console.log(err);
} }
}) },
// 退出登录弹框展示
handleLogout() {
this.$refs.logoutDialog.open();
},
//退出登录 // 退出登录确认
const self = this async loginOut() {
console.log(333) try {
self.$request('/app/user/loginOut', 'POST').then(res => { const res = await API.userLogout();
console.log(res, 'logout'); if (res.success) {
uni.setTabBarItem({ uni.setTabBarItem({
index: 1, index: 1,
visible: false visible: false,
}) });
self.outHidden = false this.logoutCancel();
uni.removeStorageSync('token') uni.showToast({
this.Go('uni:/pages/index/index', 'tab') title: "退出登录成功",
}) icon: "success",
}, });
loginCel() { setTimeout(() => {
this.outHidden = true uni.removeStorageSync("token");
uni.navigateBack();
}, 1000);
}
} catch (err) {
console.log(err, "退出登录报错");
}
}, },
hideDiv() { // 退出登录取消
//隐藏弹窗 logoutCancel() {
this.userFeedbackHidden = true this.$refs.logoutDialog.close();
this.userHidden = true
this.outHidden = true
}, },
}, },
onShow() { };
this.init()
this.token = uni.getStorageSync('token')
}
}
</script> </script>
<style src='./index.less' lang="less" scoped></style> <style src="./index.less" lang="less"></style>
<template> <template>
<view class="uni-popup-dialog"> <view class="uni-popup-dialog">
<view class="uni-dialog-title"> <view v-if="showTitle" class="uni-dialog-title">
<text class="uni-dialog-title-text" :class="['uni-popup__'+dialogType]">{{titleText}}</text> <text class="uni-dialog-title-text" :class="['uni-popup__'+dialogType]">{{titleText}}</text>
</view> </view>
<view v-if="mode === 'base'" class="uni-dialog-content"> <view v-if="mode === 'base'" class="uni-dialog-content">
...@@ -63,6 +63,10 @@ ...@@ -63,6 +63,10 @@
mixins: [popup], mixins: [popup],
emits: ['confirm', 'close', 'update:modelValue', 'input'], emits: ['confirm', 'close', 'update:modelValue', 'input'],
props: { props: {
showTitle: {
type: Boolean,
default: true
},
inputType: { inputType: {
type: String, type: String,
default: 'text' default: 'text'
...@@ -244,6 +248,7 @@ ...@@ -244,6 +248,7 @@
justify-content: center; justify-content: center;
align-items: center; align-items: center;
padding: 20px; padding: 20px;
text-align: center;
} }
.uni-dialog-content-text { .uni-dialog-content-text {
......
...@@ -226,3 +226,18 @@ export const loadLocation = () => { ...@@ -226,3 +226,18 @@ export const loadLocation = () => {
}) })
}) })
} }
/** 获取设备版本号 */
export const loadVersion = () => {
let versionNumber;
return new Promise((resolve, reject) => {
plus.runtime.getProperty(plus.runtime.appid, function (wgtinfo) {
if (wgtinfo.version) {
versionNumber = wgtinfo.version;
} else {
versionNumber = plus.runtime.version;
}
resolve(versionNumber)
});
});
}
\ No newline at end of file
...@@ -33,7 +33,7 @@ const request = async (url, type, data) => { ...@@ -33,7 +33,7 @@ const request = async (url, type, data) => {
data: { data: {
...data ...data
}, },
timeout:5000, timeout:10000,
header: { header: {
Accept: "application/json;charset=UTF-8", Accept: "application/json;charset=UTF-8",
"Content-Type": "application/json;charset=UTF-8", "Content-Type": "application/json;charset=UTF-8",
......
...@@ -3,7 +3,9 @@ ...@@ -3,7 +3,9 @@
1. manifest.json 里面去掉实名认证的勾选 1. manifest.json 里面去掉实名认证的勾选
2. 删除uni-cloud云文件夹 2. 删除uni-cloud云文件夹
3. 实名认证H5页面,对uni实名认证做兼容处理(或者不让后台配置uni实名认证) 3. 实名认证H5页面,对uni实名认证做兼容处理(或者不让后台配置uni实名认证)
2.
#### 2025-03-20
1. 设置页面注销前校验检查
......
#### 2025-03-13
1. 移除UNI的实名认证
1. manifest.json 里面去掉实名认证的勾选
2. 删除uni-cloud云文件夹
3. 实名认证H5页面,对uni实名认证做兼容处理(或者不让后台配置uni实名认证)
2.
#### 待做需求
1. 优化APP更新
1. 需支持强更新、热更新
2. 更新设置需在后台配置
2. 代码优化
1. 埋点方法
2. 页面跳转方法
3. vuex
4. 缓存
5. 项目配置
3.
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment