add
yj
2024-12-05 a160d838f9c0a79dfc2f18e7cd46bdd4faa59c6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<template>
  <view class="content b-t">
    <view v-for="(item, index) in addressList" :key="index" class="list b-b" @click="checkAddress(item)" @longpress="deleteShow(item)">
      <view class="wrapper">
        <view class="u-box">
          <text class="name">
            {{ item.consignee }}
          </text>
          <text class="mobile">
            {{ item.phone }}
          </text>
        </view>
        <view class="address-box">
          <text v-if="item.defaultAddress" class="tag">
            默认
          </text>
          <text class="address">
            {{ item.province }} {{ item.city }} {{ item.county }} {{ item.address }}
          </text>
        </view>
      </view>
      <text class="yticon icon-bianji" @click.stop="toUpsert('edit', item)" />
    </view>
    <button class="add-btn" @click="toUpsert('add')">
      新增地址
    </button>
  </view>
</template>
 
<script>
export default {
  data() {
    return {
      source: 0,
      addressList: [
 
      ]
    }
  },
  onLoad(option) {
    this.refreshList()
    if (option.source) {
        this.source = parseInt(option.source)
    }
  },
  methods: {
    // 选择地址
    checkAddress(item) {
      if (this.source === 1) {
        // this.$api.prePage()获取上一页实例,在App.vue定义
        this.$api.prePage().addressData = item
        this.$api.prePage().calcFreightPrice()
        uni.navigateBack()
      }
    },
    toUpsert(type, item) {
      uni.navigateTo({
        url: `/pages/address/upsert?type=${type}&data=${JSON.stringify(item)}`
      })
    },
    // 添加或修改成功之后回调
    refreshList(data, type) {
      const that = this
      that.$api.request('address', 'list').then(res => {
        that.addressList = res.data
      })
    },
    deleteShow(item) {
      const that = this
      uni.showModal({
        title: '删除提示',
        content: '您确定要删除该地址吗?',
        showCancel: true,
        confirmText: '删除',
        success: (e) => {
          if (e.confirm) {
            that.$api.request('address', 'delete', {
              addressId: item.id
            }).then(res => {
              that.refreshList()
            })
          }
        },
        fail: () => {}
      })
    }
  }
}
</script>
 
<style lang='scss'>
    page {
        padding-bottom: 120upx;
    }
 
    .content {
        position: relative;
    }
 
    .list {
        display: flex;
        align-items: center;
        padding: 20upx 30upx;
        ;
        background: #fff;
        position: relative;
    }
 
    .wrapper {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
 
    .address-box {
        display: flex;
        align-items: center;
 
        .tag {
            font-size: 24upx;
            color: $base-color;
            margin-right: 10upx;
            background: #fffafb;
            border: 1px solid #ffb4c7;
            border-radius: 4upx;
            padding: 4upx 10upx;
            line-height: 1;
        }
 
        .address {
            font-size: 28upx;
            color: $font-color-light;
        }
    }
 
    .u-box {
        font-size: 30upx;
        color: $font-color-dark;
        margin-top: 16upx;
 
        .name {
            margin-right: 30upx;
        }
    }
 
    .icon-bianji {
        display: flex;
        align-items: center;
        height: 80upx;
        font-size: 40upx;
        color: $font-color-light;
        padding-left: 30upx;
    }
 
    .add-btn {
        position: fixed;
        left: 30upx;
        right: 30upx;
        bottom: 16upx;
        z-index: 95;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 690upx;
        height: 80upx;
        font-size: 32upx;
        color: #fff;
        background-color: $base-color;
        border-radius: 10upx;
        box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
    }
</style>