mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-uniapp.git
synced 2026-08-06 19:07:23 +08:00
- 将多个组件转换为 `<script setup>` 语法,提升可读性和性能 - 优化状态管理和事件处理逻辑,简化代码结构 - 更新样式和布局以适应新组件结构 - 添加新功能和修复已知问题,提升用户体验
135 lines
4.1 KiB
Vue
135 lines
4.1 KiB
Vue
<template>
|
|
<view class="address">
|
|
<u-empty class="empty" v-if="addressList.length === 0" text="暂无收货地址" mode="address"></u-empty>
|
|
<view class="list" >
|
|
<view class="item c-content" v-for="(item, index) in addressList" :key="index">
|
|
<view class="basic">
|
|
<text>{{ item.name }}</text>
|
|
<text>{{ item.mobile }}</text>
|
|
<text class="default" v-show="item.isDefault">默认</text>
|
|
<view>
|
|
<div class="region">
|
|
<span v-if="item.consigneeAddressPath[0]">{{item.consigneeAddressPath[0]}}</span>
|
|
<span v-if="item.consigneeAddressPath[1]">{{item.consigneeAddressPath[1]}}</span>
|
|
<span v-if="item.consigneeAddressPath[2]">{{item.consigneeAddressPath[2]}}</span>
|
|
<span v-if="item.consigneeAddressPath[3]">{{item.consigneeAddressPath[3]}}</span>
|
|
<span>{{ item.detail }}</span>
|
|
</div>
|
|
</view>
|
|
</view>
|
|
<view class="edit">
|
|
<view class="relative" @click="setDefault(item)">
|
|
<view v-if="item.isDefault" class="alifont icon-xuanzhong"></view>
|
|
<text v-else class="unchecked"></text>
|
|
<text>{{ item.isDefault ? "默认地址" : "设为默认" }}</text>
|
|
</view>
|
|
<view class="relative">
|
|
<view class="alifont icon-bianji-copy"></view>
|
|
<text class="mr-40" @click="addAddress(item.id)">编辑</text>
|
|
<view class="alifont icon-lajitong"></view>
|
|
<text @click="removeAddress(item.id)">删除</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view style="height: 100px"></view>
|
|
</view>
|
|
|
|
<view class="btn" @click="addAddress('')">
|
|
<u-icon name="plus-circle" color="#ffffff" size="18"></u-icon>
|
|
<text class="btn-text">添加新收货人</text>
|
|
</view>
|
|
|
|
<u-action-sheet :list="removeList" :tips="tips" v-model:show="showAction" @click="deleteAddressMessage"></u-action-sheet>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { onLoad, onShow, onPullDownRefresh, onBackPress } from '@dcloudio/uni-app'
|
|
import { useStore } from '@/store'
|
|
import { tipsToLogin } from '@/utils/filters.js'
|
|
import * as API_Address from '@/api/address.js'
|
|
|
|
const store = useStore()
|
|
|
|
const addressList = ref<any[]>([])
|
|
const showAction = ref(false)
|
|
const removeList = [{ text: '确定' }]
|
|
const tips = { text: '确定要删除该收货人信息吗?' }
|
|
const removeId = ref('')
|
|
const routerVal = ref<Record<string, string>>({})
|
|
const params = { pageNumber: 1, pageSize: 1000 }
|
|
|
|
onBackPress(() => {
|
|
uni.switchTab({ url: '/pages/tabbar/user/my' })
|
|
return true
|
|
})
|
|
|
|
onLoad((val) => {
|
|
routerVal.value = val || {}
|
|
})
|
|
|
|
onPullDownRefresh(() => {
|
|
addressList.value = []
|
|
getAddressList()
|
|
})
|
|
|
|
onShow(() => {
|
|
if (tipsToLogin()) {
|
|
getAddressList()
|
|
}
|
|
})
|
|
|
|
function hideLoadingIfNeeded() {
|
|
if (store.state.isShowToast) uni.hideLoading()
|
|
}
|
|
|
|
function getAddressList() {
|
|
uni.showLoading()
|
|
API_Address.getAddressList(params.pageNumber, params.pageSize).then((res) => {
|
|
res.data.result.records.forEach((item: any) => {
|
|
item.consigneeAddressPath = item.consigneeAddressPath.split(',')
|
|
})
|
|
addressList.value = res.data.result.records
|
|
hideLoadingIfNeeded()
|
|
})
|
|
}
|
|
|
|
function removeAddress(id: string) {
|
|
removeId.value = id
|
|
showAction.value = true
|
|
}
|
|
|
|
function deleteAddressMessage() {
|
|
API_Address.deleteAddress(removeId.value).then((res) => {
|
|
if (res.statusCode == 200) {
|
|
uni.showToast({ icon: 'none', title: '删除成功' })
|
|
getAddressList()
|
|
} else {
|
|
uni.showToast({ icon: 'none', title: res.data.message, duration: 2000 })
|
|
}
|
|
})
|
|
}
|
|
|
|
function addAddress(id?: string) {
|
|
uni.navigateTo({
|
|
url: `/pages/mine/address/add${id ? '?id=' + id : ''}`,
|
|
})
|
|
}
|
|
|
|
function setDefault(item: any) {
|
|
delete item.updateBy
|
|
delete item.updateTime
|
|
delete item.deleteFlag
|
|
if (!item.isDefault) item.isDefault = true
|
|
API_Address.editAddress(item).then(() => {
|
|
uni.showToast({ title: '设置默认地址成功', icon: 'none' })
|
|
getAddressList()
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import "./address.scss";
|
|
</style>
|