123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <template>
- <view>
- <view class="container">
- <view v-if="addressList.length>0" class="addressList">
- <scroll-view scroll-y="true">
- <u-swipe-action v-for="(item, index) in addressList" :key="item.id"
- :index="index" :options="options"
- :show="item.show"
- bg-color="#f3f4f6"
- style="margin: 20rpx 20rpx 0rpx 20rpx"
- @click="click"
- >
- <view class="item" @click="selectAddress(item)">
- <view class="title">
- {{ item.userName }}
- <view class="phone">{{ item.phone }}</view>
- <view v-if="item.isDefault == 1" class="default">
- 默认
- </view>
- </view>
- <view class="desc">
- {{ item.address }}
- </view>
- </view>
- </u-swipe-action>
- </scroll-view>
- <view class="bottomView">
- <u-button :custom-style="customStyle" hover-class="none" shape="circle" @click="addAddress">新增收货地址
- </u-button>
- </view>
- </view>
- <view v-else class="empty">
- <image :src="empty" style="width: 200px;height: 200px;"></image>
- <view class="title">找不到您的收获地址哦</view>
- <view class="tip">先去添加一个吧</view>
- <view class="bottomView">
- <u-button :custom-style="customStyle" hover-class="none" shape="circle" @click="addAddress">新增收货地址
- </u-button>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- addressList: [],
- empty: '/static/empty/address.png',
- options: [
- {
- text: '修改',
- style: {
- backgroundColor: 'orange'
- }
- },
- {
- text: '删除',
- style: {
- backgroundColor: '#ff536f'
- }
- }
- ],
- customStyle: {
- marginTop: '40rpx', // 注意驼峰命名,并且值必须用引号包括,因为这是对象
- marginBottom: '40rpx',
- marginLeft: '40rpx',
- marginRight: '40rpx',
- color: '#FFF',
- backgroundColor: '#ff536f'
- }
- };
- },
- onLoad() {
- // 获取收货列表
- this.findAddressList();
- },
- methods: {
- addAddress() {
- this.$u.route('/pages/address/addAddress')
- },
- click(index, index1) {
- if (index1 == 0) {
- this.$u.route({
- url: '/pages/address/addAddress',
- params: {
- addressId: this.addressList[index].id
- }
- })
- } else if (index1 == 1) {
- let url = "/api/mallApi/deleteAddress/" + this.addressList[index].id;
- this.$u.delete(url).then(result => {
- this.addressList.splice(index, 1);
- this.$mytip.toast('删除成功')
- });
- }
- },
- selectAddress(item) {
- this.$u.route({
- url: '/pages/order/preOrder',
- params: {
- addressId: item.id,
- userName: item.userName,
- phone: item.phone,
- addressName: item.address
- }
- })
- },
- findAddressList() {
- let url = "/api/mallApi/findAddressList";
- this.$u.get(url, {
- orderByColumn: 'create_time',
- isAsc: 'desc',
- pageNum: 1,
- pageSize: 100,
- }).then(result => {
- // 商品数据
- this.addressList = result.rows;
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .container {
- text-align: center;
- overflow: hidden;
- border-radius: 8 rpx;
- .addressList {
- text-align: left;
- .item {
- padding: 10 rpx 20 rpx;
- background-color: #ffffff;
- .title {
- width: 430 rpx;
- font-size: 16px;
- color: $u-main-color;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: normal;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- display: flex;
- align-items: center;
- margin: 10 rpx 20 rpx 30 rpx 0;
- .phone {
- margin-left: 20 rpx;
- color: $u-tips-color;
- font-size: 16px;
- }
- .default {
- margin-left: 20 rpx;
- padding: 2 rpx 8 rpx;
- font-size: 14px;
- color: #fff;
- border-radius: 8 rpx;
- background-color: #ff536f;
- }
- }
- .desc {
- font-weight: normal;
- font-size: 14px;
- color: $u-tips-color;
- margin: 10 rpx 20 rpx 20 rpx 0;
- }
- }
- }
- .empty {
- margin-top: 220 rpx;
- width: 100%;
- text-align: center;
- .title {
- margin: 20 rpx 0 10 rpx 0;
- color: $u-tips-color;
- font-size: 14px;
- }
- .tip {
- color: $u-tips-color;
- font-size: 14px;
- }
- .btn {
- color: #fff;
- background-image: linear-gradient(to left, #ff536f, rgba(#ff536f, 0.6));
- width: 200 rpx;
- padding: 15 rpx 28 rpx;
- border-radius: 130 rpx;
- margin: 300 rpx 0 0 275 rpx;
- }
- }
- .bottomView {
- // box-shadow:0 -1px 1px 0 rgba(0, 0, 0, 0.05);
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 999;
- // background-color: #fff;
- }
- }
- </style>
|