123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- <!-- 地址列表 -->
- <template>
- <view class="address-container">
- <JHeader width="50" height="50" title="地址管理" style="padding: 24upx 0 0;"></JHeader>
- <view v-if="addressList && addressList.length" class="pad-bot-20 addAddress">
- <view v-for="(item, index) in addressList" :key="index" class="addAddress-content flex-row-plus">
- <view class="address-detail" @click="itemTap(item)">
- <view class="userName">
- <text>{{ item.receiveName }}</text>
- <text class="font-color-999 mar-left-30">
- {{ item.receivePhone.replace(/(\d{3})\d+(\d{4})$/, '$1****$2')
- }}
- </text>
- </view>
- <view class="defaultAD-box">
- <text v-if="item.ifDefault" class="def">默认</text>
- <text v-else-if="item.label != ''" class="lable font-color-999">{{ item.label }}</text>
- <text class="user-address font-color-999">{{ item.receiveAdress }}{{ item.address }}</text>
- </view>
- </view>
- <tui-icon name="edit" :size="50" unit="upx" color="#cccccc" @click="editAdress(item)"></tui-icon>
- </view>
- </view>
- <view style="padding-bottom: 45upx;">
- <LoadingMore
- :status="!isEmpty && !addressList.length
- ? 'loading' : !isEmpty && addressList.length && (addressList.length >= addresTotal) ? 'no-more' : ''"
- >
- </LoadingMore>
- <tui-no-data v-if="isEmpty" :fixed="false" style="margin-top: 60upx;">你还没有添加地址哦~</tui-no-data>
- </view>
- <!-- #ifdef MP-WEIXIN -->
- <view class="wxAddressNBox">
- <view class="flex-items btnBox flex-sp-between">
- <view class="wxAddress btn flex-items flex-center" @click="wxAddFn">
- <image src="../../../static/images/new-business/shop/weixin2x.png"></image>
- <text>微信导入</text>
- </view>
- <view class="addAddressBtn btn" @click="addAddressClick">添加新地址</view>
- </view>
- </view>
- <!-- #endif -->
- <!-- #ifdef H5 || APP-PLUS || MP-ALIPAY -->
- <view class="addAddress-box">
- <view class="addAddress" @click="addAddressClick">添加新地址</view>
- </view>
- <!-- #endif -->
- </view>
- </template>
- <script>
- import { T_RECEIVE_ITEM } from '../../../constant'
- import { getAllReceiveAddressApi } from '../../../api/anotherTFInterface'
- export default {
- name: 'Address',
- data() {
- return {
- type: 0,
- isEmpty: false,
- addressList: [],
- addresTotal: 0,
- queryInfo: {
- page: 1,
- pageSize: 20
- },
- addData: {}
- }
- },
- onLoad(options) {
- this.type = options.type
- },
- onShow() {
- this.getAddressDataList()
- },
- methods: {
- addAddressClick() {
- if ([1, 2, 3].includes(this.type)) {
- uni.navigateTo({
- url: '/another-tf/another-serve/addAddress/index?type=1&ordertype=1'
- })
- } else {
- uni.navigateTo({
- url: '/another-tf/another-serve/addAddress/index?type=1'
- })
- }
- },
- getAddressDataList(isLoadmore) {
- uni.showLoading()
- getAllReceiveAddressApi(this.queryInfo).then((res) => {
- this.addresTotal = res.data.total
- if (isLoadmore) {
- this.addressList.push(...res.data.list)
- } else {
- this.addressList = res.data.list
- }
- this.isEmpty = this.addressList.length === 0
- uni.hideLoading()
- })
- .catch((e) => {
- uni.hideLoading()
- })
- },
- editAdress(item) {
- uni.navigateTo({
- url: '/another-tf/another-serve/addAddress/index?type=2&receiveId=' + item.receiveId
- })
- },
- itemTap(item) {
- if (this.type == 1 || this.type == 2) {
- uni.setStorageSync(T_RECEIVE_ITEM, item)
- uni.navigateBack()
- }
- },
- // 微信导入
- wxAddFn() {
- const self = this
- uni.chooseAddress({
- success(res) {
- self.addData.username = res.userName
- self.addData.phone = res.telNumber
- self.addData.ssqText = `${res.provinceName}-${res.cityName}-${res.countyName}`
- self.addData.defaultRegion = self.addData.ssqText.split('-')
- self.addData.address = res.detailInfo
- self.addData.province = res.provinceName
- self.addData.city = res.cityName
- // uni.showLoading({
- // mask: true,
- // title: '导入中...',
- // })
- setTimeout(() => {
- uni.hideLoading()
- uni.navigateTo({
- url: '/another-tf/another-serve/addAddress/index?type=3&wxAddressData=' + JSON.stringify(self.addData)
- })
- }, 500)
- },
- fail: (e) => {
- }
- })
- }
- },
- onReachBottom() {
- if (this.addressList.length < this.addresTotal) {
- ++this.queryInfo.page
- this.getAddressDataList(true)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .address-container {
- padding: 0 24rpx;
- .addAddress {
- border-top: 2rpx solid #F3F4F5;
- padding-top: 30rpx;
- }
- .addAddress-box {
- position: fixed;
- bottom: 50upx;
- left: 30upx;
- .addAddress {
- width: 690upx;
- height: 100upx;
- color: #FFEBC4;
- text-align: center;
- background: #333333;
- }
- }
- .wxAddressNBox {
- position: fixed;
- bottom: 50upx;
- width: 100%;
- left: 0;
- .btnBox {
- width: 100%;
- background: #FFFFFF;
- height: 120rpx;
- padding: 0 50rpx;
- .btn {
- width: 300rpx;
- background: #FFFFFF;
- height: 90rpx;
- line-height: 90rpx;
- border: 2rpx solid #E4E5E6;
- text-align: center;
- }
- .addAddressBtn {
- color: #FFEBC4;
- background: #333333;
- border: 2rpx solid #333333;
- }
- .wxAddress {
- image {
- width: 45rpx;
- height: 37rpx;
- margin-right: 20rpx;
- }
- }
- }
- }
- .addAddress-content {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-bottom: 20rpx;
- margin-bottom: 20rpx;
- border-bottom: 2rpx solid #F3F4F5;
- .address-detail {
- .userName {
- margin-bottom: 15rpx;
- }
- }
- .lable {
- padding: 3rpx 10rpx;
- background: rgba(153, 153, 153, 0.2);
- border-radius: 4rpx;
- font-size: 24rpx;
- font-weight: 500;
- color: rgba(102, 102, 102, 1);
- }
- .def {
- padding: 3rpx 10rpx;
- font-size: 20rpx;
- font-weight: 400;
- color: #C5AA7B !important;
- background: rgba(197, 170, 123, 0.2) !important;
- }
- .user-address {
- font-size: 28rpx;
- margin-left: 10rpx;
- }
- .defaultAD-box {
- width: 455upx;
- }
- }
- }
- </style>
|