Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
U
uni-app-ddh-shop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhanhai
uni-app-ddh-shop
Commits
4ea05d26
Commit
4ea05d26
authored
Mar 20, 2025
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
APP账号注销需求完成
parent
cb551012
Changes
12
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
413 additions
and
258 deletions
+413
-258
App.vue
App.vue
+9
-2
api.js
config/api.js
+1
-1
manifest.json
manifest.json
+2
-2
common.js
server/common.js
+17
-0
prolist.vue
subPackage/prolist/prolist.vue
+35
-34
index.less
subPackage/setting/index.less
+15
-2
setting.vue
subPackage/setting/setting.vue
+286
-213
uni-popup-dialog.vue
...ni-popup/components/uni-popup-dialog/uni-popup-dialog.vue
+7
-2
index.js
utils/index.js
+15
-0
request.js
utils/request.js
+1
-1
修改日志.md
修改日志.md
+3
-1
多典花.md
多典花.md
+22
-0
No files found.
App.vue
View file @
4ea05d26
...
...
@@ -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
()
}
...
...
config/api.js
View file @
4ea05d26
...
...
@@ -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'
},
...
...
manifest.json
View file @
4ea05d26
...
...
@@ -2,8 +2,8 @@
"name"
:
"多典花"
,
"appid"
:
"__UNI__DE04B13"
,
"description"
:
""
,
"versionName"
:
"1.
0.9
"
,
"versionCode"
:
1
09
,
"versionName"
:
"1.
1.1
"
,
"versionCode"
:
1
11
,
"transformPx"
:
false
,
/*
5
+App特有相关
*/
"app-plus"
:
{
...
...
server/common.js
View file @
4ea05d26
...
...
@@ -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
);
},
}
subPackage/prolist/prolist.vue
View file @
4ea05d26
<
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=
"line-right"
></view>
</view>
</view>
</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>
</view>
</
template
>
<
script
>
export
default
{
data
()
{
return
{
proList
:[]
}
},
onLoad
(
options
){
console
.
log
(
options
,
'65'
)
if
(
options
){
this
.
proList
=
JSON
.
parse
(
options
.
mydata
)
}
this
.
buryingPoint
(
'app:prolist_pageView'
)
},
methods
:
{
// 参考链接:https://blog.csdn.net/cscj2010/article/details/128236662
goIndex
(
item
){
plus
.
runtime
.
openWeb
(
item
.
protocolUrl
)
}
},
onShow
(){
}
}
export
default
{
data
()
{
return
{
proList
:
[],
};
},
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
);
}
},
methods
:
{
// 参考链接:https://blog.csdn.net/cscj2010/article/details/128236662
jump
(
item
)
{
plus
.
runtime
.
openWeb
(
item
.
protocolUrl
);
},
},
};
</
script
>
<
style
src=
'./index.less'
lang=
"less"
scoped
></
style
>
\ No newline at end of file
<
style
src=
"./index.less"
lang=
"less"
scoped
></
style
>
subPackage/setting/index.less
View file @
4ea05d26
.set-page {
width: 100%;
height: 100vh;
// min-height: 1624rpx;
background: #F7FAFF;
.set-main {
...
...
@@ -147,7 +146,7 @@
background-color: white;
z-index: 1002;
overflow: hidden;
// display: flex;
// flex-direction: column;
...
...
@@ -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
subPackage/setting/setting.vue
View file @
4ea05d26
This diff is collapsed.
Click to expand it.
uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.vue
View file @
4ea05d26
<
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
{
...
...
@@ -313,4 +318,4 @@
.uni-popup__info
{
color
:
#909399
;
}
</
style
>
</
style
>
utils/index.js
View file @
4ea05d26
...
...
@@ -225,4 +225,19 @@ export const loadLocation = () => {
console
.
log
(
err
,
'获取设备定位信息报错了'
)
})
})
}
/** 获取设备版本号 */
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
utils/request.js
View file @
4ea05d26
...
...
@@ -33,7 +33,7 @@ const request = async (url, type, data) => {
data
:
{
...
data
},
timeout
:
5
000
,
timeout
:
10
000
,
header
:
{
Accept
:
"application/json;charset=UTF-8"
,
"Content-Type"
:
"application/json;charset=UTF-8"
,
...
...
修改日志.md
View file @
4ea05d26
...
...
@@ -3,7 +3,9 @@
1.
manifest.json 里面去掉实名认证的勾选
2.
删除uni-cloud云文件夹
3.
实名认证H5页面,对uni实名认证做兼容处理(或者不让后台配置uni实名认证)
2.
#### 2025-03-20
1.
设置页面注销前校验检查
...
...
多典花.md
0 → 100644
View file @
4ea05d26
#### 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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment