Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eMall_miniapp
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
高宇
eMall_miniapp
Commits
eae675eb
Commit
eae675eb
authored
Jul 14, 2023
by
高宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加子页面
parent
296f9916
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
84 additions
and
3 deletions
+84
-3
index.vue
moreFunction/about/agreementDetail/index.vue
+37
-0
index.vue
moreFunction/deliveryAddress/addAddress/index.vue
+37
-2
index.vue
moreFunction/deliveryAddress/index.vue
+10
-1
No files found.
moreFunction/about/agreementDetail/index.vue
0 → 100644
View file @
eae675eb
<
template
>
<view
class=
"agreementDetail"
>
<view
class=
"title"
>
协议详情
</view>
<view
class=
"content"
>
我们将处理两大类信息。我们的使命是不断改进我们的软件和服务,
并为您提供新的或更好的体验。作为此任务的一部分,我们将您的信息用于以下目的。
如果出现用于处理您的个人数据的任何新目的,我们将通过对本协议策进行相应的更改,
在开始处理有关该新目的的信息之前通知您。
</view>
</view>
</
template
>
<
script
>
export
default
{
data
(){
return
{
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.agreementDetail
{
min-height
:
100vh
;
.title
{
display
:
flex
;
height
:
88rpx
;
align-items
:
center
;
justify-content
:
center
;
font-size
:
32rpx
;
font-weight
:
700
;
}
.content
{
width
:
96%
;
margin-left
:
2%
;
}
}
</
style
>
\ No newline at end of file
moreFunction/deliveryAddress/addAddress/index.vue
View file @
eae675eb
...
@@ -17,15 +17,50 @@
...
@@ -17,15 +17,50 @@
<u-input
v-model=
"form.fullAddress"
/>
<u-input
v-model=
"form.fullAddress"
/>
</u-form-item>
</u-form-item>
</u-form>
</u-form>
<u-picker
v-model=
"show"
mode=
"region"
></u-picker>
<view
class=
"loginout"
>
<view
class=
"loginout"
>
<view
class=
"loginout-button"
@
click=
"loginout"
>
保存
</view>
<view
class=
"loginout-button"
@
click=
"loginout"
>
保存
</view>
</view>
</view>
</view>
</view>
<u-picker
v-model=
"show"
mode=
"region"
@
confirm=
handleConfirm
></u-picker>
</view>
</view>
</
template
>
</
template
>
<
script
>
<
script
>
export
default
{
data
(){
return
{
show
:
false
,
form
:
{
location
:
''
}
}
},
methods
:{
handleConfirm
(
e
){
console
.
log
(
'e'
,
e
)
this
.
form
.
location
=
e
.
province
.
label
+
' '
+
e
.
city
.
label
+
' '
+
e
.
area
.
label
}
}
}
</
script
>
</
script
>
<
style
>
<
style
lang=
"scss"
scoped
>
.shippingAddress
{
.content
{
.loginout
{
padding
:
40rpx
;
.loginout-button
{
height
:
88rpx
;
background
:
#BD1A2D
;
border-radius
:
22px
22px
22px
22px
;
font-size
:
34rpx
;
font-family
:
Source
Han
Sans
CN-Regular
,
Source
Han
Sans
CN
;
font-weight
:
400
;
color
:
#FFFFFF
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
}
}
}
}
</
style
>
</
style
>
\ No newline at end of file
moreFunction/deliveryAddress/index.vue
View file @
eae675eb
...
@@ -59,7 +59,16 @@
...
@@ -59,7 +59,16 @@
url
:
'/moreFunction/deliveryAddress/useWxAddress/index'
url
:
'/moreFunction/deliveryAddress/useWxAddress/index'
})
})
},
},
addAddress
(){}
addAddress
(){
uni
.
navigateTo
({
url
:
'/moreFunction/deliveryAddress/addAddress/index'
})
},
handleUpdate
()
{
uni
.
navigateTo
({
url
:
'/moreFunction/deliveryAddress/addAddress/index'
})
}
}
}
}
}
</
script
>
</
script
>
...
...
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