feat:address-vuex
parent
976363846c
commit
b47fa05f22
@ -1,58 +0,0 @@
|
||||
<template>
|
||||
<div class="address-list">
|
||||
<nav-bar title="我的地址" />
|
||||
|
||||
<van-address-list
|
||||
v-model="defaultId"
|
||||
:list="list"
|
||||
default-tag-text="默认"
|
||||
@add="onAdd"
|
||||
@edit="onEdit"
|
||||
@select="onSelect"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import NavBar from '@/components/NavBar'
|
||||
import { getAddress } from '@/api/address'
|
||||
|
||||
export default {
|
||||
name: 'Address',
|
||||
components: {
|
||||
NavBar
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
defaultId: '1',
|
||||
list: []
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.getAddress()
|
||||
},
|
||||
methods: {
|
||||
getAddress() {
|
||||
getAddress().then(res => {
|
||||
this.list = res.entry
|
||||
})
|
||||
},
|
||||
onSelect(item, index) {
|
||||
this.$store.commit('address/SET_ADDRESS', item)
|
||||
this.$toast.success('选择成功')
|
||||
this.$router.go(-1)
|
||||
},
|
||||
onAdd() {
|
||||
this.$router.push({
|
||||
path: '/address/edit'
|
||||
})
|
||||
},
|
||||
onEdit(item, index) {
|
||||
// Toast('编辑地址:' + index)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
@ -0,0 +1,39 @@
|
||||
<template>
|
||||
<div class="order-confirm">
|
||||
<nav-bar title="确认订单" />
|
||||
|
||||
<van-contact-card
|
||||
:type="contact.type"
|
||||
:name="contact.name"
|
||||
:tel="contact.tel"
|
||||
@click="onContact"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'OrderConfirm',
|
||||
data() {
|
||||
return {
|
||||
contact: {
|
||||
type: 'add',
|
||||
name: '',
|
||||
tel: ''
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onContact() {
|
||||
this.$router.push({
|
||||
path: '/address'
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.order-confirm {
|
||||
}
|
||||
</style>
|
@ -0,0 +1,14 @@
|
||||
<template>
|
||||
<div class="order-list">111</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'OrderList'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.order-list {
|
||||
}
|
||||
</style>
|
Loading…
Reference in New Issue