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
0d2ca29b
Commit
0d2ca29b
authored
Feb 18, 2025
by
caimeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改BUG
parent
ce7bdd86
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
45 additions
and
39 deletions
+45
-39
App.vue
App.vue
+2
-2
api.js
config/api.js
+1
-1
manifest.json
manifest.json
+1
-1
login.vue
pages/login/login.vue
+1
-1
address.less
subPackage/address/address.less
+4
-4
address.vue
subPackage/address/address.vue
+4
-5
cashier.vue
subPackage/cashier/cashier.vue
+5
-6
order.less
subPackage/order/order.less
+1
-2
order.vue
subPackage/order/order.vue
+3
-10
index.less
subPackage/productDetails/index.less
+13
-5
productDetails.vue
subPackage/productDetails/productDetails.vue
+10
-2
No files found.
App.vue
View file @
0d2ca29b
...
...
@@ -39,7 +39,7 @@ export default {
// plus.navigator.closeSplashscreen()
// }
// })
}
else
{
uni
.
redirectTo
({
url
:
"/pages/starPage/index"
,
...
...
@@ -48,7 +48,7 @@ export default {
}
})
}
// 强制竖屏
plus
.
screen
.
lockOrientation
(
"portrait-primary"
)
...
...
config/api.js
View file @
0d2ca29b
...
...
@@ -38,7 +38,7 @@ let env = process.env.VUE_APP_BASE_NODE_ENV
*/
// #ifdef APP-PLUS
env
=
"
developmen
t"
;
env
=
"
stes
t"
;
// #endif
const
api
=
{
...
...
manifest.json
View file @
0d2ca29b
...
...
@@ -15,7 +15,7 @@
/*
安全区域配置,仅iOS平台生效
*/
"bottom"
:
{
/*
底部安全区域配置
*/
"offset"
:
"
none
"
//
底部安全区域偏移,
"none"
表示不空出安全区域,
"auto"
自动计算空出安全区域,默认值为
"none"
"offset"
:
"
auto
"
//
底部安全区域偏移,
"none"
表示不空出安全区域,
"auto"
自动计算空出安全区域,默认值为
"none"
}
},
/*
应用发布信息
*/
...
...
pages/login/login.vue
View file @
0d2ca29b
...
...
@@ -194,7 +194,7 @@ export default {
uni
.
setStorageSync
(
'token'
,
token
)
uni
.
setStorageSync
(
'clientNo'
,
clientNo
)
uni
.
setStorageSync
(
'l-mobile'
,
self
.
mobile
)
//
self.loginNocheck()
self
.
loginNocheck
()
// 设置
switchShowTabbar
();
...
...
subPackage/address/address.less
View file @
0d2ca29b
...
...
@@ -14,17 +14,17 @@
.a-item {
width: 690rpx;
height: 251rpx;
min-
height: 251rpx;
background: #FFFFFF;
box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(232, 232, 232, 0.49);
border-radius: 10rpx;
margin-bottom: 24rpx;
box-sizing: border-box;
padding: 32rpx 20rpx
0
;
padding: 32rpx 20rpx
20rpx
;
.a-item-name {
height: 40rpx;
min-
height: 40rpx;
padding-left: 47rpx;
font-size: 28rpx;
color: #333333;
...
...
@@ -33,7 +33,7 @@
}
.a-item-detail {
height: 40rpx;
min-
height: 40rpx;
padding-left: 47rpx;
font-size: 28rpx;
color: #999999;
...
...
subPackage/address/address.vue
View file @
0d2ca29b
<
template
>
<view
class=
"page-address"
>
<view
v-if=
"list"
class=
"a-list"
>
<view
v-if=
"list
&& list.length
"
class=
"a-list"
>
<view
v-for=
"(item, index) in list"
:key=
"index"
@
click=
"handleSelect(item)"
class=
"a-item"
>
<view
class=
"a-item-name"
>
...
...
@@ -10,8 +10,8 @@
<text>
{{
item
.
province
}}
{{
item
.
city
}}
{{
item
.
region
}}
{{
item
.
address
}}
</text>
</view>
<view
class=
"a-item-btn"
>
<text
@
click=
"handleEdit(item)"
>
编辑
</text>
<text
@
click=
"handleDel(item.id)"
>
删除
</text>
<text
@
click
.
stop
=
"handleEdit(item)"
>
编辑
</text>
<text
@
click
.
stop
=
"handleDel(item.id)"
>
删除
</text>
</view>
</view>
</view>
...
...
@@ -72,9 +72,8 @@ export default {
const
res
=
await
API
.
addressDelete
({
id
})
if
(
res
.
success
)
{
uni
.
showToast
({
icon
:
'none'
,
title
:
'删除成功'
,
duration
:
1
2
00
duration
:
1
5
00
});
// 更新列表
self
.
init
()
...
...
subPackage/cashier/cashier.vue
View file @
0d2ca29b
...
...
@@ -115,14 +115,13 @@ export default {
//调用成功的回调
success
(
res
)
{
console
.
log
(
'success:'
+
res
);
uni
.
showToast
({
icon
:
'none'
,
title
:
'支付成功,即将返回,请耐心等待!'
,
duration
:
3000
uni
.
showToast
({
title
:
'支付成功!'
,
duration
:
2000
});
setTimeout
(()
=>
{
uni
.
navigateBack
();
},
3
000
)
that
.
Go
(
'uni:/subPackage/detailResult/detailResult'
,
'redirect'
)
},
2
000
)
},
//调用失败的回调
fail
(
err
)
{
...
...
subPackage/order/order.less
View file @
0d2ca29b
...
...
@@ -56,8 +56,7 @@
}
&.o-address-detail {
height: 42rpx;
min-height: 42rpx;
font-size: 30rpx;
color: #333333;
line-height: 42rpx;
...
...
subPackage/order/order.vue
View file @
0d2ca29b
...
...
@@ -135,16 +135,9 @@ export default {
const
res
=
await
API
.
orderSubmit
({
...
params
})
if
(
res
.
success
)
{
const
{
id
}
=
res
.
result
;
uni
.
showToast
({
icon
:
'none'
,
title
:
'订单提交成功'
,
duration
:
1200
});
TimeOut
=
setTimeout
(()
=>
{
uni
.
redirectTo
({
url
:
'/subPackage/cashier/cashier?id='
+
id
})
},
1500
)
uni
.
redirectTo
({
url
:
'/subPackage/cashier/cashier?id='
+
id
})
}
}
catch
(
err
)
{
...
...
subPackage/productDetails/index.less
View file @
0d2ca29b
.product-page {
width: 100%;
background: #F7FAFF;
box-sizing: border-box;
padding-bottom: 150rpx;
// padding-bottom: calc(constant(safe-area-inset-bottom) + 150rpx);
// padding-bottom: calc(env(safe-area-inset-bottom) + 150rpx);
.p-banner {
...
...
@@ -10,7 +13,8 @@
min-height: 450rpx;
margin-bottom: 20rpx;
box-sizing: border-box;
padding: 0 30rpx;
padding: 50rpx 30rpx;
background: #fff;
.banner-item {
display: block;
...
...
@@ -145,7 +149,7 @@
align-items: center;
.img-f {
display: block;
display: block;
}
}
...
...
@@ -261,11 +265,15 @@
.header-l {
margin-top: 21rpx;
width: 333rpx;
height: 272rpx;
display: flex;
align-items: center;
justify-content: center;
image {
width: 333rpx;
height: 272rpx;
background-size: 333rpx 272rpx;
display: block;
background: #9CA5B9;
}
}
...
...
subPackage/productDetails/productDetails.vue
View file @
0d2ca29b
...
...
@@ -42,7 +42,7 @@
<view-modal
:show=
"showback"
@
cancel=
"cancel"
:showCancel=
"true"
class=
'infrom-modal'
:title=
"title"
>
<view
class=
'modal-header'
>
<view
class=
'header-l'
>
<image
:src=
'goodsImage'
></image>
<image
mode=
"widthFix"
:src=
'goodsImage'
></image>
</view>
<view
class=
"header-r"
>
<view
class=
'r-prise'
>
...
...
@@ -103,7 +103,7 @@ export default {
this
.
initTel
()
}
},
onHide
(){
onHide
()
{
this
.
showback
=
false
},
methods
:
{
...
...
@@ -170,6 +170,14 @@ export default {
},
addCount
()
{
console
.
log
(
this
.
quantity
,
'8888'
)
return
uni
.
showToast
({
title
:
'最多买一件'
,
icon
:
"none"
,
duration
:
2000
})
if
(
this
.
quantity
>=
this
.
stock
)
{
uni
.
showToast
({
title
:
'超过库存量了'
,
...
...
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