第一次提交
This commit is contained in:
68
pages/plus/lottery/part/my-info.vue
Normal file
68
pages/plus/lottery/part/my-info.vue
Normal file
@ -0,0 +1,68 @@
|
||||
<template>
|
||||
<div>
|
||||
<!--地址-->
|
||||
<view class="add-address d-s-c" @click="addAddress()" v-if="Address==null">
|
||||
<view class="icon-box mr10">
|
||||
<span class="icon iconfont icon-dizhi1"></span>
|
||||
</view>
|
||||
<text>请添加收货地址</text>
|
||||
</view>
|
||||
|
||||
<view class="address-defalut-wrap" v-else>
|
||||
<view class="info">
|
||||
<text class="state">默认</text>
|
||||
<text class="type">家</text>
|
||||
<text class="province-c-a">{{Address.region.province}} {{Address.region.city}} {{Address.region.region}} </text>
|
||||
</view>
|
||||
<view class="address">
|
||||
<text class="fb gray3">{{Address.detail}}</text>
|
||||
<view class="icon-box" @click="addAddress()">
|
||||
<span class="icon iconfont icon-jiantou"></span>
|
||||
</view>
|
||||
</view>
|
||||
<view class="user">
|
||||
<text class="name">{{Address.name}}</text>
|
||||
<text class="tel">{{Address.phone}}</text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
<view class="addree-bottom">
|
||||
<view class="stripe" v-for="(item,index) in 10" :key="index">
|
||||
<text :class="index%2==0?'red':'blue'"></text>
|
||||
<text class="white"></text>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default{
|
||||
data(){
|
||||
return {
|
||||
|
||||
}
|
||||
},
|
||||
props: ['Address','exist_address'],
|
||||
onLoad() {
|
||||
|
||||
},
|
||||
mounted() {
|
||||
|
||||
},
|
||||
methods:{
|
||||
/*添加地址*/
|
||||
addAddress(){
|
||||
let url = '/pages/user/address/address?source=order';
|
||||
if(!this.exist_address){
|
||||
url = '/pages/user/address/add/add';
|
||||
}
|
||||
this.gotoPage(url);
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user