123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <!-- 地址列表 -->
- <template>
- <view class="address-wrap">
- <view class="address-list" v-for="address in addressList" :key="address.id" @tap="useAddress(address)">
- <view class="top u-flex">
- <text class="name">{{ address.consignee }}</text>
- <text class="phone">{{ address.phone }}</text>
- <text class="tag" v-show="address.is_default === '1'">默认</text>
- </view>
- <view class="detail">{{ address.province_name }}{{ address.city_name }}{{ address.area_name }}{{ address.address }}</view>
- <button class="u-reset-button set-btn" @tap.stop="jump('/pages/user/address/edit', { id: address.id })">编辑</button>
- </view>
- <view class="foot_box-wrap safe-area-inset-bottom">
- <view class="foot_box u-flex u-row-between safe-area-inset-bottom">
- <!-- 微信小程序和微信H5 -->
- <button
- class="u-reset-button sync-wxaddress u-m-20 u-flex u-row-center u-col-center"
- @tap="getWXaddress"
- v-show="platform == 'wxMiniProgram' || platform == 'wxOfficialAccount'"
- >
- <text class="u-iconfont uicon-weixin-fill u-p-r-10" style="color:#09bb07;font-size: 40rpx;"></text>
- 导入微信地址
- </button>
- <button class="u-reset-button add-btn u-m-20" @tap="jump('/pages/user/address/edit')">添加新的收货地址</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- import Auth from '@/shopro/permission/index.js';
- export default {
- components: {},
- data() {
- return {
- addressList: [],
- platform: this.$platform.get()
- };
- },
- computed: {},
- onLoad() {},
- onShow() {
- this.getAddressList();
- },
- methods: {
- // 选中
- useAddress(addressData) {
- uni.$emit('SELECT_ADDRESS', { addressData: JSON.stringify(addressData) });
- uni.navigateBack()
- },
- // 路由跳转
- jump(path, parmas) {
- this.$Router.push({
- path: path,
- query: parmas
- });
- },
- // 微信导入
- getWXaddress() {
- let authState = new Auth('address').check();
- // #ifdef MP
- authState &&
- uni.chooseAddress({
- success: res => {
- this.jump('/pages/user/address/edit', { addressData: res });
- },
- fail: err => {
- console.log('%cuni.chooseAddress,调用失败', 'color:green;background:yellow');
- }
- });
- // #endif
- // #ifdef H5
- this.$wxsdk.openAddress(res => {
- this.jump('/pages/user/address/edit', { addressData: res });
- });
- // #endif
- },
- getAddressList() {
- this.$http('address.list').then(res => {
- if (res.code === 1) {
- this.addressList = res.data;
- !this.addressList.length && uni.$emit('SELECT_ADDRESS', { addressData: null });
- }
- });
- }
- }
- };
- </script>
- <style lang="scss">
- .address-list {
- padding: 40rpx;
- position: relative;
- background: #fff;
- margin-bottom: 20rpx;
- .name {
- font-size: 30rpx;
- font-weight: 600;
- }
- .phone {
- font-size: 30rpx;
- margin: 0 20rpx;
- }
- .tag {
- background: rgba(233, 191, 113, 0.2);
- border-radius: 6rpx;
- padding: 0 16rpx;
- line-height: 38rpx;
- color: #a8700d;
- font-size: 22rpx;
- }
- .detail {
- margin-top: 25rpx;
- width: 543rpx;
- font-size: 26rpx;
- font-weight: 400;
- color: rgba(153, 153, 153, 1);
- line-height: 40rpx;
- }
- .set-btn {
- background: none;
- position: absolute;
- font-size: 26rpx;
- color: #a8700d;
- top: 40rpx;
- right: 40rpx;
- }
- }
- // 底部按钮
- .foot_box-wrap {
- height: 140rpx;
- width: 100%;
- }
- .foot_box {
- padding: 10rpx 20rpx;
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- background-color: #fff;
- border-top: 1rpx solid rgba(#ccc, 0.2);
- .sync-wxaddress {
- flex: 1;
- line-height: 80rpx;
- background: rgba(255, 255, 255, 1);
- border-radius: 40rpx;
- box-shadow: 0 0 1rpx 6rpx rgba(#ccc, 0.2);
- }
- .add-btn {
- line-height: 80rpx;
- flex: 1;
- background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
- border-radius: 40rpx;
- color: rgba(#fff, 0.9);
- }
- }
- </style>
|