Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
7
7-Eleven
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
高淑倩
7-Eleven
Commits
bf352663
Commit
bf352663
authored
Mar 26, 2020
by
谢中龙
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改地址提示相关
parent
52b2d6d1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
81 additions
and
78 deletions
+81
-78
addAddress.js
src/pages/addAddress/addAddress.js
+74
-62
cart.js
src/pages/cart/cart.js
+7
-16
confirmOrder.js
src/pages/confirmOrder/confirmOrder.js
+0
-0
No files found.
src/pages/addAddress/addAddress.js
View file @
bf352663
...
...
@@ -30,6 +30,7 @@ wxService.page({
address
:
''
,
type
:
1
},
pageFrom
:
''
,
},
/**
...
...
@@ -38,6 +39,8 @@ wxService.page({
onLoad
:
function
(
options
)
{
wx
.
hideShareMenu
()
if
(
options
&&
options
.
id
){
this
.
data
.
id
=
options
.
id
;
this
.
data
.
pageFrom
=
options
.
from
;
wx
.
setNavigationBarTitle
({
title
:
'编辑地址'
})
...
...
@@ -50,8 +53,6 @@ wxService.page({
title
:
'新增地址'
})
}
},
/**
* 生命周期函数--监听页面显示
...
...
@@ -99,6 +100,13 @@ wxService.page({
}).
then
(
res
=>
{
const
{
result
,
data
}
=
res
.
data
if
(
result
==
0
)
{
//从订单那边直接过来的
if
(
this
.
data
.
pageFrom
==
'order'
){
this
.
data
.
cityView
=
''
;
}
else
{
this
.
data
.
cityView
=
data
.
province
+
' '
+
data
.
city
+
' '
+
data
.
district
;
}
this
.
setData
({
params
:
{
userId
:
data
.
userId
,
...
...
@@ -111,20 +119,8 @@ wxService.page({
type
:
data
.
type
},
isSelect
:
data
.
type
,
cityView
:
data
.
province
+
' '
+
data
.
city
+
' '
+
data
.
district
})
// wxService.getC1().then((c1) => {
// return wxService.Promise.all([wxService.Promise.resolve(c1), wxService.getC2ByC1('北京'), wxService.getC3ByC2('北京北京市')])
// }).then(res => {
// const citys = res.map(item => {
// return [...item]
// })
// this.setData({
// citys
// })
// })
cityView
:
this
.
data
.
cityView
});
}
}).
finally
(()
=>
{
})
...
...
@@ -159,24 +155,26 @@ wxService.page({
case
0
:
cityName
=
this
.
data
.
citys
[
0
][
index
]
this
.
data
.
selectCityName
[
0
]
=
cityName
cityData
.
forEach
((
item
)
=>
{
if
(
item
.
value
==
cityName
){
item
.
children
.
forEach
((
cityItem
)
=>
{
cityList
.
push
(
cityItem
.
value
)
cityItem
.
children
.
forEach
((
districtItem
)
=>
{
district
.
push
(
districtItem
.
value
)
})
})
}
})
//获取省份下的城市
cityList
=
cityData
[
index
].
children
.
map
(
item
=>
{
return
item
.
value
;
});
//获取区
if
(
cityList
.
length
>
0
){
district
=
cityData
[
index
].
children
[
0
].
children
.
map
(
item
=>
{
return
item
.
value
});
}
this
.
setData
({
'citys[1]'
:
cityList
,
'citys[2]'
:
district
})
break
case
1
:
cityName
=
this
.
data
.
citys
[
1
][
index
]
this
.
data
.
selectCityName
[
1
]
=
cityName
cityName
=
this
.
data
.
citys
[
1
][
index
]
;
this
.
data
.
selectCityName
[
1
]
=
cityName
;
cityData
.
forEach
((
item
)
=>
{
item
.
children
.
forEach
((
cityItem
)
=>
{
if
(
cityName
==
cityItem
.
value
)
{
...
...
@@ -246,48 +244,61 @@ wxService.page({
address
:
e
.
detail
.
value
.
address
,
type
:
this
.
data
.
isSelect
?
1
:
0
}
})
});
wx
.
showLoading
({
title
:
'加载中'
})
if
(
this
.
data
.
addressId
){
this
.
setData
({
'params.id'
:
this
.
data
.
id
})
wxService
.
post
(
`/member/addressManage/update`
,
this
.
data
.
params
).
then
(
res
=>
{
const
{
result
,
data
}
=
res
.
data
if
(
result
==
0
)
{
wx
.
hideLoading
()
wx
.
showToast
({
title
:
`修改成功`
,
icon
:
'none'
})
wx
.
navigateBack
({
delta
:
1
})
}
}).
finally
(()
=>
{
wx
.
hideLoading
()
},()
=>
{
this
.
sureUpdateAddress
(
this
.
data
.
params
);
})
}
else
{
wxService
.
post
(
`/member/addressManage/save`
,
this
.
data
.
params
).
then
(
res
=>
{
const
{
result
,
data
}
=
res
.
data
if
(
result
==
0
)
{
wx
.
hideLoading
()
wx
.
showToast
({
title
:
`保存成功`
,
icon
:
'none'
})
wx
.
navigateBack
({
delta
:
1
})
}
}).
finally
(()
=>
{
this
.
sureAddAddress
(
this
.
data
.
params
);
}
},
//新增保存地址
sureAddAddress
(
params
){
wxService
.
post
(
`/member/addressManage/save`
,
params
).
then
(
res
=>
{
const
{
result
,
data
}
=
res
.
data
if
(
result
==
0
)
{
wx
.
hideLoading
()
})
wx
.
showToast
({
title
:
`保存成功`
,
icon
:
'none'
})
wx
.
navigateBack
({
delta
:
1
})
}
}).
finally
(()
=>
{
wx
.
hideLoading
()
})
},
//更新地址
sureUpdateAddress
(
params
){
wxService
.
post
(
`/member/addressManage/update`
,
params
).
then
(
res
=>
{
const
{
result
,
data
}
=
res
.
data
if
(
result
==
0
)
{
wx
.
hideLoading
()
wx
.
showToast
({
title
:
`修改成功`
,
icon
:
'none'
});
}
}
if
(
this
.
data
.
pageFrom
==
'order'
){
params
.
fullArea
=
params
.
province
+
' '
+
params
.
city
+
' '
+
params
.
district
;
wx
.
setStorageSync
(
'_defalutAddress'
,
params
);
}
wx
.
navigateBack
({
delta
:
1
})
}
}).
finally
(()
=>
{
wx
.
hideLoading
()
})
},
})
\ No newline at end of file
src/pages/cart/cart.js
View file @
bf352663
...
...
@@ -44,6 +44,11 @@ wxService.page({
selected
:
2
})
}
this
.
setData
({
checkAll
:
false
,
});
this
.
init
()
},
...
...
@@ -53,23 +58,9 @@ wxService.page({
})
// 1556108807316001
// 1556108807316000
this
.
getCartList
()
// const trolleySku = {
// count: 1,
// skuId: '1556108807316000'
// }
// // 加入购物车
// wxService.post('/sale/trolley/put', trolleySku).then(res => {
// if (res) {
// const { result } = res.data
// if (result == 0) {
// wx.hideLoading()
// this.getCartList()
// }
// }
// })
this
.
getCartList
();
},
// 查询 /trolley/query
getCartList
()
{
wx
.
showLoading
({
...
...
src/pages/confirmOrder/confirmOrder.js
View file @
bf352663
This diff is collapsed.
Click to expand it.
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