123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <template>
- <view>
- <view class="item" v-for="(res, index) in siteList" :key="res.id">
- <view class="top">
- <view class="name">{{ res.name }}</view>
- <view class="phone">{{ res.phone }}</view>
- <view class="tag">
- <text v-for="(item, index) in res.tag" :key="index" :class="{red:item.tagText=='默认'}">{{ item.tagText }}</text>
- </view>
- </view>
- <view class="bottom">
- 广东省深圳市宝安区 自由路66号
- <u-icon name="edit-pen" :size="40" color="#999999"></u-icon>
- </view>
- </view>
- <view class="addSite" @tap="toAddSite">
- <view class="add">
- <u-icon name="plus" color="#ffffff" class="icon" :size="30"></u-icon>新建收货地址
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- siteList: []
- };
- },
- onLoad() {
- this.getData();
- },
- methods: {
- getData() {
- this.siteList = [
- {
- id: 1,
- name: '游X',
- phone: '183****5523',
- tag: [
- {
- tagText: '默认'
- },
- {
- tagText: '家'
- }
- ],
- site: '广东省深圳市宝安区 自由路66号'
- },
- {
- id: 2,
- name: '李XX',
- phone: '183****5555',
- tag: [
- {
- tagText: '公司'
- }
- ],
- site: '广东省深圳市宝安区 翻身路xx号'
- },
- {
- id: 3,
- name: '王YY',
- phone: '153****5555',
- tag: [],
- site: '广东省深圳市宝安区 平安路13号'
- }
- ];
- },
- toAddSite(){
- uni.navigateTo({
- url: '/pages_template/pages/address/addSite'
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .item {
- padding: 40rpx 20rpx;
- .top {
- display: flex;
- font-weight: bold;
- font-size: 34rpx;
- .phone {
- margin-left: 60rpx;
- }
- .tag {
- display: flex;
- font-weight: normal;
- align-items: center;
- text {
- display: block;
- width: 60rpx;
- height: 34rpx;
- line-height: 34rpx;
- color: #ffffff;
- font-size: 20rpx;
- border-radius: 6rpx;
- text-align: center;
- margin-left: 30rpx;
- background-color:rgb(49, 145, 253);
- }
- .red{
- background-color:red
- }
- }
- }
- .bottom {
- display: flex;
- margin-top: 20rpx;
- font-size: 28rpx;
- justify-content: space-between;
- color: #999999;
- }
- }
- .addSite {
- display: flex;
- justify-content: space-around;
- width: 600rpx;
- line-height: 100rpx;
- position: absolute;
- bottom: 30rpx;
- left: 80rpx;
- background-color: red;
- border-radius: 60rpx;
- font-size: 30rpx;
- .add{
- display: flex;
- align-items: center;
- color: #ffffff;
- .icon{
- margin-right: 10rpx;
- }
- }
- }
- </style>
|