Commit 4ea05d26 authored by caimeng's avatar caimeng

APP账号注销需求完成

parent cb551012
......@@ -11,8 +11,15 @@ export default {
const appStart = uni.getStorageSync('appStart')
if (appStart) {
uni.switchTab({
url: "/pages/index/index",
// uni.switchTab({
// url: "/pages/index/index",
// success: function () {
// plus.navigator.closeSplashscreen()
// }
// })
uni.navigateTo({
url: "/subPackage/setting/setting",
success: function () {
plus.navigator.closeSplashscreen()
}
......
......@@ -5,7 +5,7 @@
// 开发环境
const BASE = {
development: {
common: "http://192.168.2.8:8080",
common: "http://192.168.1.2:8080",
event: 'http://118.31.124.88:21111',
h5: 'http://192.168.0.23:8080/index.html'
},
......
......@@ -2,8 +2,8 @@
"name" : "多典花",
"appid" : "__UNI__DE04B13",
"description" : "",
"versionName" : "1.0.9",
"versionCode" : 109,
"versionName" : "1.1.1",
"versionCode" : 111,
"transformPx" : false,
/* 5+App特有相关 */
"app-plus" : {
......
......@@ -106,4 +106,21 @@ export default {
async getfaceResult(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>
<view class='pro-page'>
<view class='pro-mian'>
<view class='main-lien' v-for="item in proList" :key="item.protocolName" @click='goIndex(item)'>
<view class="line-left">{{item.protocolName}}</view>
<view class="pro-page">
<view class="pro-mian">
<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>
</view>
......@@ -10,31 +15,27 @@
</template>
<script>
export default {
export default {
data() {
return {
proList:[]
}
proList: [],
};
},
onLoad(options){
console.log(options,'65')
if(options){
this.proList=JSON.parse(options.mydata)
onLoad(options) {
this.buryingPoint("app:prolist_pageView");
if (options) {
this.proList = JSON.parse(options.mydata);
} else {
this.proList = JSON.parse(uni.getStorageSync("APP-SETTING").protocol);
}
this.buryingPoint('app:prolist_pageView')
},
methods: {
// 参考链接:https://blog.csdn.net/cscj2010/article/details/128236662
goIndex(item){
plus.runtime.openWeb(item.protocolUrl)
}
jump(item) {
plus.runtime.openWeb(item.protocolUrl);
},
onShow(){
}
}
},
};
</script>
<style src='./index.less' lang="less" scoped></style>
\ No newline at end of file
<style src="./index.less" lang="less" scoped></style>
.set-page {
width: 100%;
height: 100vh;
// min-height: 1624rpx;
background: #F7FAFF;
.set-main {
......@@ -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
This diff is collapsed.
<template>
<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>
</view>
<view v-if="mode === 'base'" class="uni-dialog-content">
......@@ -63,6 +63,10 @@
mixins: [popup],
emits: ['confirm', 'close', 'update:modelValue', 'input'],
props: {
showTitle: {
type: Boolean,
default: true
},
inputType: {
type: String,
default: 'text'
......@@ -244,6 +248,7 @@
justify-content: center;
align-items: center;
padding: 20px;
text-align: center;
}
.uni-dialog-content-text {
......
......@@ -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) => {
data: {
...data
},
timeout:5000,
timeout:10000,
header: {
Accept: "application/json;charset=UTF-8",
"Content-Type": "application/json;charset=UTF-8",
......
......@@ -3,7 +3,9 @@
1. manifest.json 里面去掉实名认证的勾选
2. 删除uni-cloud云文件夹
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