Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
user
Overview
Overview
Details
Activity
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
hooloo
mp
user
Commits
4557923c
Commit
4557923c
authored
Aug 30, 2022
by
songbingqi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复部分bug
parent
94101c65
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
14 deletions
+26
-14
components/menuAssembly/index.vue
+14
-3
menuSubPackage/pages/goodsDetail/goodsDetail.vue
+12
-11
No files found.
components/menuAssembly/index.vue
View file @
4557923c
...
...
@@ -253,9 +253,20 @@ export default {
scroll
(
e
)
{
if
(
!
this
.
scrolled
)
return
;
const
{
categoryPostion
}
=
this
;
const
[
el
]
=
categoryPostion
.
filter
(
item
=>
(
item
.
top
)
-
(
e
.
target
.
scrollTop
)
>=
20
);
console
.
log
(
el
,
'-------------------'
,
e
.
target
.
scrollTop
)
if
(
el
)
this
.
categoryId
=
el
.
id
let
otherHeight
=
0
if
(
this
.
buied
){
otherHeight
=
320
}
else
{
otherHeight
=
270
}
if
(
this
.
shopCarFlag
){
otherHeight
+=
100
}
else
{
otherHeight
+=
0
}
const
el
=
categoryPostion
.
filter
(
item
=>
{
return
item
.
top
<=
e
.
target
.
scrollTop
+
otherHeight
});
console
.
log
(
el
[
el
.
length
-
1
],
'-------------------'
,
e
.
target
.
scrollTop
+
otherHeight
,
otherHeight
)
if
(
el
[
el
.
length
-
1
])
this
.
categoryId
=
el
[
el
.
length
-
1
].
id
},
categoryClickMain
(
id
)
{
this
.
scrolled
=
false
...
...
menuSubPackage/pages/goodsDetail/goodsDetail.vue
View file @
4557923c
...
...
@@ -326,16 +326,7 @@ export default {
}
},
async
getallNum
(
e
)
{
const
settleMentFunc
=
async
()
=>
{
let
Authorization
=
uni
.
getStorageSync
(
'Authorization'
);
if
(
!
Authorization
)
{
this
.
loginByPhoneNumber
(
e
);
return
}
if
(
!
this
.
shopState
||!
this
.
isInRange
){
return
}
const
gosettleFun
=
async
()
=>
{
const
{
goods
}
=
this
;
const
{
data
}
=
await
Order
.
checkSku
({
skuId
:
goods
.
skuId
})
const
{
state
,
goods
:
newgoods
}
=
data
.
data
...
...
@@ -355,6 +346,9 @@ export default {
uni
.
navigateTo
({
url
:
`/orderSubPackage/pages/settlement/index?buyType=1&goodsList=1`
})
}
}
let
Authorization
=
uni
.
getStorageSync
(
'Authorization'
);
if
(
!
Authorization
)
{
this
.
loginByPhoneNumber
(
e
);
uni
.
authorize
({
scope
:
'scope.userLocation'
,
success
:
()
=>
{
//1.1 允许授权
...
...
@@ -374,7 +368,7 @@ export default {
success
:
(
res
)
=>
{
console
.
log
(
res
)
if
(
res
.
authSetting
[
'scope.userLocation'
]
==
true
){
//判断res.authsetting的值是true还是false
settleMentFunc
()
gosettleFun
()
}
else
{
// console.log("什么也不做");
}
...
...
@@ -389,6 +383,13 @@ export default {
}
})
return
}
if
(
!
this
.
shopState
||!
this
.
isInRange
){
return
}
// return
},
async
getMenuList
()
{
...
...
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