6.2
This commit is contained in:
parent
04855a770c
commit
5b36365a76
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="address">
|
<view class="address">
|
||||||
<radio-group>
|
<radio-group @change="changeDefault">
|
||||||
<view v-for="(item, index) in addressList" :key="index" class="address-item">
|
<view v-for="(item, index) in addressList" :key="index" class="address-item">
|
||||||
<view class="item-top">
|
<view class="item-top">
|
||||||
<view class="user-info">
|
<view class="user-info">
|
||||||
@ -11,18 +11,18 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="item-bottom">
|
<view class="item-bottom">
|
||||||
<view class="item-default">
|
<view class="item-default">
|
||||||
<radio :value="item.value" :checked="index === current" />
|
<radio :value="item" :checked="index === current" color="#FF770F" class="radio-class" />
|
||||||
<view :class="[item.value ? 'radio-default' : 'radio-others']">
|
<view :class="[item == current ? 'radio-default' : 'radio-others']">
|
||||||
{{ item.value ? '已设为默认' : '设为默认' }}
|
{{ item == current ? '已设为默认' : '设为默认' }}
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="address-operate">
|
<view class="address-operate">
|
||||||
<view>
|
<view>
|
||||||
<!-- <img src="../static/mine/24.png" /> -->
|
<img src="@/pageE/static/mine/24.png" />
|
||||||
<view>编辑</view>
|
<view>编辑</view>
|
||||||
</view>
|
</view>
|
||||||
<view>
|
<view>
|
||||||
<!-- <img src="../static/mine/25.png" /> -->
|
<img src="@/pageE/static/mine/25.png" />
|
||||||
<view>删除</view>
|
<view>删除</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@ -34,11 +34,10 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'address',
|
name: 'address-item',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
current: 0,
|
current: 0
|
||||||
default: 0
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
@ -46,16 +45,98 @@ export default {
|
|||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
console.log(22)
|
console.log(22)
|
||||||
}
|
},
|
||||||
|
methods: {
|
||||||
|
editAddress() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pageE/mine/EditAddress'
|
||||||
|
});
|
||||||
|
},
|
||||||
|
changeDefault(event) {
|
||||||
|
console.log(event)
|
||||||
|
this.current = event.detail.value
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.address {
|
.address {
|
||||||
background-color: #ffffff;
|
padding-top: 1rpx;
|
||||||
.address-item {
|
.address-item {
|
||||||
|
background-color: #ffffff;
|
||||||
margin-bottom: 20rpx;
|
margin-bottom: 20rpx;
|
||||||
|
padding: 30rpx;
|
||||||
.item-top {
|
.item-top {
|
||||||
|
position: relative;
|
||||||
|
padding-bottom: 30rpx;
|
||||||
|
&::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
width: 690rpx;
|
||||||
|
height: 2rpx;
|
||||||
|
background: rgba(241,241,241,1);
|
||||||
|
bottom: 0;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%,0);
|
||||||
|
}
|
||||||
|
.user-info {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 30rpx;
|
||||||
|
.user-name {
|
||||||
|
font-size: 32rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
color: rgba(51,51,51,1);
|
||||||
|
margin-right: 13rpx;
|
||||||
|
}
|
||||||
|
.user-pnone {
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: rgba(51,51,51,1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.user-address {
|
||||||
|
font-size: 26rpx;
|
||||||
|
color: rgba(51,51,51,1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.item-bottom {
|
||||||
|
padding-top: 30rpx;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
.item-default {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 22rpx;
|
||||||
|
/deep/ .radio-class {
|
||||||
|
.uni-radio-wrapper {
|
||||||
|
.uni-radio-input {
|
||||||
|
width: 29rpx !important;
|
||||||
|
height: 29rpx !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.radio-default {
|
||||||
|
color: rgba(255,119,15,1);
|
||||||
|
}
|
||||||
|
.radio-others {
|
||||||
|
color:rgba(153,153,153,1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.address-operate {
|
||||||
|
display: flex;
|
||||||
|
font-size: 24rpx;
|
||||||
|
color: rgba(152,152,152,1);
|
||||||
|
> view {
|
||||||
|
display: flex;
|
||||||
|
&:not(:last-child) {
|
||||||
|
margin-right: 30rpx;
|
||||||
|
}
|
||||||
|
> img {
|
||||||
|
height: 23rpx;
|
||||||
|
margin-right: 15rpx;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.address-btn {
|
.address-btn {
|
||||||
@ -66,7 +147,7 @@ export default {
|
|||||||
border-radius: 49rpx;
|
border-radius: 49rpx;
|
||||||
font-size: 36rpx;
|
font-size: 36rpx;
|
||||||
color: rgba(255,255,255,1);
|
color: rgba(255,255,255,1);
|
||||||
line-height: 40rpx;
|
line-height: 98rpx;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="address">
|
<view class="address">
|
||||||
<AddressItem :addressList='addressList'></AddressItem>
|
<AddressItem :addressList='addressList'></AddressItem>
|
||||||
11
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
@ -9,10 +8,10 @@ import AddressItem from '@/components/mine/address-block/address-item'
|
|||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
addressList: [1, 1, 1]
|
addressList: ['0', '1', '2', '3']
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
comments: {
|
components: {
|
||||||
AddressItem
|
AddressItem
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
|
70
pageE/mine/EditAddress.vue
Normal file
70
pageE/mine/EditAddress.vue
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
<template>
|
||||||
|
<view class="edit-address">
|
||||||
|
<view class="user-info">
|
||||||
|
<view>
|
||||||
|
<input type="text" placeholder="收货人" />
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
|
<input type="text" placeholder="手机号" />
|
||||||
|
</view>
|
||||||
|
<view class="area">
|
||||||
|
<input type="text" placeholder="省市区" />
|
||||||
|
</view>
|
||||||
|
<view>
|
||||||
|
<input type="text" placeholder="详细地址" />
|
||||||
|
</view>
|
||||||
|
<view class="set-default">
|
||||||
|
<view>设为默认地址</view>
|
||||||
|
<view>
|
||||||
|
<u-switch v-model="checked" active-color="#FF770F" inactive-color="##A9A7A7" size="35"></u-switch>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
<view class="edit-btn">保存地址</view>
|
||||||
|
</view>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
checked: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onLoad() {}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.edit-address {
|
||||||
|
min-height: 100vh;
|
||||||
|
.user-info {
|
||||||
|
border-top: 1rpx solid rgba(235,235,235,1);
|
||||||
|
> view {
|
||||||
|
height: 98rpx;
|
||||||
|
padding: 30rpx;
|
||||||
|
border-bottom: 2rpx solid rgba(235,235,235,1);
|
||||||
|
> input {
|
||||||
|
font-size: 30rpx;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.set-default {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
font-size: 30rpx;
|
||||||
|
color: rgba(51,51,51,1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.edit-btn {
|
||||||
|
margin: 122rpx auto 0;
|
||||||
|
width: 690rpx;
|
||||||
|
height: 98rpx;
|
||||||
|
background: rgba(255,119,15,1);
|
||||||
|
border-radius: 49rpx;
|
||||||
|
font-size: 36rpx;
|
||||||
|
color:rgba(255,255,255,1);
|
||||||
|
line-height: 98rpx;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="mine-help">
|
<view class="mine-help">
|
||||||
<view class="help-box">
|
<view class="help-box">
|
||||||
<view v-for="(item, index) in helpList" :key="index" class="help-item">
|
<view v-for="(item, index) in helpList" :key="index" class="help-item" @click="toDetailsPage()">
|
||||||
<view>使用帮助</view>
|
<view>使用帮助</view>
|
||||||
<img src="../static/mine/21.png" />
|
<img src="../static/mine/21.png" />
|
||||||
</view>
|
</view>
|
||||||
@ -14,7 +14,14 @@ export default {
|
|||||||
return {
|
return {
|
||||||
helpList: [1,1,1,1, 1, 1, 1]
|
helpList: [1,1,1,1, 1, 1, 1]
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
methods: {
|
||||||
|
toDetailsPage() {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pageE/mine/HelpDetails'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
<view class="mine">
|
<view class="mine">
|
||||||
<view class="mine-top">
|
<view class="mine-top">
|
||||||
<view class="top">
|
<view class="top">
|
||||||
<!-- <img src="" alt="" /> -->
|
<img src="../static/mine/23.png" class="avatar" />
|
||||||
<view class="avatar"></view>
|
<!-- <view class="avatar"></view> -->
|
||||||
<view class="user-info">
|
<view class="user-info">
|
||||||
<view class="info-left">
|
<view class="info-left">
|
||||||
<view class="user-nickname">小同学</view>
|
<view class="user-nickname">小同学</view>
|
||||||
@ -89,7 +89,7 @@
|
|||||||
<img src="../static/mine/19.png" />
|
<img src="../static/mine/19.png" />
|
||||||
<view>美甲</view>
|
<view>美甲</view>
|
||||||
</view>
|
</view>
|
||||||
<view>
|
<view @click="toOtherPage('MineHistory')">
|
||||||
<img src="../static/mine/18.png" />
|
<img src="../static/mine/18.png" />
|
||||||
<view>足迹</view>
|
<view>足迹</view>
|
||||||
</view>
|
</view>
|
||||||
@ -106,7 +106,7 @@
|
|||||||
<img src="../static/mine/9.png" />
|
<img src="../static/mine/9.png" />
|
||||||
<view>售后政策</view>
|
<view>售后政策</view>
|
||||||
</view>
|
</view>
|
||||||
<view>
|
<view @click="toOtherPage('MineHelp')">
|
||||||
<img src="../static/mine/16.png" />
|
<img src="../static/mine/16.png" />
|
||||||
<view>使用帮助</view>
|
<view>使用帮助</view>
|
||||||
</view>
|
</view>
|
||||||
@ -128,7 +128,13 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
onLoad() {},
|
onLoad() {},
|
||||||
methods: {}
|
methods: {
|
||||||
|
toOtherPage(url) {
|
||||||
|
uni.navigateTo({
|
||||||
|
url: '/pageE/mine/' + url
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
21
pages.json
21
pages.json
@ -82,6 +82,27 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "mine/EditAddress",
|
||||||
|
"style": {
|
||||||
|
"navigationBarTitleText": "编辑地址",
|
||||||
|
"app-plus": {
|
||||||
|
"titleSize": "36px",
|
||||||
|
"titleColor": "#333333",
|
||||||
|
"titleNView": {
|
||||||
|
"backgroundColor": "#FFFFFF"
|
||||||
|
},
|
||||||
|
"buttons": [
|
||||||
|
{
|
||||||
|
"type":"none",
|
||||||
|
"text":"删除",
|
||||||
|
"float":"right",
|
||||||
|
"fontSize":"26"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user